/* ==========================================================================
   KILIÇPARLAR OPTİK - LUXURY OPTICS DESIGN SYSTEM
   Modern, Dark Luxury & Performance-Driven Styling
   ========================================================================== */

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

:root {
  /* =============================================
     COLOR PALETTE — Ferah Beyaz & Koyu Meşe / Ceviz Ahşap
     Kılıçparlar Optik Nizip Butik Mimari Paleti
     ============================================= */
  --bg-main: #ffffff;
  --bg-surface: #f8fafc;
  --bg-surface-warm: #faf7f2;
  --bg-card: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.94);

  /* Birincil Vurgu: Koyu Meşe & Derin Ceviz Ahşap Tonu */
  --gold-primary: #754b24;
  --gold-light: #9e6b3b;
  --gold-dark: #543314;
  --gold-gradient: linear-gradient(135deg, #8e5c2d 0%, #754b24 50%, #543314 100%);

  /* İkincil Vurgu: Sıcak Işıltı */
  --blue-glow: #f6eedf;
  --blue-gradient: linear-gradient(135deg, #f7ebd7 0%, #9e6b3b 100%);
  --accent-leather: #6a401c;

  /* Mimari Koyu Kontrast Tonlar (Tipografi) */
  --navy-deep: #111419;
  --navy-mid: #1d222b;
  --navy-light: #2c3340;

  /* Tipografi — Beyaz Zemin Üzerinde Net, Lüks ve Okunaklı */
  --text-pure: #11141a;
  --text-primary: #232933;
  --text-secondary: #586374;
  --text-muted: #8892a0;

  /* Kenarlıklar — İnce, Minimal ve Koyu Ahşap Işıltılı */
  --border-subtle: rgba(0, 0, 0, 0.06);
  --border-gold: rgba(117, 75, 36, 0.28);
  --border-glow: rgba(158, 107, 59, 0.45);

  /* Typography */
  --font-serif: 'Cinzel', serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-hand: 'Alex Brush', cursive;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* Radii & Shadows */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Yumuşak Lüks Gölgeler */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.03);
  --shadow-card: 0 8px 30px rgba(17, 20, 26, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  --shadow-gold: 0 8px 24px rgba(117, 75, 36, 0.22);
}

/* Reset & Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  width: 100%;
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  background: var(--bg-main);
  -webkit-overflow-scrolling: touch;
}

/* ==========================================================================
   PAMUK HİSSİNDE İPEKSİ KAYDIRMA ÇUBUĞU (LUXURY COTTON SCROLLBAR)
   ========================================================================== */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.03);
}

::-webkit-scrollbar-thumb {
  background: rgba(117, 75, 36, 0.3);
  border-radius: 999px;
  border: 2px solid #ffffff;
  background-clip: padding-box;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(117, 75, 36, 0.65);
  border: 2px solid #ffffff;
  background-clip: padding-box;
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(117, 75, 36, 0.3) rgba(0, 0, 0, 0.03);
}

/* Subtle luxury background radial lights — Ferah Beyaz & Sıcak Meşe Işıltısı */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 20%;
  width: 60vw;
  height: 60vh;
  background: radial-gradient(circle, rgba(117, 75, 36, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  bottom: 0;
  right: 0;
  width: 40vw;
  height: 40vh;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.02) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   NAVIGATION BAR (Glassmorphism & Sticky)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-normal);
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  height: 48px;
}

.brand-logo img, .brand-logo svg {
  height: 44px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}

.footer-brand-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-fast);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Luxury Gold & Ghost Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 18px rgba(117, 75, 36, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(117, 75, 36, 0.45);
  filter: brightness(1.08);
}

.btn-glass {
  background: #f4f6f9;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text-pure);
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: #ebeef3;
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-pure);
  transition: all var(--transition-fast);
  padding: 0;
  flex-shrink: 0;
}

.mobile-toggle:hover {
  background: rgba(117, 75, 36, 0.08);
  border-color: var(--gold-primary);
}

.mobile-toggle svg {
  transition: transform var(--transition-fast);
}

.mobile-toggle.active svg {
  transform: rotate(90deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 25, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
  z-index: 997;
}

.nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   TRUST BADGES / QUICK STATS BAR
   ========================================================================== */
.trust-bar {
  background: #f8fafc;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  padding: 24px 0;
  position: relative;
  z-index: 10;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 12px;
}

.trust-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(117, 75, 36, 0.08);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.trust-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 2px;
}

