/* ============================================================
   BOYAMATIK — Ana CSS Dosyası
   Her iki sayfa (index + ürün detay) için ortak stiller
   ============================================================ */


/* ------------------------------------------------------------
   1. DEĞIŞKENLER & RESET
   ------------------------------------------------------------ */

:root {
  --red:     #B22222;
  --red-dark:#8B1A1A;
  --navy:    #1A3A5C;
  --dark:    #1C1C1C;
  --gray:    #6B6B6B;
  --light:   #F5F4F1;
  --border:  #E0DDD8;
  --white:   #FFFFFF;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}


/* ------------------------------------------------------------
   2. NAVİGASYON
   ------------------------------------------------------------ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--red);
}

.nav-cta {
  background: var(--red) !important;
  color: white !important;
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--red-dark) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
}


/* ------------------------------------------------------------
   3. LOGO
   ------------------------------------------------------------ */

.logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo {
  height: 56px;
  width: auto;
  display: block;
}

/* Footer'da hâlâ metin logo kullanılıyor */
.logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: -0.5px;
  line-height: 1;
}

.logo-sub {
  font-size: 9px;
  letter-spacing: 2.5px;
  color: var(--gray);
  text-transform: uppercase;
  line-height: 1;
  margin-top: 3px;
}


/* ------------------------------------------------------------
   4. BÖLÜM ORTAK STİLLER
   ------------------------------------------------------------ */

section {
  padding: 90px 5%;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 17px;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.7;
}


/* ------------------------------------------------------------
   5. HERO (Ana Sayfa)
   ------------------------------------------------------------ */

.hero {
  margin-top: 68px;
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1C1C1C 0%, #2a1010 50%, #1C1C1C 100%);
}

.hero-accent {
  position: absolute;
  right: -100px;
  top: -100px;
  width: 600px;
  height: 600px;
  background: var(--red);
  opacity: 0.07;
  border-radius: 50%;
}

.hero-accent2 {
  position: absolute;
  left: -50px;
  bottom: -150px;
  width: 400px;
  height: 400px;
  background: var(--navy);
  opacity: 0.15;
  border-radius: 50%;
}

.hero-layout {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero-content {
  max-width: 620px;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
}

.hero-stat-divider {
  width: 1px;
  height: 120px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-stat-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-stat-number {
  display: flex;
  align-items: baseline;
  line-height: 1;
}

.formul-counter {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 700;
  color: var(--red);
  letter-spacing: -2px;
  font-variant-numeric: tabular-nums;
}

.hero-stat-plus {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 700;
  color: var(--red);
}

.hero-stat-label {
  font-size: 19px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin-top: 6px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(178, 34, 34, 0.2);
  border: 1px solid rgba(178, 34, 34, 0.4);
  color: #FF8080;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  color: white;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--red);
}

.hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}


/* ------------------------------------------------------------
   6. BUTONLAR
   ------------------------------------------------------------ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.btn-teklif {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--red);
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-teklif:hover {
  background: var(--red-dark);
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 14px 22px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-wa:hover {
  background: #1da851;
}

.btn-wa svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.btn-detay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  color: var(--dark);
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}

.btn-detay:hover {
  border-color: var(--dark);
  background: var(--light);
}

.btn-submit {
  width: 100%;
  padding: 13px;
  background: var(--red);
  color: white;
  border: none;
  border-radius: 6px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 6px;
}

.btn-submit:hover {
  background: var(--red-dark);
}


/* ------------------------------------------------------------
   7. ÜRÜNLER (Ana Sayfa)
   ------------------------------------------------------------ */

.products {
  background: var(--light);
}

.products-header {
  text-align: center;
  margin-bottom: 60px;
}

.products-header .section-desc {
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.product-card {
  background: white;
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}

.product-img {
  height: 260px;
  background: #F0EEEB;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 13px 13px 0 0;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
}

.product-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #BBB;
}

.product-img-placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.3;
}

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--red);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.product-body {
  padding: 28px;
}

.product-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.product-short {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

.product-features {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--dark);
}

.product-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.product-btns {
  display: flex;
  gap: 10px;
}

