/* ============================================================
   RG PREMIUM PRODUCT — MASTER STYLESHEET
   Design System: Noir Editorial × Sahara Dusk
   Fonts: Cormorant Garamond (display) + Outfit (body)
   ============================================================ */

/* ── CSS VARIABLES ── */
:root {
  /* Gold Palette */
  --gold-100: #FFF8E7;
  --gold-200: #F5E6B8;
  --gold-300: #E8C97A;
  --gold-400: #D4A843;
  --gold-500: #C9A84C;
  --gold-600: #B8922A;
  --gold-700: #8B6914;

  /* Dark Palette */
  --dark-50:  #F8F6F2;
  --dark-100: #E8E4DF;
  --dark-200: #C8B8A0;
  --dark-300: #8A7A6A;
  --dark-400: #4A3A2A;
  --dark-500: #2A1F14;
  --dark-600: #1A1208;
  --dark-700: #0F0A04;
  --dark-800: #0A0704;
  --dark-900: #050302;

  /* Semantic Colors */
  --bg-primary:    #0A0A0A;
  --bg-secondary:  #111111;
  --bg-tertiary:   #1A1A1A;
  --bg-card:       #141414;
  --bg-elevated:   #1E1E1E;
  --bg-overlay:    rgba(0,0,0,0.85);

  --text-primary:   #F0EDE8;
  --text-secondary: #B8A898;
  --text-muted:     #6A5A4A;
  --text-accent:    #C9A84C;

  --border-subtle:  rgba(201,168,76,0.12);
  --border-medium:  rgba(201,168,76,0.25);
  --border-strong:  rgba(201,168,76,0.5);

  --success: #22C55E;
  --warning: #F59E0B;
  --error:   #EF4444;
  --info:    #3B82F6;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Radius */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-2xl:  24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.4);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.6);
  --shadow-xl:  0 16px 64px rgba(0,0,0,0.7);
  --shadow-gold: 0 0 30px rgba(201,168,76,0.2);
  --shadow-gold-strong: 0 0 60px rgba(201,168,76,0.35);

  /* Transitions */
  --transition-fast:   150ms cubic-bezier(0.4,0,0.2,1);
  --transition-base:   250ms cubic-bezier(0.4,0,0.2,1);
  --transition-slow:   400ms cubic-bezier(0.4,0,0.2,1);
  --transition-spring: 500ms cubic-bezier(0.34,1.56,0.64,1);

  /* Layout */
  --container-max: 1320px;
  --header-height: 72px;
  --announcement-height: 40px;
}

/* Light Mode */
[data-theme="light"] {
  --bg-primary:    #FAFAF8;
  --bg-secondary:  #F5F3EF;
  --bg-tertiary:   #EDEAE4;
  --bg-card:       #FFFFFF;
  --bg-elevated:   #F8F6F2;
  --bg-overlay:    rgba(255,255,255,0.95);

  --text-primary:   #1A1208;
  --text-secondary: #4A3A2A;
  --text-muted:     #8A7A6A;

  --border-subtle:  rgba(201,168,76,0.15);
  --border-medium:  rgba(201,168,76,0.3);
  --border-strong:  rgba(201,168,76,0.6);

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.12);
  --shadow-xl:  0 16px 64px rgba(0,0,0,0.15);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color var(--transition-slow), color var(--transition-slow);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--gold-600); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-500); }

/* Selection */
::selection { background: rgba(201,168,76,0.3); color: var(--text-primary); }