.trust-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
.section {
  padding: 110px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 14px;
  background: rgba(117, 75, 36, 0.08);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(117, 75, 36, 0.22);
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-pure);
  letter-spacing: 1px;
  margin-bottom: 18px;
  line-height: 1.25;
}

.section-title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-weight: 300;
}

/* ==========================================================================
   BRANDS TICKER & SHOWCASE
   ========================================================================== */
.brands-section {
  padding: 70px 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.brands-slider {
  display: flex;
  gap: 60px;
  align-items: center;
  overflow: hidden;
  user-select: none;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.brands-track {
  display: flex;
  gap: 64px;
  animation: ticker 35s linear infinite;
  white-space: nowrap;
}

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

.brand-pill {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 4px;
  font-weight: 700;
  color: rgba(30, 36, 46, 0.35);
  transition: all var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-pill:hover {
  color: var(--gold-primary);
  text-shadow: none;
}

.brand-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-primary);
  opacity: 0.5;
}

/* ==========================================================================
   COLLECTIONS SECTION
   ========================================================================== */
.collection-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 22px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--gold-gradient);
  color: #ffffff;
  font-weight: 600;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(117, 75, 36, 0.25);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}

.product-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
}

.product-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #f5f6f8;
  cursor: pointer;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-smooth);
}

.product-card:hover .product-media img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 9px;
  left: 9px;
  background: var(--gold-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 3px 7px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.product-info {
  padding: 13px 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-brand {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.3px;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 3px;
}

.product-title {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-pure);
  margin-bottom: 5px;
  line-height: 1.32;
}

.product-desc {
  font-size: 0.76rem;
  color: var(--text-secondary);
  line-height: 1.42;
  margin-bottom: 10px;
}

.product-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-subtle);
  padding-top: 10px;
  margin-top: auto;
}

.product-action .btn {
  padding: 6px 13px !important;
  font-size: 0.76rem !important;
  border-radius: 8px;
}

.product-tag-info {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.collection-view-all-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.btn-view-all {
  padding: 14px 34px !important;
  font-size: 0.95rem !important;
  font-weight: 600;
  border-radius: 50px !important;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 6px 22px rgba(117, 75, 36, 0.22);
  transition: all var(--transition-normal);
}

.btn-view-all:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(117, 75, 36, 0.35);
}

.btn-view-all svg {
  transition: transform var(--transition-fast);
}

.btn-view-all:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   INTERACTIVE OPTICAL LENS SIMULATOR
   ========================================================================== */
.lens-simulator-section {
  background: #f8fafc;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.simulator-box {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.03);
}

.simulator-view {
  position: relative;
  background: #000000;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sim-preview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter var(--transition-normal), opacity var(--transition-normal);
}

/* Visual Lens Overlays */
.sim-overlay-glare {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 65% 35%, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.05) 40%, transparent 60%);
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.sim-overlay-bluelight {
  position: absolute;
  inset: 0;
  background: rgba(56, 189, 248, 0.15);
  mix-blend-mode: color-dodge;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.sim-watermark-lens {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  padding: 8px 16px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.sim-watermark-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #11141a;
}

.sim-watermark-sub {
  font-size: 0.72rem;
  color: var(--text-secondary);
}

.simulator-controls {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sim-options-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.sim-option-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.sim-option-card:hover {
  background: #fbfbfd;
  border-color: rgba(0, 0, 0, 0.12);
}

.sim-option-card.active {
  background: #fdfaf6;
  border-color: var(--gold-primary);
  box-shadow: 0 4px 16px rgba(117, 75, 36, 0.12);
}

.sim-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f4f5f8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.sim-option-card.active .sim-icon-circle {
  background: var(--gold-primary);
  color: #ffffff;
}

.sim-option-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 4px;
}

.sim-option-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* ==========================================================================
   SGK ANLAŞMASI & HİZMETLER BÖLÜMÜ
   ========================================================================== */
.sgk-banner-section {
  padding: 90px 0;
  background: #ffffff;
  position: relative;
}

.sgk-card-wrapper {
  background: #f8fafc;
  border: 1px solid rgba(117, 75, 36, 0.2);
  border-radius: var(--radius-lg);
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.03);
}

.sgk-card-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(117, 75, 36, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.sgk-badge-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(117, 75, 36, 0.08);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.sgk-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 30px 0;
}

