/* ==========================================================================
   SAĞLAM OPTİK & LENS - ANA STİL DOSYASI
   Şişli / İstanbul - 1982'den Beri Güven, Seçkin Gözlükler & Özel Camlar
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Renkler - Gözü Yormayan Pastel Şampanya & Yumuşak Slate Antrasit */
  --color-primary: #192231;        /* Yumuşak Koyu Antrasit */
  --color-primary-soft: #2b384e;
  --color-accent: #9b7a4f;         /* Pastel Şampanya / Muted Satin Gold */
  --color-accent-dark: #6e522d;
  --color-accent-light: #f6f1e8;   /* Dinlendirici Sıcak Pastel Krem */
  --color-accent-subtle: #fbf8f4;
  --color-gold: #9b7a4f;           /* Pastel Zarif Altın */
  --color-gold-dark: #6e522d;
  --color-gold-light: #f6f1e8;
  --color-gold-gradient: linear-gradient(135deg, #a8885b 0%, #8b6b3f 100%);
  --color-metal-gold: linear-gradient(135deg, #8b6b3f 0%, #a8885b 50%, #6e522d 100%);
  --color-success: #15803d;

  /* Zeminler */
  --bg-page: #fafaf9;
  --bg-white: #ffffff;
  --bg-muted: #f5f5f4;
  --border-color: #e7e5e4;
  --border-light: #f0eeeb;
  --border-gold: rgba(155, 122, 79, 0.22);

  /* Tipografi */
  --text-main: #374151;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --text-dark: #192231;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Gölgeler */
  --shadow-xs: 0 1px 3px rgba(25, 34, 49, 0.03);
  --shadow-sm: 0 4px 12px rgba(25, 34, 49, 0.05);
  --shadow-md: 0 10px 25px -4px rgba(25, 34, 49, 0.07);
  --shadow-lg: 0 20px 35px -6px rgba(25, 34, 49, 0.1);
  --shadow-hover: 0 12px 28px -5px rgba(155, 122, 79, 0.16);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.15s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, picture, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.25;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 75px 0;
  position: relative;
}

.section-white {
  background-color: #ffffff;
}

.section-muted {
  background-color: #f8fafc;
}

.section-dark {
  background-color: #0f172a;
  color: #ffffff;
}

.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   BAŞLIKLAR & ETİKETLER
   -------------------------------------------------------------------------- */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: fit-content;
  max-width: max-content;
  gap: 8px;
  padding: 5px 14px;
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
  border: 1px solid rgba(155, 122, 79, 0.22);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.badge-tag.badge-gold {
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
  border-color: rgba(155, 122, 79, 0.25);
}

.section-title {
  font-size: 2.25rem;
  color: var(--color-primary);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-title span.highlight,
.section-title span.highlight-gold,
.hero-title-optical span.highlight-blue,
.hero-title-optical span.highlight-gold {
  color: var(--color-accent);
  background: linear-gradient(135deg, #8b6b3f 0%, #ad8a5c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   BUTONLAR
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(25, 34, 49, 0.15);
  border: 1px solid rgba(155, 122, 79, 0.25);
}

.btn-primary:hover {
  background-color: var(--color-accent-dark);
  color: #ffffff;
  border-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(110, 82, 45, 0.25);
}

.btn-accent {
  background-color: var(--color-accent);
  color: #ffffff;
}

.btn-accent:hover {
  background-color: var(--color-accent-dark);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, #a8885b 0%, #8b6b3f 100%);
  color: #ffffff;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #8b6b3f 0%, #6e522d 100%);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background-color: #1eb956;
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-outline {
  background-color: #ffffff;
  color: var(--color-primary);
  border-color: var(--border-color);
  box-shadow: var(--shadow-xs);
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background-color: var(--color-accent-subtle);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.84rem;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 0.98rem;
}

/* --------------------------------------------------------------------------
   TOPBAR & HEADER (CLEAN, NO OVERLAPPING)
   -------------------------------------------------------------------------- */
.top-bar {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.8rem;
  padding: 6px 0;
  color: var(--text-muted);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.top-bar-item i {
  color: var(--color-accent);
}

.top-bar-badge {
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.74rem;
  border: 1px solid rgba(155, 122, 79, 0.2);
  white-space: nowrap;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

.brand-sign-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: var(--transition);
}

.site-header-logo {
  height: 46px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
  transition: var(--transition);
}

.brand-sign-link:hover .site-header-logo {
  transform: scale(1.04);
}

.footer-logo-wrap {
  display: inline-block;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(155, 122, 79, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.footer-logo-wrap:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(155, 122, 79, 0.25);
}

.site-footer-logo {
  height: 46px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  display: block;
}

.brand-sign-title {
  font-family: var(--font-heading);
  font-size: 1.32rem;
  font-weight: 850;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.brand-sign-title span.gold-txt {
  color: var(--color-accent);
  background: linear-gradient(135deg, #8b6b3f 0%, #ad8a5c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-sign-subtitle {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #9ca3af;
  text-transform: uppercase;
  margin-top: 3px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-logo img {
  display: none;
}

.brand-meta {
  display: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 auto;
  white-space: nowrap;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-primary);
  padding: 8px 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
  white-space: nowrap;
  letter-spacing: -0.2px;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-accent);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--color-accent);
  border-radius: var(--radius-full);
  transition: width var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 330px;
  max-width: 360px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 35px -5px rgba(25, 34, 49, 0.12), 0 0 0 1px rgba(155, 122, 79, 0.15);
  border: 1px solid var(--border-light);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 15px;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--color-accent-subtle);
}

.dropdown-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.dropdown-item:hover .dropdown-icon {
  background: var(--color-accent);
  color: #ffffff;
}

.dropdown-text {
  flex: 1;
  min-width: 0;
}

.dropdown-text h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 2px;
  line-height: 1.25;
}

.dropdown-text p {
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.35;
  white-space: normal;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-primary);
  cursor: pointer;
  padding: 6px;
}

/* --------------------------------------------------------------------------
   LÜKS BUTİK GÖZLÜK VE OPTİK HERO SLIDER
   -------------------------------------------------------------------------- */
.hero-slider-section {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #faf8f5 100%);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.hero-slider-container {
  position: relative;
  min-height: 570px;
}

.hero-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 50px 0 85px;
}

.hero-slide.active {
  display: block;
  opacity: 1;
}

.hero-slide-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 45px;
  align-items: center;
  min-height: 440px;
}

.hero-slide-content {
  max-width: 640px;
  animation: slideContentIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideContentIn {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: var(--shadow-xs);
  letter-spacing: 0.2px;
}

.hero-pill-tag .green-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
}

.hero-pill-tag .gold-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

.hero-pill-tag .blue-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0284c7;
}