/* ── CONTAINER ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
@media (max-width: 768px) { .container { padding: 0 var(--space-md); } }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; }

em { font-style: italic; color: var(--gold-500); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes goldGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(201,168,76,0.2); }
  50%       { box-shadow: 0 0 40px rgba(201,168,76,0.5); }
}
@keyframes borderRotate {
  to { --angle: 360deg; }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-up { animation: fadeUp 0.7s ease forwards; opacity: 0; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: linear-gradient(90deg, var(--dark-600), var(--dark-700), var(--dark-600));
  border-bottom: 1px solid var(--border-subtle);
  height: var(--announcement-height);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 1001;
}
.announcement-track {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}
.announcement-track span {
  display: inline-block;
  animation: marquee 30s linear infinite;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold-300);
  letter-spacing: 0.03em;
  padding-right: 2rem;
}
.announcement-close {
  padding: 0 var(--space-md);
  color: var(--text-muted);
  font-size: 0.75rem;
  transition: color var(--transition-fast);
  flex-shrink: 0;
}
.announcement-close:hover { color: var(--text-primary); }

/* ── HEADER ── */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-base);
}
[data-theme="light"] .header {
  background: rgba(250,250,248,0.92);
}
.header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
  transition: opacity var(--transition-fast);
}
.logo:hover { opacity: 0.85; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-500);
  letter-spacing: 0.05em;
}
.logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  flex: 1;
  justify-content: center;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: var(--space-sm) var(--space-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold-400);
  background: rgba(201,168,76,0.08);
}
.nav-arrow { font-size: 0.65rem; transition: transform var(--transition-fast); }
.nav-item.has-mega:hover .nav-arrow { transform: rotate(180deg); }

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 680px;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  pointer-events: none;
}
.nav-item.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}
.mega-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-500);
  margin-bottom: var(--space-md);
}
.mega-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 4px 0;
  transition: color var(--transition-fast);
}
.mega-col a:hover { color: var(--gold-400); padding-left: 6px; }
.mega-promo-card {
  background: linear-gradient(135deg, var(--dark-600), var(--dark-700));
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  height: 100%;
}
.promo-badge {
  display: inline-block;
  background: var(--gold-500);
  color: var(--dark-800);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}
.mega-promo-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.mega-promo-card p { font-size: 0.78rem; color: var(--text-muted); margin-bottom: var(--space-md); }
.promo-cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-400);
  transition: color var(--transition-fast);
}
.promo-cta:hover { color: var(--gold-300); }

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  flex-shrink: 0;
}
.nav-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}
.nav-btn:hover {
  color: var(--gold-400);
  background: rgba(201,168,76,0.08);
}
.badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  background: var(--gold-500);
  color: var(--dark-800);
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
}

/* Theme Toggle */
.theme-toggle .moon-icon { display: none; }
[data-theme="light"] .theme-toggle .sun-icon { display: none; }
[data-theme="light"] .theme-toggle .moon-icon { display: block; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all var(--transition-base);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── SEARCH OVERLAY ── */
.search-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-overlay);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}
.search-overlay.active {
  opacity: 1;
  visibility: visible;
}
.search-container {
  width: 100%;
  max-width: 700px;
  padding: 0 var(--space-xl);
}
.search-input-wrap {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-gold);
}
.search-input-wrap svg { color: var(--text-muted); flex-shrink: 0; }
#searchInput {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 1.1rem;
  color: var(--text-primary);
}
#searchInput::placeholder { color: var(--text-muted); }
.voice-search-btn {
  color: var(--text-muted);
  transition: color var(--transition-fast);
  padding: 4px;
}
.voice-search-btn:hover { color: var(--gold-400); }
.voice-search-btn.listening { color: var(--error); animation: pulse 1s infinite; }
.search-close {
  color: var(--text-muted);
  font-size: 1rem;
  padding: 4px 8px;
  transition: color var(--transition-fast);
}
.search-close:hover { color: var(--text-primary); }
.search-suggestions {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-sm);
}
.suggestion-group h5 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}
.suggestion-tags { display: flex; flex-wrap: wrap; gap: var(--space-sm); }
.suggestion-tags span {
  padding: 6px 14px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.suggestion-tags span:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--border-medium);
  color: var(--gold-400);
}