.sgk-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.sgk-check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(201, 151, 91, 0.12);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.sgk-visual-panel {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.sgk-step-box {
  display: flex;
  gap: 16px;
}

.sgk-step-num {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--gold-gradient);
  color: #ffffff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sgk-step-title {
  font-weight: 700;
  color: var(--text-pure);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.sgk-step-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   BOUTIQUE STORE & LOCATION (Nizip, Gaziantep)
   ========================================================================== */
.store-section {
  padding: 100px 0;
}

.store-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.store-info-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  padding: 45px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

.store-contact-rows {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 30px 0;
}

.store-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.store-row-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(117, 75, 36, 0.08);
  border: 1px solid rgba(117, 75, 36, 0.22);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.store-row-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-primary);
  margin-bottom: 3px;
  font-weight: 700;
}

.store-row-val {
  font-size: 0.98rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.store-map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  background: #ffffff;
  min-height: 420px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

.store-map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: none;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #111419;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 30px;
  color: #ffffff;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand-logo {
  margin-bottom: 18px;
  height: 48px;
}

.footer-bio {
  font-size: 0.88rem;
  color: #8c98a9;
  line-height: 1.65;
  max-width: 320px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background: var(--gold-gradient);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-3px);
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

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

.footer-link {
  font-size: 0.88rem;
  color: #9aa5b6;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--gold-light);
}

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

/* ==========================================================================
   FLOATING QUICK CONTACT ACTION (Phone Call & WhatsApp)
   ========================================================================== */
.floating-call {
  position: fixed;
  bottom: 104px;
  right: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a67c48 0%, #c59b63 50%, #dfba82 100%);
  color: #121b2a;
  box-shadow: 0 10px 28px rgba(197, 155, 99, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.2);
  transition: all var(--transition-normal);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  text-decoration: none;
}

.floating-call::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(197, 155, 99, 0.6);
  opacity: 0;
  animation: callPulse 2.6s infinite ease-out;
  pointer-events: none;
}

@keyframes callPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  60% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.floating-call:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 16px 36px rgba(197, 155, 99, 0.65);
  color: #0b111a;
}

.floating-call svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  display: block;
}

/* Hover Tooltip for Call */
.floating-call span {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: rgba(12, 19, 31, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(197, 155, 99, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.floating-call:hover span {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e8c4e 0%, #25d366 100%);
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.15);
  transition: all var(--transition-normal);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  text-decoration: none;
}

.floating-whatsapp::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  opacity: 0;
  animation: waPulse 2.6s infinite ease-out;
  pointer-events: none;
}

@keyframes waPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  60% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.55);
  color: #fff;
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  display: block;
}