.hero-slide-title {
  font-size: 2.85rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.18;
  margin-bottom: 16px;
  letter-spacing: -0.8px;
  min-height: 105px;
}

.hero-slide-title span.highlight-gold {
  color: var(--color-accent);
  background: linear-gradient(135deg, #8b6b3f 0%, #b8935e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-slide-desc {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 26px;
  min-height: 54px;
}

.hero-buttons-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--color-primary);
}

.hero-trust-item i {
  color: var(--color-accent);
}

/* Slide Görsel Vitrini */
.hero-slide-visual {
  position: relative;
  animation: slideVisualIn 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideVisualIn {
  0% {
    opacity: 0;
    transform: scale(0.96);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(25, 34, 49, 0.14);
  border: 1px solid var(--border-gold);
  background: transparent;
  height: 440px;
}

.hero-img-item {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.hero-slide-visual:hover .hero-img-item {
  transform: scale(1.03);
}

.hero-img-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(25, 34, 49, 0.85) 100%);
  padding: 24px 20px 16px;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
}

.floating-card-pill {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  animation: floatCard 4s ease-in-out infinite;
}

.floating-card-pill.pos-top {
  top: 18px;
  left: -24px;
}

.floating-card-pill.pos-bottom {
  bottom: 30px;
  right: -24px;
  animation-delay: 2s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.floating-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.floating-card-pill.pos-bottom .floating-icon {
  background: var(--color-gold-light);
  color: var(--color-gold);
}

.floating-info h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
}

.floating-info p {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* Slider Navigasyon Okları & Noktalar */
.hero-slider-nav {
  position: absolute;
  top: 48%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
  z-index: 20;
}

.hero-slider-arrow {
  pointer-events: auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-color);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.hero-slider-arrow:hover {
  background: var(--color-accent);
  color: #ffffff;
  border-color: var(--color-accent);
  transform: scale(1.08);
}

.hero-slider-dots {
  display: none;
}

/* Slider Alt Segment Sekmeleri */
.hero-slider-tabs-container {
  position: relative;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.02);
  z-index: 15;
}

.hero-slider-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.hero-tab-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  background: transparent;
  border: none;
  border-right: 1px solid var(--border-light);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
  position: relative;
}