/* ── CART SIDEBAR ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}
.cart-overlay.active { opacity: 1; visibility: visible; }
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100vw;
  height: 100vh;
  background: var(--bg-card);
  border-left: 1px solid var(--border-subtle);
  z-index: 1600;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  box-shadow: -8px 0 40px rgba(0,0,0,0.5);
}
.cart-sidebar.active { transform: translateX(0); }
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--border-subtle);
}
.cart-header h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; }
.cart-close {
  color: var(--text-muted);
  font-size: 1.2rem;
  transition: color var(--transition-fast);
}
.cart-close:hover { color: var(--text-primary); }
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-lg);
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: var(--space-md);
  color: var(--text-muted);
  text-align: center;
}
.cart-empty svg { opacity: 0.3; }
.cart-empty p { font-size: 0.9rem; }
.cart-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border-subtle);
}
.cart-item-img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 0.85rem; font-weight: 500; margin-bottom: 4px; }
.cart-item-variant { font-size: 0.75rem; color: var(--text-muted); margin-bottom: var(--space-sm); }
.cart-item-price { font-size: 0.9rem; font-weight: 600; color: var(--gold-400); }
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}
.qty-btn {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}
.qty-btn:hover { border-color: var(--gold-500); color: var(--gold-400); }
.qty-num { font-size: 0.85rem; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item-remove {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-left: auto;
  transition: color var(--transition-fast);
}
.cart-item-remove:hover { color: var(--error); }
.cart-footer {
  padding: var(--space-lg) var(--space-xl);
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
}
.cart-subtotal, .cart-shipping, .cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: var(--space-sm);
}
.cart-total {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-400);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border-subtle);
  margin-top: var(--space-sm);
}
.free-shipping { color: var(--success); font-weight: 600; }
.btn-checkout {
  display: block;
  width: 100%;
  padding: var(--space-md);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--dark-800);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: var(--space-md);
  transition: all var(--transition-base);
  letter-spacing: 0.03em;
}
.btn-checkout:hover {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.btn-continue {
  display: block;
  width: 100%;
  padding: var(--space-sm);
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: var(--space-sm);
  transition: color var(--transition-fast);
}
.btn-continue:hover { color: var(--text-primary); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 900px;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: var(--space-lg) var(--space-xl);
  z-index: 3000;
  box-shadow: var(--shadow-xl);
  animation: fadeUp 0.5s ease forwards;
}
.cookie-content {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}
.cookie-icon { font-size: 2rem; flex-shrink: 0; }
.cookie-text { flex: 1; min-width: 200px; }
.cookie-text strong { display: block; margin-bottom: 4px; font-size: 0.9rem; }
.cookie-text p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }
.cookie-actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; }
.btn-cookie-accept {
  padding: 8px 20px;
  background: var(--gold-500);
  color: var(--dark-800);
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}
.btn-cookie-accept:hover { background: var(--gold-400); }
.btn-cookie-reject, .btn-cookie-settings {
  padding: 8px 16px;
  border: 1px solid var(--border-medium);
  color: var(--text-secondary);
  font-size: 0.8rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}
.btn-cookie-reject:hover, .btn-cookie-settings:hover {
  border-color: var(--border-strong);
  color: var(--text-primary);
}

/* ── HERO SECTION ── */
.hero-section {
  position: relative;
  min-height: calc(100vh - var(--header-height) - var(--announcement-height));
  overflow: hidden;
}
.hero-slider { position: relative; width: 100%; height: 100%; }
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--header-height) - var(--announcement-height));
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: all; position: relative; }
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.04) 0%, transparent 40%);
  pointer-events: none;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-slide > * { position: relative; z-index: 1; }
.hero-slide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  padding: var(--space-4xl) var(--space-4xl);
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}
.hero-content { display: flex; flex-direction: column; gap: var(--space-lg); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 6px 16px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
}
.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.05;
}
.hero-title-line {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.hero-title-accent {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500), var(--gold-300));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
.hero-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
}
.hero-actions { display: flex; gap: var(--space-md); flex-wrap: wrap; }
.btn-hero-primary {
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--dark-800);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.03em;
  transition: all var(--transition-spring);
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
}
.btn-hero-secondary {
  padding: 14px 32px;
  border: 1px solid var(--border-medium);
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}
.btn-hero-secondary:hover {
  border-color: var(--gold-500);
  color: var(--gold-400);
  background: rgba(201,168,76,0.05);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  padding-top: var(--space-md);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold-400);
  line-height: 1;
}
.stat-label { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: var(--border-subtle); }