/* Hover Tooltip */
.floating-whatsapp span {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: rgba(12, 19, 31, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.floating-whatsapp:hover span {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ==========================================================================
   RESPONSIVE DESIGN (Tablets & Mobile - 1024px, 768px, 640px, 480px)
   ========================================================================== */
@media (max-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 620px;
    margin: 0 auto;
  }
  .simulator-box, .sgk-card-wrapper, .store-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991px) {
  .site-header .nav-cta .btn-gold,
  .site-header .nav-cta a.btn {
    display: none !important;
  }
}

@media (max-width: 768px) {
  /* Genel Boşluklar & Konteyner */
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }
  .section {
    padding: 60px 0;
  }
  .section-header {
    margin-bottom: 36px;
  }
  .section-title {
    font-size: 1.95rem;
    line-height: 1.25;
  }
  .section-subtitle {
    font-size: 0.92rem;
  }

  /* Sabit Header & Mobil Menü Çekmecesi */
  .site-header {
    padding: 10px 0;
  }
  .brand-logo img {
    height: 38px;
  }
  .mobile-toggle {
    display: flex;
  }
  .nav-links {
    display: flex;
    position: fixed;
    top: 58px;
    left: 0;
    width: 100%;
    max-height: calc(100dvh - 58px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 24px 20px 36px;
    gap: 12px; /* Yazılar arası geniş ve ferah boşluk */
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
    border-bottom: 1px solid rgba(117, 75, 36, 0.15);
    transform: translateY(-115%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.35s;
    z-index: 998;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.mobile-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-links li {
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .nav-link {
    font-size: 1.08rem;
    font-weight: 600;
    padding: 16px 20px; /* Geniş dokunma alanı - yanlış yere dokunmayı engeller */
    border-radius: 12px;
    color: #11141a;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    min-height: 52px; /* Standart konforlu dokunmatik yükseklik */
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-link:active, .nav-link:hover {
    background: rgba(117, 75, 36, 0.08);
    color: var(--gold-primary);
    border-color: rgba(117, 75, 36, 0.22);
  }
  .nav-link.active {
    background: rgba(117, 75, 36, 0.1);
    color: var(--gold-primary);
    border-color: rgba(117, 75, 36, 0.3);
    font-weight: 700;
  }
  .nav-link::after {
    display: none; /* Mobilde alt çizgi yerine buton kutucuğu stili */
  }
  .nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  /* Mobilde menü başlığındaki kahverengi WhatsApp randevu butonunu kesin olarak gizle */
  .site-header .nav-cta .btn-gold,
  .site-header .nav-cta a.btn,
  .nav-cta .btn-gold,
  .nav-cta a.btn {
    display: none !important;
  }

  /* Güven & Avantaj Barı */
  .trust-bar {
    padding: 16px 0;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .trust-item {
    padding: 10px 14px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  }
  .trust-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 1.1rem;
  }
  .trust-title {
    font-size: 0.88rem;
  }
  .trust-desc {
    font-size: 0.75rem;
  }

  /* Koleksiyon Sekmeleri (Yatay Kaydırmalı Pill Bar) */
  .collection-tabs {
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 6px;
    margin-bottom: 22px;
    gap: 8px;
    padding-left: 2px;
    padding-right: 2px;
  }
  .collection-tabs::-webkit-scrollbar {
    display: none;
  }
  .tab-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
    flex-shrink: 0;
  }
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 560px;
    margin: 0 auto;
  }

  /* Simülatör */
  .simulator-box {
    grid-template-columns: 1fr;
    border-radius: var(--radius-md);
  }
  .simulator-view {
    min-height: 230px;
    max-height: 270px;
  }
  .sim-watermark-lens {
    bottom: 10px;
    left: 10px;
    padding: 5px 10px;
  }
  .sim-watermark-title {
    font-size: 0.78rem;
  }
  .sim-watermark-sub {
    font-size: 0.66rem;
  }
  .simulator-controls {
    padding: 20px 16px;
  }
  .sim-options-list {
    gap: 8px;
    margin-top: 14px;
  }
  .sim-option-card {
    padding: 10px 12px;
    gap: 10px;
    border-radius: 10px;
  }
  .sim-option-title {
    font-size: 0.85rem;
  }
  .sim-option-desc {
    font-size: 0.74rem;
  }

  /* SGK Reçete */
  .sgk-banner-section {
    padding: 55px 0;
  }
  .sgk-card-wrapper {
    grid-template-columns: 1fr;
    padding: 24px 16px;
    gap: 24px;
    border-radius: var(--radius-md);
  }
  .sgk-badge-large {
    font-size: 0.76rem;
    padding: 5px 12px;
    margin-bottom: 12px;
  }
  .sgk-features-list {
    gap: 10px;
    margin: 18px 0;
  }
  .sgk-feature-item {
    font-size: 0.86rem;
    gap: 10px;
  }
  .sgk-visual-panel {
    padding: 18px 14px;
    gap: 14px;
  }
  .sgk-step-box {
    gap: 10px;
  }
  .sgk-step-num {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  /* Mağaza & İletişim */
  .store-section {
    padding: 55px 0;
  }
  .store-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .store-info-card {
    padding: 24px 16px;
    border-radius: var(--radius-md);
  }
  .store-contact-rows {
    gap: 14px;
    margin: 18px 0;
  }
  .store-row-icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  .store-row-val {
    font-size: 0.86rem;
  }
  .store-map-card {
    min-height: 280px;
    border-radius: var(--radius-md);
  }
  .store-map-card iframe {
    min-height: 280px;
  }

  /* Footer */
  .site-footer {
    padding: 55px 0 25px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 35px;
  }
  .footer-bio {
    max-width: 100%;
    margin-bottom: 16px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding-top: 18px;
  }

  /* Sabit Hızlı İletişim Butonları (Arama & WhatsApp) */
  .floating-call span,
  .floating-whatsapp span {
    display: none;
  }
  .floating-call {
    width: 48px;
    height: 48px;
    padding: 0;
    bottom: 74px;
    right: 14px;
    box-shadow: 0 6px 20px rgba(197, 155, 99, 0.45);
  }
  .floating-call svg {
    width: 22px;
    height: 22px;
  }
  .floating-whatsapp {
    width: 48px;
    height: 48px;
    padding: 0;
    bottom: 16px;
    right: 14px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.38);
  }
  .floating-whatsapp svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 540px) {
  .collection-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
    gap: 16px;
  }
}

@media (max-width: 440px) {
  .nav-cta-text {
    display: none;
  }
  .nav-cta .btn-gold {
    padding: 8px 10px;
  }
  .brand-logo img {
    height: 34px;
  }
}

/* ==========================================================================
   HERO REKLAM AFİŞİ (BANNER SLIDER) BÖLÜMÜ
   ========================================================================== */
.hero-banner-section {
  position: relative;
  width: 100%;
  padding-top: 105px;
  padding-bottom: 30px;
  background: var(--bg-main);
  z-index: 2;
}

.hero-banner-wrapper {
  position: relative;
  width: 100%;
}

.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1672 / 941;
  min-height: 220px;
  background: #12151b;
  border: 1px solid rgba(117, 75, 36, 0.22);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.08);
  user-select: none;
  touch-action: pan-y pinch-zoom;
}

.hero-slider:hover {
  border-color: var(--border-gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transform: scale(1.02);
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Navigasyon Okları */
.hero-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  transition: all 0.25s ease;
  opacity: 0.88;
}

.hero-slider:hover .hero-slider-btn {
  opacity: 1;
}

.hero-slider-btn:hover {
  background: #ffffff;
  color: #11141a;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.hero-slider-prev {
  left: 18px;
}

.hero-slider-next {
  right: 18px;
}

/* Gösterge Noktaları */
.hero-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 10;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.9);
}