.hero-tab-btn:last-child {
  border-right: none;
}

.hero-tab-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: var(--transition);
}

.hero-tab-btn.active {
  background: var(--color-accent-subtle);
}

.hero-tab-btn.active::after {
  background: var(--color-accent);
}

.hero-tab-btn .tab-num {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #cbd5e1;
  transition: var(--transition);
}

.hero-tab-btn.active .tab-num {
  color: var(--color-accent);
}

.hero-tab-btn .tab-text {
  display: flex;
  flex-direction: column;
}

.hero-tab-btn .tab-text strong {
  font-family: var(--font-heading);
  font-size: 0.94rem;
  color: var(--color-primary);
  line-height: 1.25;
}

.hero-tab-btn.active .tab-text strong {
  color: var(--color-accent-dark);
}

.hero-tab-btn .tab-text small {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   MOBİL SLİDER GÖSTERGE & NAVİGASYON (MOBİLDE ANINDA FARK EDİLEN SLAYT)
   -------------------------------------------------------------------------- */
.hero-mobile-indicator {
  display: none;
}

/* --------------------------------------------------------------------------
   MARKA LOGOLARI BANDI (SONSUZ AKICI LOGO MARQUEE SLIDER)
   -------------------------------------------------------------------------- */
.brand-strip-clean {
  padding: 20px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
  position: relative;
}

.brand-strip-clean::before,
.brand-strip-clean::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.brand-strip-clean::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.brand-strip-clean::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.brand-marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeSlider 32s linear infinite;
  gap: 48px;
  align-items: center;
}

.brand-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeSlider {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.brand-logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 10px;
  transition: var(--transition);
}

.brand-logo-img {
  height: 38px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  opacity: 0.82;
  filter: grayscale(100%);
  transition: var(--transition);
}

.brand-logo-item:hover .brand-logo-img {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.08);
}



/* --------------------------------------------------------------------------
   GÖZLÜK KOLEKSİYONLARI KARTLARI (KADIN, ERKEK, GÜNEŞ, ÇOCUK)
   -------------------------------------------------------------------------- */
.eyewear-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.eyewear-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.eyewear-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(2, 132, 199, 0.4);
}

.eyewear-thumb {
  height: 230px;
  position: relative;
  overflow: hidden;
  background: #f1f5f9;
}

.eyewear-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.eyewear-card:hover .eyewear-thumb img {
  transform: scale(1.05);
}

.eyewear-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.eyewear-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.eyewear-brands-list {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.brand-mini-tag {
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--bg-muted);
  color: #475569;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.eyewear-body h3 {
  font-size: 1.3rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.eyewear-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.eyewear-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.eyewear-features li {
  font-size: 0.85rem;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 8px;
}

.eyewear-features li i {
  color: var(--color-accent);
}

.eyewear-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: var(--color-accent-subtle);
  color: var(--color-accent-dark);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.eyewear-cta-link:hover {
  background: var(--color-accent);
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   ÖZEL CAMLAR & HİZMETLER TEMİZ KART GRİDLERİ
   -------------------------------------------------------------------------- */
.services-grid-clean {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card-clean {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 30px 24px;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-card-clean:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-hover);
}

.service-card-clean .service-icon-clean {
  margin-bottom: 18px;
}

.service-card-clean h3 {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: 10px;
  font-weight: 700;
}

.service-card-clean p {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   GENEL HİZMETLER VE ULAŞIM KARTLARI
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-hover);
}

.service-card .service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 12px;
  font-weight: 700;
}

.service-card p {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   SAYFA HERO & BREADCRUMB
   -------------------------------------------------------------------------- */
.page-hero {
  background: var(--color-primary);
  color: #ffffff;
  padding: 55px 0 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 14px;
}

.breadcrumb-list a {
  color: var(--color-accent-light);
  transition: var(--transition);
}

.breadcrumb-list a:hover {
  color: #ffffff;
}

.breadcrumb-list .sep {
  font-size: 0.65rem;
  opacity: 0.6;
}

.page-hero-title {
  font-size: 2.6rem;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.2;
}

.page-hero-subtitle {
  font-size: 1.08rem;
  color: #cbd5e1;
  max-width: 820px;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   İLETİŞİM BÖLÜMÜ & HARİTA WRAPPER
   -------------------------------------------------------------------------- */
.location-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  align-items: stretch;
}

.location-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.location-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.15rem;
}