/* Hero Visual */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-gold-strong);
  animation: float 6s ease-in-out infinite;
}
.hero-image-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.hero-image-badge {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: var(--space-sm) var(--space-md);
}
.hero-image-badge .badge-icon { font-size: 1.2rem; }
.hero-image-badge strong { display: block; font-size: 0.85rem; color: var(--gold-400); }
.hero-image-badge small { font-size: 0.7rem; color: var(--text-muted); }
.hero-floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: var(--space-sm) var(--space-md);
  box-shadow: var(--shadow-lg);
  font-size: 0.8rem;
  white-space: nowrap;
}
.hero-floating-card span { font-size: 1.2rem; }
.hero-floating-card strong { display: block; font-size: 0.82rem; font-weight: 600; }
.hero-floating-card small { font-size: 0.7rem; color: var(--text-muted); }
.card-1 { top: 20%; right: -20px; animation: float 5s ease-in-out infinite 1s; }
.card-2 { bottom: 25%; left: -20px; animation: float 5s ease-in-out infinite 2s; }

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  z-index: 10;
}
.slider-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(10px);
  transition: all var(--transition-fast);
}
.slider-btn:hover {
  border-color: var(--gold-500);
  color: var(--gold-400);
  background: rgba(201,168,76,0.1);
}
.slider-dots { display: flex; gap: var(--space-sm); }
.dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--border-medium);
  transition: all var(--transition-base);
}
.dot.active {
  width: 24px;
  background: var(--gold-500);
}

/* ── TRUST SECTION ── */
.trust-section {
  padding: var(--space-xl) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-md);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  transition: background var(--transition-fast);
}
.trust-item:hover { background: rgba(201,168,76,0.05); }
.trust-icon { font-size: 1.5rem; flex-shrink: 0; }
.trust-text { display: flex; flex-direction: column; }
.trust-text strong { font-size: 0.82rem; font-weight: 600; color: var(--text-primary); }
.trust-text span { font-size: 0.72rem; color: var(--text-muted); }

/* ── SECTION HEADERS ── */
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-500);
  margin-bottom: var(--space-sm);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  margin-bottom: var(--space-sm);
}
.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* ── CATEGORIES ── */
.categories-section { padding: var(--space-4xl) 0; }
.categories-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: var(--space-md);
}
.category-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
}
.category-card.large { grid-row: span 2; }
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.category-card:hover img { transform: scale(1.08); }
.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-lg);
  transition: background var(--transition-base);
}
.category-card:hover .category-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(201,168,76,0.1) 100%);
}
.category-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: white;
  margin-bottom: 4px;
}
.category-overlay span {
  font-size: 0.75rem;
  color: var(--gold-300);
  font-weight: 500;
}

/* ── FLASH SALE ── */
.flash-sale-section {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.flash-header {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}
.flash-title-group {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex: 1;
}
.flash-icon { font-size: 1.8rem; }
.flash-title-group h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
}
.flash-badge {
  padding: 4px 12px;
  background: var(--error);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: var(--radius-full);
  animation: pulse 2s infinite;
}
.flash-timer {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.timer-blocks { display: flex; align-items: center; gap: 4px; }
.timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 6px 10px;
  min-width: 48px;
}
.timer-block span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold-400);
  line-height: 1;
}
.timer-block small {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 2px;
}
.timer-sep { font-size: 1.2rem; color: var(--gold-500); font-weight: 700; }
.view-all-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-400);
  transition: color var(--transition-fast);
  white-space: nowrap;
}
.view-all-link:hover { color: var(--gold-300); }

/* Products Scroll */
.products-scroll {
  display: flex;
  gap: var(--space-lg);
  overflow-x: auto;
  padding-bottom: var(--space-md);
  scrollbar-width: thin;
  scrollbar-color: var(--gold-600) transparent;
}
.products-scroll::-webkit-scrollbar { height: 4px; }
.products-scroll .product-card { flex-shrink: 0; width: 240px; }

/* ── PRODUCT TABS ── */
.product-tabs {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}
.tab-btn {
  padding: 8px 24px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}
.tab-btn:hover { border-color: var(--border-medium); color: var(--text-secondary); }
.tab-btn.active {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--dark-800);
  font-weight: 700;
}

/* ── PRODUCTS GRID ── */
.products-section { padding: var(--space-4xl) 0; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

/* ── PRODUCT CARD ── */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  position: relative;
  group: true;
}
.product-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.product-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-secondary);
}
.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-image-wrap img { transform: scale(1.06); }
.product-badges {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-badge {
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.badge-new { background: var(--success); color: white; }
.badge-sale { background: var(--error); color: white; }
.badge-hot { background: var(--warning); color: var(--dark-800); }
.badge-sold { background: var(--text-muted); color: white; }
.product-actions {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-base);
}
.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}
.product-action-btn {
  width: 34px;
  height: 34px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  backdrop-filter: blur(10px);
}
.product-action-btn:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--dark-800);
}
.product-action-btn.wishlisted { color: var(--error); border-color: var(--error); }
.product-quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-sm) var(--space-md);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--dark-800);
  font-weight: 700;
  font-size: 0.8rem;
  text-align: center;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}