.hero-dot.active {
  width: 24px;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .hero-banner-section {
    padding-top: 85px;
    padding-bottom: 20px;
  }
  .hero-slider {
    aspect-ratio: 16 / 9;
    min-height: 190px;
    border-radius: var(--radius-md);
  }
  .hero-slider-btn {
    width: 36px;
    height: 36px;
  }
  .hero-slider-prev {
    left: 10px;
  }
  .hero-slider-next {
    right: 10px;
  }
  .hero-slider-dots {
    bottom: 10px;
    padding: 4px 10px;
    gap: 6px;
  }
  .hero-dot.active {
    width: 18px;
  }
}

/* ==========================================================================
   HOME ABOUT SECTION (HAKKIMIZDA BÖLÜMÜ)
   ========================================================================== */
.home-about-section {
  padding: 100px 0;
  position: relative;
  background: #ffffff;
}

.home-about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.home-about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home-about-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-pure);
  line-height: 1.25;
  letter-spacing: 0.5px;
}

.home-about-title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-about-lead {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-pure);
  line-height: 1.5;
  border-left: 3px solid var(--gold-primary);
  padding-left: 18px;
}

.home-about-desc {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.home-about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 6px 0 10px;
}

.home-about-feat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.home-about-feat:hover {
  background: #ffffff;
  border-color: rgba(117, 75, 36, 0.25);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  transform: translateX(4px);
}

.home-about-feat .feat-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: rgba(117, 75, 36, 0.1);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-about-feat strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-pure);
  margin-bottom: 2px;
}

.home-about-feat span {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.home-about-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.home-about-media {
  position: relative;
}

.home-about-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.07);
}

.home-about-img-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform var(--transition-smooth);
}

.home-about-img-card:hover img {
  transform: scale(1.04);
}

.home-about-stamp {
  position: absolute;
  bottom: -22px;
  right: -16px;
  background: #ffffff;
  border: 1px solid rgba(117, 75, 36, 0.35);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
  max-width: 260px;
}

.home-about-stamp .stamp-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-primary);
  margin-bottom: 4px;
}

.home-about-stamp .stamp-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-pure);
}