.product-btns .teklif-dropdown {
  flex: 1;
  position: relative;
}

.product-btns .teklif-dropdown .btn-teklif {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Barlow', sans-serif;
  line-height: 1.6;
  padding: 12px 16px;
  border: none;
  outline: none;
  cursor: pointer;
  background: var(--red);
  color: white;
  border-radius: 6px;
  -webkit-appearance: none;
  appearance: none;
  transition: background 0.2s;
}

.product-btns .teklif-dropdown .btn-teklif:hover {
  background: var(--red-dark);
}

.product-btns .btn-detay {
  white-space: nowrap;
  flex-shrink: 0;
}


/* ------------------------------------------------------------
   8. ÖZELLİKLER (Ana Sayfa)
   ------------------------------------------------------------ */

.features {
  background: white;
}

.features-header {
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-item {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-item:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(178, 34, 34, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  color: var(--red);
}

.feature-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.feature-text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
}


/* ------------------------------------------------------------
   9. İLETİŞİM (Ana Sayfa)
   ------------------------------------------------------------ */

.contact {
  background: var(--light);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 18px;
  height: 18px;
  color: var(--red);
}

.contact-item-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 15px;
  color: var(--dark);
  font-weight: 500;
}

.contact-item-value a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item-value a:hover {
  color: var(--red);
}

.contact-form {
  background: white;
  border-radius: 14px;
  padding: 36px;
  border: 1px solid var(--border);
}

.form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: var(--dark);
  background: white;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}


/* ------------------------------------------------------------
   10. FOOTER
   ------------------------------------------------------------ */

footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 50px 5% 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .logo-name {
  color: white;
  margin-bottom: 12px;
  display: block;
}

.footer-brand .logo-sub {
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.footer-col-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}


/* ------------------------------------------------------------
   11. TEKLİF AL AÇILIR MENÜ (Hero)
   ------------------------------------------------------------ */

.teklif-dropdown {
  position: relative;
  display: inline-flex;
}

.teklif-btn {
  gap: 10px;
}

.teklif-btn .chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.teklif-btn.open .chevron {
  transform: rotate(180deg);
}

.teklif-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  min-width: 220px;
  z-index: 50;
}

.teklif-menu.open {
  display: block;
}

.teklif-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  transition: background 0.15s;
}

.teklif-item:hover {
  background: var(--light);
}

.teklif-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.teklif-item-call svg  { color: var(--red); }
.teklif-item-wa   svg  { fill: #25D366; }

.teklif-item + .teklif-item {
  border-top: 1px solid var(--border);
}

.teklif-item-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.teklif-item-label small {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray);
}


/* ------------------------------------------------------------
   12a. ARAMA / WHATSAPP BUTONU (Detay sayfası)
   ------------------------------------------------------------ */

.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--red);
  color: white;
  padding: 14px 22px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-call:hover {
  background: var(--red-dark);
}

.btn-call svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.btn-teklif-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--dark);
  padding: 13px 22px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--dark);
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
  transition: background 0.2s, color 0.2s;
}

.btn-teklif-outline:hover {
  background: var(--dark);
  color: white;
}

.btn-teklif-outline svg {
  width: 18px;
  height: 18px;
}


/* ------------------------------------------------------------
   12b. INLINE TEKLİF FORMU (Detay sayfası)
   ------------------------------------------------------------ */

.inline-teklif {
  margin-top: 24px;
  background: var(--light);
  border-radius: 12px;
  padding: 28px;
  border: 1px solid var(--border);
  display: none;
}

.inline-teklif.open {
  display: block;
}

.inline-teklif-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}


/* ------------------------------------------------------------
   12. ANİMASYONLAR & BİLDİRİM
   ------------------------------------------------------------ */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card:has(.teklif-menu.open) {
  z-index: 10;
}

.toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  z-index: 200;
  color: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  display: none;
  white-space: nowrap;
}

.toast.success { background: #27AE60; }
.toast.error   { background: var(--red); }


/* ------------------------------------------------------------
   13. BREADCRUMB (Detay Sayfası)
   ------------------------------------------------------------ */

.breadcrumb {
  margin-top: 68px;
  padding: 16px 5%;
  background: var(--light);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--gray);
}