.product-card:hover .product-quick-add { transform: translateY(0); }
.product-info { padding: var(--space-md); }
.product-category {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-500);
  margin-bottom: 4px;
}
.product-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: var(--space-sm);
}
.stars { color: var(--gold-400); font-size: 0.75rem; }
.rating-count { font-size: 0.72rem; color: var(--text-muted); }
.product-pricing {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.price-current {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-400);
}
.price-original {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.price-discount {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--success);
  background: rgba(34,197,94,0.1);
  padding: 2px 6px;
  border-radius: var(--radius-full);
}
.product-stock {
  margin-top: var(--space-sm);
  font-size: 0.72rem;
}
.in-stock { color: var(--success); }
.low-stock { color: var(--warning); }
.out-stock { color: var(--error); }

/* Skeleton Loading */
.skeleton {
  background: linear-gradient(90deg, var(--bg-tertiary) 25%, var(--bg-elevated) 50%, var(--bg-tertiary) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
}

/* ── PROMO SECTION ── */
.promo-section { padding: var(--space-3xl) 0; }
.promo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-lg);
}
.promo-card {
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  border: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}
.promo-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.promo-card.promo-large { min-height: 200px; }
.promo-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-400);
  margin-bottom: var(--space-sm);
}
.promo-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
}
.promo-content p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: var(--space-lg); }
.btn-promo {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-400);
  transition: all var(--transition-fast);
}
.btn-promo:hover {
  background: var(--gold-500);
  color: var(--dark-800);
  border-color: var(--gold-500);
}
.promo-image { width: 120px; flex-shrink: 0; }
.promo-image img { width: 100%; border-radius: var(--radius-lg); }

/* ── AD SECTION ── */
.ad-section { padding: var(--space-xl) 0; }
.ad-banner { position: relative; }
.ad-placeholder {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}
.ad-label {
  position: absolute;
  top: 4px;
  right: 8px;
  font-size: 0.6rem;
  color: var(--text-muted);
  z-index: 1;
  background: var(--bg-overlay);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}

/* ── MEMBERSHIP SECTION ── */
.membership-section {
  padding: var(--space-4xl) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  align-items: start;
}
.membership-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  position: relative;
  transition: all var(--transition-base);
}
.membership-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.membership-card.featured {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-gold);
  transform: scale(1.03);
}
.membership-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.membership-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-500);
  color: var(--dark-800);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.membership-tier {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}