.home-about-stamp .stamp-sub {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

@media (max-width: 992px) {
  .home-about-section {
    padding: 70px 0;
  }
  .home-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .home-about-stamp {
    position: static;
    margin-top: 16px;
    max-width: 100%;
  }
}

/* ==========================================================================
   PRODUCT IMAGE LIGHTBOX MODAL (BÜYÜTME VİTRİNİ)
   ========================================================================== */
.product-media {
  cursor: pointer;
}

.product-zoom-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(12, 19, 31, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.85);
  transition: all var(--transition-normal);
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.product-card:hover .product-zoom-hint {
  opacity: 1;
  transform: scale(1);
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 25, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
}

.lightbox-dialog {
  position: relative;
  z-index: 2;
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  transform: scale(0.92) translateY(12px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.product-lightbox.active .lightbox-dialog {
  transform: scale(1) translateY(0);
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(12, 19, 31, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--gold-primary);
  transform: rotate(90deg) scale(1.05);
}

.lightbox-image-wrap {
  width: 100%;
  max-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f6f9;
  overflow: hidden;
}

.lightbox-img {
  width: 100%;
  height: auto;
  max-height: 62vh;
  object-fit: contain;
  display: block;
}

.lightbox-caption {
  padding: 18px 24px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.lightbox-meta {
  flex: 1;
}

.lightbox-brand {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 4px;
}

.lightbox-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-pure);
  line-height: 1.35;
}

@media (max-width: 640px) {
  .lightbox-dialog {
    max-height: 94vh;
  }
  .lightbox-image-wrap {
    max-height: 52vh;
  }
  .lightbox-img {
    max-height: 52vh;
  }
  .lightbox-caption {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px;
  }
  .lightbox-caption .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   OPTİSYENLİK YASAL BİLGİLENDİRME ŞERİDİ (5193 SAYILI KANUN & SAĞLIK BAKANLIĞI)
   ========================================================================== */
.legal-notice-bar {
  background: #0e1218;
  border-top: 1px solid rgba(117, 75, 36, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 18px 0;
  font-size: 0.82rem;
  color: #8c98a9;
  line-height: 1.6;
}

.legal-notice-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.legal-notice-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(117, 75, 36, 0.15);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.legal-notice-text strong {
  color: #ffffff;
  font-weight: 600;
}

@media (max-width: 768px) {
  .legal-notice-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ==========================================================================
   ÇEREZ (COOKIE) BİLDİRİM BANNER'I (KVKK UYUMLU)
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 980px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(117, 75, 36, 0.28);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.16);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transform: translateY(150%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, visibility 0.45s;
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.cookie-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(117, 75, 36, 0.1);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cookie-text {
  font-size: 0.84rem;
  color: var(--text-primary);
  line-height: 1.55;
}

.cookie-text strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text-pure);
  margin-bottom: 2px;
}

.cookie-text a {
  color: var(--gold-primary);
  text-decoration: underline;
  font-weight: 600;
  cursor: pointer;
}

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

.cookie-actions .btn {
  padding: 9px 18px;
  font-size: 0.82rem;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .cookie-banner {
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .cookie-content {
    align-items: flex-start;
    gap: 12px;
  }
  .cookie-actions {
    flex-direction: column;
    width: 100%;
  }
  .cookie-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   KVKK, ÇEREZ VE YASAL BİLGİLER MODALI
   ========================================================================== */
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.legal-modal.active {
  opacity: 1;
  visibility: visible;
}

.legal-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 25, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.legal-modal-dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 820px;
  max-height: 88vh;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(117, 75, 36, 0.2);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.95) translateY(10px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.legal-modal.active .legal-modal-dialog {
  transform: scale(1) translateY(0);
}

.legal-modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fafbfc;
}

.legal-modal-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-pure);
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-modal-title span {
  color: var(--gold-primary);
}

.legal-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.legal-modal-close:hover {
  background: var(--gold-primary);
  color: #ffffff;
  border-color: transparent;
  transform: rotate(90deg);
}

.legal-modal-tabs {
  display: flex;
  background: #f1f4f8;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  overflow-x: auto;
  scrollbar-width: none;
}
.legal-modal-tabs::-webkit-scrollbar {
  display: none;
}

.legal-tab-btn {
  padding: 12px 20px;
  background: transparent;
  border: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all var(--transition-fast);
}

.legal-tab-btn:hover {
  color: var(--gold-primary);
}

.legal-tab-btn.active {
  color: var(--gold-primary);
  background: #ffffff;
  border-bottom-color: var(--gold-primary);
}

.legal-modal-body {
  padding: 24px 28px;
  overflow-y: auto;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-height: calc(88vh - 150px);
}

.legal-tab-pane {
  display: none;
}

.legal-tab-pane.active {
  display: block;
}

.legal-tab-pane h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-pure);
  margin: 18px 0 8px;
}

.legal-tab-pane h3:first-child {
  margin-top: 0;
}

.legal-tab-pane p {
  margin-bottom: 12px;
}

.legal-tab-pane ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.legal-tab-pane li {
  margin-bottom: 6px;
}

.legal-badge-pill {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(117, 75, 36, 0.1);
  color: var(--gold-primary);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 12px;
}

@media (max-width: 640px) {
  .legal-modal {
    padding: 10px;
  }
  .legal-modal-dialog {
    max-height: 94vh;
  }
  .legal-modal-header {
    padding: 14px 18px;
  }
  .legal-modal-body {
    padding: 18px 18px;
    max-height: calc(94vh - 130px);
    font-size: 0.85rem;
  }
  .legal-tab-btn {
    padding: 10px 14px;
    font-size: 0.8rem;
  }
}

/* ==========================================================================
   SIKÇA SORULAN SORULAR (SSS / FAQ ACCORDION) - LÜKS & SEO TASARIM
   ========================================================================== */
.faq-section {
  background: var(--bg-surface-warm);
  position: relative;
  padding: 85px 0;
}

.faq-search-wrapper {
  max-width: 860px;
  margin: 0 auto 35px auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-search-input-wrap {
  position: relative;
  width: 100%;
}

.faq-search-icon {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-primary);
  pointer-events: none;
  display: flex;
  align-items: center;
}

.faq-search-input {
  width: 100%;
  padding: 16px 20px 16px 54px;
  background: #ffffff;
  border: 1.5px solid rgba(117, 75, 36, 0.2);
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-pure);
  box-shadow: 0 4px 18px rgba(117, 75, 36, 0.05);
  transition: all var(--transition-fast);
  outline: none;
}