.breadcrumb a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--red);
}

.breadcrumb span {
  margin: 0 8px;
  opacity: 0.4;
}


/* ------------------------------------------------------------
   14. ÜRÜN DETAY (Detay Sayfası)
   ------------------------------------------------------------ */

.product-detail {
  padding: 60px 5%;
  max-width: 1100px;
  margin: 0 auto;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Görsel galerisi */
.main-img {
  height: 380px;
  background: var(--light);
  border-radius: 14px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  overflow: hidden;
}

.main-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 32px;
}

.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #BBB;
}

.img-placeholder svg {
  width: 80px;
  height: 80px;
  opacity: 0.25;
}

.thumbs {
  display: flex;
  gap: 10px;
}

.thumb {
  width: 72px;
  height: 72px;
  background: var(--light);
  border-radius: 8px;
  border: 1px solid var(--border);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s;
}

.thumb:hover,
.thumb.active {
  border-color: var(--red);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

/* Bilgi alanı */
.detail-info .product-tag {
  position: static;        /* Kart içindeki absolute konumlamayı ezer */
  display: inline-block;
  margin-bottom: 16px;
}

.product-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--dark);
  line-height: 1.05;
  margin-bottom: 12px;
}

.product-desc {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 28px;
}

.highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}

.highlight::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.detail-btns {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
}

.detail-btns > * {
  flex: 1;
  justify-content: center;
  padding-left: 12px;
  padding-right: 12px;
}

.contact-mini {
  background: var(--light);
  border-radius: 10px;
  padding: 18px;
  border: 1px solid var(--border);
}

.contact-mini p {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 8px;
}

.contact-mini a {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-mini a:hover {
  color: var(--red);
}


/* ------------------------------------------------------------
   15. TEKNİK ÖZELLİKLER (Detay Sayfası)
   ------------------------------------------------------------ */

.specs-section {
  padding: 60px 5%;
  max-width: 1100px;
  margin: 0 auto;
}

.specs-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.spec-group {
  background: var(--light);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--border);
}

.spec-group-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}

.spec-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.spec-key {
  font-size: 13px;
  color: var(--gray);
  flex-shrink: 0;
}

.spec-val {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  text-align: right;
}


/* ------------------------------------------------------------
   16. DİĞER ÜRÜNLER (Detay Sayfası)
   ------------------------------------------------------------ */

.other-products {
  padding: 60px 5%;
  background: var(--light);
}

.other-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 28px;
}

.other-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 700px;
}

.other-card {
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.other-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.other-img {
  width: 64px;
  height: 64px;
  background: var(--light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.other-img svg {
  width: 32px;
  height: 32px;
  opacity: 0.3;
}

.other-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.other-short {
  font-size: 13px;
  color: var(--gray);
}

.other-arrow {
  margin-left: auto;
  font-size: 20px;
  color: var(--red);
  flex-shrink: 0;
}


/* ------------------------------------------------------------
   17. DUYARLI TASARIM (Mobil)
   ------------------------------------------------------------ */

@media (max-width: 768px) {

  /* Navigasyon */
  .nav-links    { display: none; }
  .hamburger    { display: flex; }

  /* Hero */
  .hero         { min-height: 85vh; }
  .hero-btns    { flex-direction: column; }
  .hero-layout  { flex-direction: column; align-items: flex-start; gap: 32px; }
  .hero-stat    { flex-direction: row; align-items: center; }
  .hero-stat-divider { width: 60px; height: 1px; }
  .hero-stat-body { align-items: flex-start; }

  /* Ürünler */
  .products-grid  { grid-template-columns: 1fr; }

  /* İletişim */
  .contact-inner  { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner   { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom  { flex-direction: column; gap: 8px; text-align: center; }

  /* Detay sayfası */
  .detail-grid  { grid-template-columns: 1fr; }
  .specs-grid   { grid-template-columns: 1fr; }

  .detail-btns  { gap: 16px; }
  .detail-btns > * { min-width: 0; flex: 1; }
}