.membership-tier.gold { color: var(--gold-400); }
.membership-tier.platinum { color: #E5E4E2; }
.membership-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xl);
}
.membership-price span { font-size: 1rem; color: var(--text-muted); }
.membership-features { display: flex; flex-direction: column; gap: var(--space-sm); margin-bottom: var(--space-xl); }
.membership-features li { font-size: 0.85rem; color: var(--text-secondary); }
.btn-membership {
  display: block;
  width: 100%;
  padding: var(--space-md);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all var(--transition-base);
}
.btn-membership:hover {
  border-color: var(--gold-500);
  color: var(--gold-400);
  background: rgba(201,168,76,0.05);
}
.btn-membership.gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  border-color: transparent;
  color: var(--dark-800);
}
.btn-membership.gold:hover {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.btn-membership.platinum {
  background: linear-gradient(135deg, #8A8A8A, #C0C0C0);
  border-color: transparent;
  color: var(--dark-800);
}

/* ── TESTIMONIALS ── */
.testimonials-section { padding: var(--space-4xl) 0; }
.testimonials-slider { position: relative; min-height: 200px; }
.testimonial-card {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  max-width: 700px;
  margin: 0 auto;
  animation: scaleIn 0.4s ease;
}
.testimonial-card.active { display: block; }
.testimonial-stars { color: var(--gold-400); font-size: 1.1rem; margin-bottom: var(--space-md); }
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--border-medium);
}
.testimonial-author strong { display: block; font-size: 0.9rem; font-weight: 600; }
.testimonial-author span { font-size: 0.75rem; color: var(--text-muted); }
.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
.testimonial-nav button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 1rem;
  transition: all var(--transition-fast);
}
.testimonial-nav button:hover {
  border-color: var(--gold-500);
  color: var(--gold-400);
}
.testimonial-dots { display: flex; gap: var(--space-sm); }
.rating-summary {
  display: flex;
  align-items: center;
  gap: var(--space-3xl);
  justify-content: center;
  margin-top: var(--space-3xl);
  padding: var(--space-2xl);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.overall-rating { text-align: center; }
.rating-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold-400);
  display: block;
  line-height: 1;
}
.rating-stars { color: var(--gold-400); font-size: 1rem; margin: 4px 0; }
.rating-count { font-size: 0.72rem; color: var(--text-muted); }
.rating-bars { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.rating-bar {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.75rem;
  color: var(--text-muted);
}
.rating-bar .bar {
  flex: 1;
  height: 6px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.rating-bar .bar div {
  height: 100%;
  background: var(--gold-500);
  border-radius: var(--radius-full);
}

/* ── BLOG SECTION ── */
.blog-section { padding: var(--space-4xl) 0; background: var(--bg-secondary); }
.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-lg);
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
}
.blog-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.blog-image { position: relative; overflow: hidden; }
.blog-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.featured-blog .blog-image img { height: 280px; }
.blog-card:hover .blog-image img { transform: scale(1.05); }
.blog-category {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: 4px 12px;
  background: var(--gold-500);
  color: var(--dark-800);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
}
.blog-content { padding: var(--space-lg); }
.blog-meta { font-size: 0.72rem; color: var(--text-muted); margin-bottom: var(--space-sm); }
.blog-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}
.blog-content p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: var(--space-md); }
.blog-read-more {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-400);
  transition: color var(--transition-fast);
}
.blog-read-more:hover { color: var(--gold-300); }

/* ── NEWSLETTER ── */
.newsletter-section { padding: var(--space-4xl) 0; }
.newsletter-card {
  background: linear-gradient(135deg, var(--dark-600), var(--dark-700));
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.newsletter-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter-icon { font-size: 2.5rem; margin-bottom: var(--space-md); }
.newsletter-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: var(--space-md);
}
.newsletter-content p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: var(--space-xl); line-height: 1.7; }
.newsletter-input-group {
  display: flex;
  gap: var(--space-sm);
  max-width: 500px;
}
.newsletter-input-group input {
  flex: 1;
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast);
}
.newsletter-input-group input:focus { border-color: var(--gold-500); }
.newsletter-input-group input::placeholder { color: var(--text-muted); }
.btn-newsletter {
  padding: var(--space-md) var(--space-xl);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--dark-800);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: all var(--transition-base);
}
.btn-newsletter:hover {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.newsletter-disclaimer { font-size: 0.72rem; color: var(--text-muted); margin-top: var(--space-sm); }
.newsletter-perks {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}
.newsletter-perks span { font-size: 0.78rem; color: var(--gold-400); font-weight: 500; }
.newsletter-visual { width: 200px; flex-shrink: 0; }
.newsletter-visual img { width: 100%; border-radius: var(--radius-xl); opacity: 0.7; }

/* ── BRANDS ── */
.brands-section {
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
  overflow: hidden;
}
.brands-label {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
}
.brands-track { overflow: hidden; }
.brands-scroll {
  display: flex;
  gap: var(--space-3xl);
  animation: marquee 20s linear infinite;
  width: max-content;
}
.brands-scroll span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  white-space: nowrap;
  transition: color var(--transition-fast);
}
.brands-scroll span:hover { color: var(--gold-400); }

/* ── SECTION CTA ── */
.section-cta { text-align: center; margin-top: var(--space-2xl); }
.btn-outline-gold {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-400);
  transition: all var(--transition-base);
}
.btn-outline-gold:hover {
  background: rgba(201,168,76,0.08);
  border-color: var(--gold-500);
  transform: translateY(-1px);
}