.faq-search-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 6px 26px rgba(117, 75, 36, 0.14);
}

.faq-categories-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.faq-cat-chip {
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid rgba(117, 75, 36, 0.18);
  border-radius: 24px;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.faq-cat-chip:hover,
.faq-cat-chip.active {
  background: var(--gold-primary);
  color: #ffffff;
  border-color: var(--gold-primary);
  box-shadow: 0 3px 12px rgba(117, 75, 36, 0.22);
}

.faq-item-category-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 5px;
  display: block;
}

.faq-accordion-wrap {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(117, 75, 36, 0.16);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.faq-item[open] {
  border-color: rgba(117, 75, 36, 0.42);
  box-shadow: 0 8px 24px rgba(117, 75, 36, 0.09);
}

.faq-question {
  padding: 22px 26px;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-pure);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  user-select: none;
  transition: color var(--transition-fast);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:hover {
  color: var(--gold-primary);
}

.faq-icon-toggle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(117, 75, 36, 0.08);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.faq-item[open] .faq-icon-toggle {
  transform: rotate(45deg);
  background: var(--gold-primary);
  color: #ffffff;
}

.faq-answer {
  padding: 0 26px 24px 26px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  padding-top: 18px;
}

.faq-answer p {
  margin: 0;
}

.faq-answer strong {
  color: var(--text-pure);
  font-weight: 600;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }
  .faq-question {
    padding: 16px 18px;
    font-size: 0.95rem;
    gap: 12px;
  }
  .faq-icon-toggle {
    width: 28px;
    height: 28px;
  }
  .faq-answer {
    padding: 0 18px 18px 18px;
    padding-top: 14px;
    font-size: 0.88rem;
  }
}

/* ==========================================================================
   GÜVENLİK & İÇERİK KORUMA (ANTI-COPY, ANTI-DRAG, METİN KORUMASI)
   ========================================================================== */
body:not(.admin-body) {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
  -webkit-touch-callout: none !important;
}

input, textarea, select, [contenteditable="true"] {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}

img {
  -webkit-user-drag: none !important;
  -khtml-user-drag: none !important;
  -moz-user-drag: none !important;
  -o-user-drag: none !important;
  user-drag: none !important;
}

/* Lüks Güvenlik Uyarısı Bildirimi */
.security-alert-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: rgba(22, 14, 8, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #ffffff;
  border: 1px solid rgba(229, 62, 62, 0.45);
  padding: 13px 22px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45), 0 0 18px rgba(229, 62, 62, 0.15);
  z-index: 999999;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.security-alert-toast.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.security-alert-icon {
  color: #ff5252;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* ==========================================================================
   CUSTOMER SATISFACTION & DELIVERIES SECTION (Müşteri Memnuniyeti - Açık & Ferah Lüks Mimari)
   ========================================================================== */
.customer-satisfaction-section {
  position: relative;
  background: var(--bg-surface-warm);
  padding: 95px 0;
  border-top: 1px solid rgba(117, 75, 36, 0.12);
  border-bottom: 1px solid rgba(117, 75, 36, 0.12);
}

.customer-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: #ffffff;
  border: 1px solid rgba(117, 75, 36, 0.18);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  margin-bottom: 48px;
  box-shadow: 0 8px 30px rgba(17, 20, 26, 0.04);
}