.location-text h4 {
  font-size: 0.98rem;
  color: var(--color-primary);
  margin-bottom: 4px;
  font-weight: 700;
}

.location-text p {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.55;
}

.map-container {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-xs);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
  display: block;
}

.location-card-clean {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.location-content-clean {
  padding: 40px;
}

.clean-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.clean-contact-row i {
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-top: 3px;
}

.clean-contact-row h4 {
  font-size: 0.98rem;
  color: var(--color-primary);
  margin-bottom: 2px;
}

.clean-contact-row p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   FOOTER EK VE ALTERNATİF ELEMANLARI
   -------------------------------------------------------------------------- */
.footer-col h4 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.88rem;
  color: #94a3b8;
}

.footer-contact-item i {
  color: var(--color-accent);
  margin-top: 4px;
}

.footer-contact-item a {
  color: #ffffff;
}

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

/* --------------------------------------------------------------------------
   GECE SÜRÜŞÜ TEST SİMÜLATÖRÜ
   -------------------------------------------------------------------------- */
.sim-box-clean {
  background: #0f172a;
  border-radius: var(--radius-xl);
  padding: 44px;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sim-container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 36px;
  align-items: center;
}

.sim-toggles {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sim-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #e2e8f0;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}

.sim-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.sim-btn.active {
  background: rgba(2, 132, 199, 0.25);
  border-color: var(--color-accent);
  color: #ffffff;
}

.sim-viewer {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 360px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  background: #000000;
}

.sim-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease-in-out;
}

.sim-overlay {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 10;
}

.sim-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(8px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.sim-badge.roadsafe {
  border-color: rgba(16, 185, 129, 0.4);
  color: #6ee7b7;
}

/* --------------------------------------------------------------------------
   FEATURE SPLIT & TEKNİK BÖLÜMLER
   -------------------------------------------------------------------------- */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.feature-split.reversed {
  direction: ltr;
}

.feature-content h2 {
  font-size: 2.1rem;
  color: var(--color-primary);
  margin-bottom: 16px;
  line-height: 1.25;
}

.feature-content p {
  font-size: 1.02rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 16px;
}

.feature-specs-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-primary);
  background: #ffffff;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.spec-item i {
  color: var(--color-accent);
}

.real-brand-pill {
  font-weight: 800;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.custom-table th, .custom-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border-color);
  text-align: left;
}

.custom-table th {
  background: var(--bg-muted);
  color: var(--color-primary);
  font-weight: 700;
}

.service-icon-clean {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

/* --------------------------------------------------------------------------
   FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-grid-clean {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item-clean {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item-clean.active {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-sm);
}

.faq-question-clean {
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question-clean i {
  color: var(--color-accent);
  transition: transform 0.3s ease;
}

.faq-item-clean.active .faq-question-clean i {
  transform: rotate(180deg);
}

.faq-answer-clean {
  padding: 0 22px 18px;
  color: #475569;
  font-size: 0.94rem;
  line-height: 1.7;
  display: none;
}

.faq-item-clean.active .faq-answer-clean {
  display: block;
}

.reviews-grid-clean {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card-clean {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card-clean .stars {
  color: #f59e0b;
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: flex;
  gap: 3px;
}

.review-card-clean .quote {
  font-size: 0.9rem;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}

.review-card-clean .author {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--border-light);
  padding-top: 10px;
}

.author-avatar-clean {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
}

.cta-box-clean {
  background: var(--color-primary);
  border-radius: var(--radius-xl);
  padding: 45px 36px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: var(--shadow-md);
}

.cta-box-clean h2 {
  font-size: 1.9rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.cta-box-clean p {
  color: #cbd5e1;
  font-size: 0.96rem;
  max-width: 560px;
}

.footer-clean {
  background-color: #0b1320;
  color: #94a3b8;
  padding: 65px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid-clean {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 45px;
}

.footer-col-clean h4 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.footer-col-clean ul li {
  margin-bottom: 9px;
}

.footer-col-clean ul a {
  color: #94a3b8;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-col-clean ul a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-bottom-clean {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

/* Mobil Bar */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  padding: 6px 12px;
}