/* ── FOOTER ── */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
}
.footer-top { padding: var(--space-4xl) 0 var(--space-3xl); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-3xl);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-400);
  margin-bottom: var(--space-lg);
}
.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}
.footer-contact { display: flex; flex-direction: column; gap: var(--space-sm); margin-bottom: var(--space-lg); }
.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}
.contact-item:hover { color: var(--gold-400); }
.social-links { display: flex; gap: var(--space-sm); }
.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}
.social-link:hover {
  border-color: var(--gold-500);
  color: var(--gold-400);
  background: rgba(201,168,76,0.08);
}
.social-link.whatsapp:hover { border-color: #25D366; color: #25D366; }
.footer-heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-500);
  margin-bottom: var(--space-lg);
}
.footer-links { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all var(--transition-fast);
  padding: 2px 0;
}
.footer-links a:hover { color: var(--gold-400); padding-left: 6px; }
.payment-methods { display: flex; flex-wrap: wrap; gap: var(--space-xs); margin-bottom: var(--space-md); }
.payment-badge {
  padding: 4px 10px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.security-badges { display: flex; flex-direction: column; gap: var(--space-xs); }
.security-badge {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-lg) 0;
}
.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}
.footer-bottom-content p { font-size: 0.78rem; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: var(--space-lg); }
.footer-bottom-links a {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}
.footer-bottom-links a:hover { color: var(--gold-400); }

/* ── FLOATING BUTTONS ── */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: var(--space-xl);
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 900;
  transition: all var(--transition-spring);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}
.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-md);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
.scroll-top {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--dark-800);
  transform: translateY(-2px);
}

/* ── AI CHATBOT ── */
.chatbot-widget {
  position: fixed;
  bottom: 160px;
  right: var(--space-xl);
  z-index: 1000;
}
.chatbot-toggle {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold-strong);
  transition: all var(--transition-spring);
  position: relative;
}
.chatbot-toggle:hover { transform: scale(1.1); }
.chatbot-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--error);
  color: white;
  font-size: 0.55rem;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: var(--radius-full);
}
.chatbot-panel {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 340px;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  display: none;
  flex-direction: column;
  max-height: 480px;
}
.chatbot-panel.active { display: flex; animation: scaleIn 0.3s ease; }
.chatbot-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: linear-gradient(135deg, var(--dark-600), var(--dark-700));
  border-bottom: 1px solid var(--border-subtle);
}
.chatbot-avatar { font-size: 1.5rem; }
.chatbot-header strong { display: block; font-size: 0.85rem; }
.chatbot-status { font-size: 0.7rem; color: var(--success); }
.chatbot-close {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 1rem;
  transition: color var(--transition-fast);
}
.chatbot-close:hover { color: var(--text-primary); }
.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.chat-msg { display: flex; }
.chat-msg.bot { justify-content: flex-start; }
.chat-msg.user { justify-content: flex-end; }
.chat-bubble {
  max-width: 80%;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-lg);
  font-size: 0.82rem;
  line-height: 1.5;
}
.chat-msg.bot .chat-bubble {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  border-bottom-left-radius: 4px;
}
.chat-msg.user .chat-bubble {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--dark-800);
  font-weight: 500;
  border-bottom-right-radius: 4px;
}
.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  padding: var(--space-xs) 0;
}
.chat-quick-replies button {
  padding: 5px 10px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}
.chat-quick-replies button:hover {
  border-color: var(--gold-500);
  color: var(--gold-400);
}
.chatbot-input {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-md);
  border-top: 1px solid var(--border-subtle);
}
#chatInput {
  flex: 1;
  padding: 8px 14px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-size: 0.82rem;
  outline: none;
  transition: border-color var(--transition-fast);
}
#chatInput:focus { border-color: var(--gold-500); }
.chat-send {
  width: 36px;
  height: 36px;
  background: var(--gold-500);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-800);
  flex-shrink: 0;
  transition: all var(--transition-fast);
}
.chat-send:hover { background: var(--gold-400); transform: scale(1.05); }

/* ── TOAST NOTIFICATIONS ── */
.toast-container {
  position: fixed;
  top: 90px;
  right: var(--space-xl);
  z-index: 5000;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.toast {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 280px;
  max-width: 380px;
  animation: slideInRight 0.3s ease;
}
.toast.success { border-left: 3px solid var(--success); }
.toast.error   { border-left: 3px solid var(--error); }
.toast.warning { border-left: 3px solid var(--warning); }
.toast.info    { border-left: 3px solid var(--info); }
.toast-icon { font-size: 1.2rem; flex-shrink: 0; }
.toast-text { flex: 1; }
.toast-title { font-size: 0.85rem; font-weight: 600; }
.toast-msg { font-size: 0.78rem; color: var(--text-muted); }
.toast-close { color: var(--text-muted); font-size: 0.9rem; transition: color var(--transition-fast); }
.toast-close:hover { color: var(--text-primary); }
.toast.removing { animation: slideInRight 0.3s ease reverse; }

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  max-width: 500px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  animation: scaleIn 0.3s ease;
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
}
.modal-header h3 { font-size: 1.2rem; }
.modal-close {
  color: var(--text-muted);
  font-size: 1.2rem;
  transition: color var(--transition-fast);
}
.modal-close:hover { color: var(--text-primary); }