.customer-stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.customer-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(117, 75, 36, 0.08);
  border: 1px solid rgba(117, 75, 36, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.customer-stat-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold-primary);
}

.customer-stat-val {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-pure);
  line-height: 1.2;
}

.customer-stat-lbl {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

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

.customer-card {
  background: #ffffff;
  border: 1px solid rgba(117, 75, 36, 0.16);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(17, 20, 26, 0.04);
  transition: all var(--transition-normal);
  position: relative;
}

.customer-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: 0 14px 35px rgba(117, 75, 36, 0.15);
}

.customer-media {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  background: #ffffff;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.customer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.customer-card:hover .customer-media img {
  transform: scale(1.05);
}

/* Minimalist Açık Tema Yer Tutucu (Görsel Yüklenene Kadar) */
.customer-placeholder-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: var(--gold-primary);
  border: 1.5px dashed rgba(117, 75, 36, 0.28);
  transition: all 0.3s ease;
}

.customer-placeholder-box svg {
  width: 42px;
  height: 42px;
  stroke: var(--gold-primary);
  opacity: 0.65;
}

.customer-delivery-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(117, 75, 36, 0.92);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  z-index: 2;
  letter-spacing: 0.3px;
}

.customer-zoom-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--gold-primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.25s ease;
  z-index: 2;
  border: 1px solid rgba(117, 75, 36, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.customer-card:hover .customer-zoom-hint {
  opacity: 1;
  transform: scale(1);
}

/* ==========================================================================
   CUSTOMER REVIEWS SLIDER (Açık & Ferah Lüks Tema)
   ========================================================================== */
.reviews-slider-wrapper {
  margin-top: 65px;
  padding-top: 55px;
  border-top: 1px solid rgba(117, 75, 36, 0.14);
}

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 20px;
}

.reviews-badge {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.reviews-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--text-pure);
  letter-spacing: 0.4px;
}

.reviews-title span {
  color: var(--gold-primary);
}

.reviews-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.6;
  margin-top: 6px;
}

.reviews-nav-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.reviews-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid rgba(117, 75, 36, 0.25);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.reviews-nav-btn:hover {
  background: var(--gold-primary);
  color: #ffffff;
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(117, 75, 36, 0.25);
}

.reviews-counter {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-primary);
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(117, 75, 36, 0.08);
  border: 1px solid rgba(117, 75, 36, 0.2);
  min-width: 60px;
  text-align: center;
}

.reviews-carousel-outer {
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-md);
}

.reviews-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.reviews-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  box-sizing: border-box;
}

.review-card {
  background: #ffffff;
  border: 1px solid rgba(117, 75, 36, 0.16);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s ease;
  box-shadow: 0 8px 24px rgba(17, 20, 26, 0.04);
  position: relative;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  box-shadow: 0 16px 36px rgba(117, 75, 36, 0.12);
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.review-author-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(117, 75, 36, 0.1);
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid rgba(117, 75, 36, 0.3);
}

.review-author-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-pure);
  line-height: 1.2;
}

.review-author-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 3px;
}

.review-author-meta .verify-badge {
  color: #1e8c4e;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}

.review-stars-wrap {
  display: flex;
  gap: 3px;
}

.review-stars-wrap svg {
  width: 15px;
  height: 15px;
  fill: #d97706;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-primary);
  line-height: 1.65;
  margin-bottom: 20px;
  position: relative;
  font-style: normal;
}

.review-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.78rem;
}

.review-tag {
  background: rgba(117, 75, 36, 0.08);
  color: var(--gold-primary);
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid rgba(117, 75, 36, 0.2);
}

.review-date {
  color: var(--text-muted);
}

/* Dots */
.reviews-dots-wrap {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(117, 75, 36, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.review-dot.active {
  background: var(--gold-primary);
  width: 28px;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
  .customer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .customer-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 900px) {
  .reviews-slide {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .reviews-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .customer-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
  .customer-stats-bar {
    grid-template-columns: 1fr;
    padding: 18px 20px;
    gap: 16px;
  }
  .customer-satisfaction-section {
    padding: 60px 0;
  }
}