.mobile-action-bar-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.mobile-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 8px;
}

.mobile-action-btn i {
  font-size: 1.2rem;
  color: var(--color-primary);
}

.mobile-action-btn.btn-wa-active i {
  color: #25D366;
}

/* --------------------------------------------------------------------------
   ÖZEL CAM VE LENS KARTLARI (REAL LENS CARDS)
   -------------------------------------------------------------------------- */
.real-lens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.real-lens-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.real-lens-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.real-lens-thumb {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--bg-muted);
}

.real-lens-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.real-lens-card:hover .real-lens-thumb img {
  transform: scale(1.05);
}

.thumb-tag-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--color-accent);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.2px;
}

.real-lens-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.real-lens-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.real-brand-pill {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
  border: 1px solid rgba(155, 122, 79, 0.18);
}

.real-lens-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.real-lens-body p {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 16px;
}

.real-lens-specs {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.real-lens-specs li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--color-primary);
  font-weight: 500;
}

.real-lens-specs li i {
  color: var(--color-accent);
  font-size: 0.88rem;
  flex-shrink: 0;
}

.real-card-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 700;
  transition: var(--transition);
  margin-top: auto;
}

.real-card-btn:hover {
  background: var(--color-accent);
  color: #ffffff;
  transform: translateX(3px);
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 90;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1024px) {
  .top-bar {
    display: none;
  }
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
  }
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background: var(--color-accent-light);
    color: var(--color-accent-dark);
    font-size: 1.25rem;
    transition: var(--transition);
    border: none;
  }
  .mobile-toggle:hover {
    background: var(--color-accent);
    color: #ffffff;
  }
  .nav-menu {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 58px;
    height: calc(100vh - 68px - 58px);
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border-light);
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 998;
  }
  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  body.menu-open {
    overflow: hidden;
  }
  .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--border-light);
  }
  .nav-link {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary);
    padding: 14px 10px;
    border-radius: var(--radius-md);
    transition: var(--transition);
  }
  .nav-link::after {
    display: none !important;
  }
  .nav-link.active {
    color: var(--color-accent-dark);
    background: var(--color-accent-subtle);
  }
  .nav-item.has-dropdown .nav-link {
    cursor: pointer;
  }
  .nav-item.has-dropdown .nav-link i {
    transition: transform 0.3s ease;
    font-size: 0.85rem;
    color: var(--color-accent);
  }
  .nav-item.has-dropdown.expanded .nav-link i {
    transform: rotate(180deg);
  }
  .nav-dropdown {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    box-shadow: none;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    background: var(--color-accent-subtle);
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 0 8px;
    margin: 0;
    display: block;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav-item.has-dropdown.expanded .nav-dropdown {
    opacity: 1;
    visibility: visible;
    max-height: 520px;
    padding: 10px;
    margin: 6px 0 14px;
  }
  .nav-dropdown::before {
    display: none;
  }
  .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 12px;
    border-radius: var(--radius-md);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    margin-bottom: 6px;
    box-shadow: var(--shadow-xs);
  }
  .dropdown-item:last-child {
    margin-bottom: 0;
  }
  .dropdown-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--color-accent-light);
    color: var(--color-accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }
  .dropdown-text h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 2px;
    line-height: 1.25;
  }
  .dropdown-text p {
    font-size: 0.74rem;
    color: var(--text-muted);
    line-height: 1.35;
  }
  .header-actions .btn-primary {
    display: none;
  }
  .hero-slide-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    min-height: auto;
  }
  .hero-slide {
    padding: 45px 0 65px;
  }
  .hero-slider-container {
    min-height: auto;
  }
  .services-grid-clean {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .location-wrapper {
    grid-template-columns: 1fr;
    padding: 30px;
  }
  .map-container, .map-container iframe {
    min-height: 360px;
  }
  .sim-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .feature-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .eyewear-grid, .lens-tech-grid, .real-lens-grid, .reviews-grid-clean {
    grid-template-columns: repeat(2, 1fr);
  }
  .location-card-clean {
    grid-template-columns: 1fr;
  }
  .footer-grid-clean {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 60px;
  }
  .section {
    padding: 45px 0;
  }
  .page-hero {
    padding: 35px 0 30px;
  }
  .page-hero-title {
    font-size: 1.75rem;
  }
  
  /* MOBİL SLİDER DÜZENİ */
  .hero-slider-section {
    padding-bottom: 0;
  }
  .hero-slide {
    padding: 16px 0 22px;
  }
  .hero-slide-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: auto;
  }
  .hero-pill-tag {
    align-self: flex-start;
    font-size: 0.75rem;
    padding: 4px 12px;
    margin-bottom: 8px;
  }
  .hero-slide-title {
    font-size: 1.54rem;
    line-height: 1.25;
    margin-bottom: 14px;
    letter-spacing: -0.4px;
    min-height: auto;
  }
  .hero-slide-visual {
    margin: 0 0 10px;
    width: 100%;
    order: 2;
  }
  .hero-image-wrapper {
    width: 100%;
    height: 210px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    background: transparent;
    overflow: hidden;
  }
  .hero-img-item {
    width: 100%;
    height: 210px;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .floating-card-pill {
    display: none;
  }

  .hero-slide-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #475569;
    min-height: auto;
    order: 4;
  }
  .hero-buttons-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
    order: 5;
    width: 100%;
  }
  .hero-buttons-group .btn {
    padding: 10px 12px;
    font-size: 0.82rem;
    justify-content: center;
  }
  .hero-buttons-group .btn:nth-child(3) {
    grid-column: span 2;
  }
  .hero-trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding-top: 16px;
    margin-bottom: 18px;
    border-top: 1px solid var(--border-light);
    order: 6;
    width: 100%;
  }
  .hero-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 4px;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--color-primary);
    background: #ffffff;
    padding: 8px 4px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-xs);
  }
  .hero-trust-item i {
    color: var(--color-accent);
    font-size: 0.95rem;
    margin-bottom: 2px;
  }
  .hero-slider-nav {
    display: none;
  }
  .hero-slider-container {
    display: flex;
    flex-direction: column;
  }
  .hero-slider-tabs-container {
    order: -1;
    background: #ffffff;
    border-top: none;
    border-bottom: 1px solid var(--border-gold);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 10;
    width: 100%;
  }
  .hero-slider-tabs-container .container {
    padding: 0;
    max-width: 100%;
  }
  .hero-slider-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    margin: 0 auto;
  }
  .hero-tab-btn {
    padding: 12px 4px;
    gap: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid var(--border-light);
    border-bottom: 3px solid transparent;
    border-top: none;
    background: transparent;
    transition: var(--transition);
    outline: none;
    -webkit-tap-highlight-color: transparent;
  }
  .hero-tab-btn:focus,
  .hero-tab-btn:focus-visible {
    outline: none;
  }
  .hero-tab-btn:last-child {
    border-right: none;
  }
  .hero-tab-btn.active {
    background: var(--color-accent-subtle);
    border-bottom-color: var(--color-accent);
  }
  .hero-tab-btn.active::after {
    display: none;
  }
  .hero-tab-btn .tab-num {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    color: #94a3b8;
  }
  .hero-tab-btn.active .tab-num {
    color: var(--color-accent);
  }
  .hero-tab-btn .tab-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-tab-btn .tab-text strong {
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
    white-space: nowrap;
  }
  .hero-tab-btn.active .tab-text strong {
    color: var(--color-accent-dark);
  }
  .hero-tab-btn .tab-text small {
    display: none;
  }

  .services-grid-clean,
  .services-grid,
  .real-lens-grid,
  .eyewear-grid, 
  .lens-tech-grid, 
  .reviews-grid-clean, 
  .footer-grid-clean {
    grid-template-columns: 1fr;
  }
  .footer-clean {
    padding: 45px 0 95px;
  }
  .footer-grid-clean {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 30px;
  }
  .footer-bottom-clean {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding-top: 18px;
  }
  .footer-bottom-clean p {
    font-size: 0.8rem;
    line-height: 1.5;
  }
  .back-to-top {
    bottom: 72px;
    right: 14px;
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
    z-index: 990;
  }
  .feature-specs-list {
    grid-template-columns: 1fr;
  }
  .location-wrapper {
    padding: 20px;
    gap: 24px;
  }
  .map-container, .map-container iframe {
    min-height: 300px;
  }
  .sim-box-clean {
    padding: 24px 18px;
  }
  .sim-viewer {
    height: 260px;
  }
  .cta-box-clean {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  .mobile-action-bar {
    display: block;
  }
}