/* ── BUTTONS (Global) ── */
.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--dark-800);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  text-align: center;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid var(--border-medium);
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  text-align: center;
}
.btn-secondary:hover {
  border-color: var(--gold-500);
  color: var(--gold-400);
}

/* ── FORM ELEMENTS ── */
.form-group { margin-bottom: var(--space-lg); }
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.03em;
}
.form-input {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast);
}
.form-input:focus { border-color: var(--gold-500); }
.form-input::placeholder { color: var(--text-muted); }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--space-xl); }
}

@media (max-width: 1024px) {
  .hero-slide { grid-template-columns: 1fr; padding: var(--space-3xl) var(--space-xl); }
  .hero-visual { display: none; }
  .hero-title-line { font-size: clamp(2.5rem, 6vw, 4rem); }
  .hero-title-accent { font-size: clamp(3rem, 7vw, 5rem); }
  .categories-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .category-card.large { grid-row: span 1; }
  .promo-grid { grid-template-columns: 1fr 1fr; }
  .promo-card.promo-large { grid-column: span 2; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .featured-blog { grid-column: span 2; }
  .membership-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .membership-card.featured { transform: none; }
  .newsletter-card { grid-template-columns: 1fr; }
  .newsletter-visual { display: none; }
}

@media (max-width: 768px) {
  :root { --header-height: 60px; }
  .nav-menu { display: none; position: fixed; top: var(--header-height); left: 0; right: 0; background: var(--bg-card); border-bottom: 1px solid var(--border-subtle); flex-direction: column; padding: var(--space-lg); gap: var(--space-xs); z-index: 999; }
  .nav-menu.active { display: flex; animation: fadeIn 0.3s ease; }
  .nav-link { padding: var(--space-md); border-radius: var(--radius-md); }
  .mega-menu { position: static; transform: none; width: 100%; box-shadow: none; border: none; padding: var(--space-md) 0 0 var(--space-lg); opacity: 1; visibility: visible; display: none; }
  .nav-item.has-mega.open .mega-menu { display: block; }
  .mega-grid { grid-template-columns: 1fr 1fr; }
  .mega-col.mega-promo { display: none; }
  .hamburger { display: flex; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
  .brand-col { grid-column: span 2; }
  .promo-grid { grid-template-columns: 1fr; }
  .promo-card.promo-large { grid-column: span 1; }
  .blog-grid { grid-template-columns: 1fr; }
  .featured-blog { grid-column: span 1; }
  .hero-stats { gap: var(--space-lg); }
  .stat-num { font-size: 1.4rem; }
  .cart-sidebar { width: 100%; }
  .chatbot-panel { width: 300px; }
  .cookie-banner { bottom: var(--space-md); }
  .cookie-content { flex-direction: column; }
  .rating-summary { flex-direction: column; gap: var(--space-xl); }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
  .hero-actions { flex-direction: column; }
  .btn-hero-primary, .btn-hero-secondary { text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand-col { grid-column: span 1; }
  .newsletter-input-group { flex-direction: column; }
  .btn-newsletter { width: 100%; }
  .flash-header { flex-direction: column; align-items: flex-start; }
  .hero-stats { flex-direction: column; gap: var(--space-md); }
  .stat-divider { display: none; }
  .membership-grid { max-width: 100%; }
  .nav-container { padding: 0 var(--space-md); }
}

/* ── UTILITY CLASSES ── */
.hidden { display: none !important; }
.visible { display: block !important; }
.text-gold { color: var(--gold-400); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-auto { margin-top: auto; }
.w-full { width: 100%; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }

/* ── PRINT STYLES ── */
@media print {
  .header, .footer, .chatbot-widget, .whatsapp-float, .scroll-top, .cookie-banner { display: none; }
  body { background: white; color: black; }
}