/* ═══════════════════════════════════════════════
   FARAH 2027 — Premium Warm Luxury Palette Design System
   Modern RTL · Bento Grid · Glassmorphism
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@700;800;900&family=Cairo:wght@300;400;500;600;700;800;900&display=swap');

/* ── Variables ── */
:root {
  --navy: #072F23;
  --glass-nav: rgba(255, 255, 255, 0.85);
  --glass-nav-border: rgba(0, 0, 0, 0.05);

  /* ══ Farah Store — Design Tokens (approved) ══ */
  --primary:        #0B6E4F; /* Deep Teal — brand signature */
  --cta:            #FFB400; /* Warm Amber — CTA / Accent */
  --neutral-dark:   #111827; /* text primary */
  --neutral-mid:    #6B7280; /* secondary text */
  --background:     #F8FAFC; /* page background */
  --soft-accent-bg: #EEF6F3; /* subtle card/category bg */
  --white:          #FFFFFF;
  --danger:         #E74C3C;

  --flash-bg:       linear-gradient(135deg, #072F23 0%, #0B6E4F 60%);
  --flash-accent:   var(--cta);

  --text-dark:      var(--neutral-dark);
  --text-mid:       var(--neutral-mid);
  --text-soft:      #9AA0A6;

  --glass-bg:       rgba(255,255,255,0.85);
  --glass-border:   rgba(11,110,79,0.08);
  --glass-shadow:   0 8px 32px rgba(11,110,79,0.06);

  --r-sm:   10px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 999px;

  --shadow-xs:   0 2px 8px rgba(26,26,46,0.04);
  --shadow-sm:   0 4px 20px rgba(26,26,46,0.06);
  --shadow-md:   0 12px 40px rgba(26,26,46,0.1);
  --shadow-lg:   0 24px 80px rgba(26,26,46,0.14);
  --shadow-gold: 0 8px 40px rgba(212,168,83,0.3);
  --shadow-card: 0 4px 24px rgba(26,26,46,0.06), 0 1px 4px rgba(26,26,46,0.04);
  --shadow-card-hover: 0 20px 60px rgba(26,26,46,0.12), 0 4px 12px rgba(212,168,83,0.08);

  --ease:        cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out:    cubic-bezier(0, 0.55, 0.45, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --t-fast:      150ms;
  --t-base:      300ms;
  --t-slow:      500ms;
  --t-slower:    800ms;
  /* Fonts */
  --font: 'Cairo', system-ui, sans-serif; /* body */
  --heading-font: 'Almarai', system-ui, sans-serif; /* display / headings */
  
  /* Spacing scale */
  --space-xxs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --max-w: 1320px;
  --nav-h: 72px;
  --top-h: 38px;
  
  --orb1: transparent;
  --orb2: transparent;
  --orb3: transparent;
  --orb4: transparent;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream-2); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* Selection */
::selection { background-color: var(--gold); color: var(--navy); }

/* ── Base ── */
body {
  font-family: var(--font);
  background-color: var(--background);
  color: var(--text-dark);
  line-height: 1.6;
  direction: rtl;
  overflow-x: hidden;
  position: relative;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  z-index: 9999;
  opacity: 0.8;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; object-fit: cover; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; padding: 0; outline: none; }
ul { list-style: none; }
input, select, textarea { font-family: var(--font); outline: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--text-dark);
}

.wide-container { width: min(var(--max-w), 94%); margin-inline: auto; }

/* ── Typography & Section Labels ── */
.section-eyebrow {
  font-size: 0.85rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 0.5rem; display: block;
}
.section-heading {
  font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; color: var(--text-dark);
  line-height: 1.2; margin-bottom: 1.6rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--r-full);
  font-size: 0.95rem; font-weight: 800; font-family: var(--font);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), background var(--t-base) var(--ease);
  cursor: pointer; border: none; white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: linear-gradient(135deg, var(--cta), color-mix(in srgb, var(--cta) 70%, #fff 30%));
  color: #111827;
  box-shadow: 0 10px 36px rgba(11,110,79,0.12);
}
.btn-gold:hover { box-shadow: 0 18px 60px rgba(11,110,79,0.14); transform: translateY(-4px); }

/* Primary CTA style used in hero */
.btn-primary {
  background: var(--primary); color: #fff; padding: 14px 34px; border-radius: var(--r-full);
  box-shadow: 0 10px 30px rgba(11,110,79,0.14);
}
.btn-primary:hover { filter: brightness(1.03); transform: translateY(-3px); }

.btn-glass {
  background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff; backdrop-filter: blur(12px);
}
.btn-glass:hover { background: rgba(255,255,255,0.25); }

.btn-outline-dark {
  background: transparent; border: 2px solid var(--navy); color: var(--navy); padding: 12px 36px;
}
.btn-outline-dark:hover { background: var(--navy); color: #fff; }

.btn-ghost { background: var(--cream-2); color: var(--navy-light); border: 1.5px solid transparent; }
.btn-ghost:hover { background: var(--white); border-color: var(--gold-light); }

.w-full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════
   TOPBAR
   ═══════════════════════════════════════════════ */
.topbar {
  background: var(--navy);
  color: white;
  height: var(--top-h);
  overflow: hidden;
  position: fixed; top: 0; inset-inline: 0;
  z-index: 1001;
  display: flex; align-items: center;
}
.topbar::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(212,168,83,0.1), transparent);
  animation: shimmer 3s infinite linear;
}
.top-bar {
  display: none; /* old fallback */
}
.topbar-track {
  display: flex; align-items: center; gap: 2.5rem;
  height: 100%; white-space: nowrap;
  animation: ticker 25s linear infinite;
  color: var(--white); font-size: 0.85rem; font-weight: 600;
  padding: 0 2rem; position: relative; z-index: 1;
}
.topbar-sep { color: var(--gold); font-size: 0.7rem; }
.social-icons { display: flex; gap: 12px; position: absolute; inset-inline-end: 5%; z-index: 2; height: 100%; align-items: center; }
.social-icons a { color: var(--white); transition: color var(--t-fast); }
.social-icons a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════ */
.navbar {
  position: fixed; top: var(--top-h); width: 100%; height: var(--nav-h);
  background: var(--glass-nav);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-nav-border);
  z-index: 900; display: flex; align-items: center;
  transition: all var(--t-base) var(--ease);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  border-bottom: 2px solid rgba(212,168,83,0.4); /* Golden bottom border glow */
  top: 0; /* slide up over topbar if needed, or keep it sticky */
}
.nav-container {
  display: flex; justify-content: space-between; align-items: center;
  width: min(var(--max-w), 96%); margin-inline: auto; padding: 0;
}
.nav-right, .nav-actions { flex: 1; display: flex; align-items: center; }
.nav-right { justify-content: flex-start; } /* RTL: right side */
.nav-actions { justify-content: flex-end; gap: 15px; } /* RTL: left side */
.nav-logo {
  flex: 2; display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-decoration: none;
}
.logo-ar { font-size: 1.6rem; font-weight: 900; background: linear-gradient(to right, var(--gold), var(--gold-dark)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.logo-en { font-size: 0.6rem; font-weight: 800; color: var(--navy); letter-spacing: 0.28em; text-transform: uppercase; margin-top: -2px; }

.nav-links { display: flex; align-items: center; gap: 1.5rem; margin-inline-start: 1rem; }
.nav-links a {
  font-weight: 700; font-size: 0.95rem; color: var(--navy);
  position: relative; padding: 5px 0; transition: color var(--t-fast);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0%; height: 2px;
  background: var(--gold); transition: width var(--t-base) var(--ease);
}
.nav-links a:hover { color: var(--gold-dark); }
.nav-links a:hover::after { width: 100%; }

.nav-icon-btn {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-full); background: transparent; border: 1px solid transparent;
  transition: all var(--t-fast); position: relative; color: var(--navy);
}
.nav-icon-btn:hover { background: var(--cream-2); transform: translateY(-2px); border-color: var(--gold-light); }
.nav-cart-btn svg { stroke: var(--navy); stroke-width: 2; }

.cart-badge {
  position: absolute; top: -2px; left: -2px;
  background: var(--accent); color: var(--white);
  font-size: 0.7rem; font-weight: 900; width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px rgba(232,93,74,0.4);
  animation: pulseGlow 2s infinite;
}

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 6px; padding: 10px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--t-base) var(--ease-spring); }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: var(--accent); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: var(--accent); }
.hamburger-btn { display: none; }

/* ═══════════════════════════════════════════════
   CINEMATIC HERO
   ═══════════════════════════════════════════════ */
.cinematic-hero {
  position: relative; width: 100%; height: auto; min-height: 70vh; min-height: 70dvh; padding: 150px 0 80px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  margin-top: 0;
}
@media (max-width: 768px) {
  .cinematic-hero {
    min-height: 60vh; min-height: 60dvh;
    padding: 120px 0 60px;
  }
}
.hero-bg-video {
  position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%;
  transform: translate(-50%, -50%); object-fit: cover; z-index: -2;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,46,0.8) 0%, rgba(26,26,46,0.3) 50%, rgba(26,26,46,0.9) 100%);
  z-index: -1;
}
.hero-content {
  position: relative; z-index: 10; text-align: right; color: var(--white); padding: 0 20px;
}
.hero-brand-name {
  font-family: var(--heading-font); font-size: clamp(2.6rem, 7vw, 4.4rem); font-weight: 900;
  color: var(--white);
  letter-spacing: -1px; line-height: 1.05; margin-bottom: 0.6rem;
  text-shadow: 0 8px 30px rgba(3,39,27,0.45);
}
.hero-tagline {
  font-size: clamp(1rem, 2.6vw, 1.3rem); font-weight: 500; margin-bottom: 1.6rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5); color: rgba(255,255,255,0.92);
}
.hero-ctas { display:flex; gap: var(--space-sm); align-items:center; margin-bottom: var(--space-md); }
.hero-cta { padding: 12px 28px; font-size: 1.05rem; border-radius: var(--r-full); }

.hero-quick-links { display:flex; gap: 8px; margin-top: var(--space-sm); flex-wrap: wrap; }
.hero-quick-links .quick-link {
  display:inline-flex; align-items:center; gap:6px; padding:7px 12px;
  background: rgba(255,255,255,0.18); backdrop-filter: blur(12px);
  color: #fff; border-radius: var(--r-full); font-weight:700; font-size: 0.88rem;
  border: 1px solid rgba(255,255,255,0.25); transition: background var(--t-fast);
}
.hero-quick-links .quick-link:hover { background: rgba(255,255,255,0.3); }

/* Generic product card styles to ensure consistent look */
.product-card, .prod-card, .prod-grid-card { border-radius: var(--r-md); overflow: hidden; background: var(--white); box-shadow: var(--shadow-card); transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease); }
.product-card:hover, .prod-card:hover, .prod-grid-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.product-card img, .prod-card img, .prod-grid-card img { width: 100%; height: 260px; object-fit: cover; aspect-ratio: 1 / 1; }
.prod-card .prod-price-now, .prod-grid-card .prod-price-now, .prod-price-now { font-weight: 900; color: var(--primary); font-size: 1.05rem; }
.prod-card .prod-price-was, .prod-grid-card .prod-price-was, .prod-price-was { text-decoration: line-through; color: var(--text-mid); margin-inline-start: var(--space-sm); }

/* ═══════════════════════════════════════════════
   BENTO SECTION
   ═══════════════════════════════════════════════ */
.bento-section { padding: 5rem 0; position: relative; overflow: hidden; }
.mesh-bg { display: none; }
.bento-container {
  position: relative; z-index: 1; width: min(var(--max-w), 96%); margin-inline: auto;
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.5rem;
}
.bento-card {
  border-radius: var(--r-xl); overflow: hidden; position: relative;
  background: var(--white); box-shadow: var(--shadow-sm);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), border var(--t-fast);
  border: 1px solid var(--cream-2);
}
.bento-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--gold-light); z-index: 10;
}
.bento-brand {
  grid-column: span 5; grid-row: span 2;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 3rem; display: flex; align-items: flex-end; min-height: 500px;
}
.bento-brand-inner { position: relative; z-index: 2; }
.bento-brand-deco { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.deco-circle { position: absolute; border-radius: 50%; border: 1px solid rgba(212,168,83,0.15); }
.deco-circle.c1 { width: 300px; height: 300px; top: -80px; left: -80px; }
.deco-circle.c2 { width: 200px; height: 200px; top: 10px; left: -10px; border-color: rgba(212,168,83,0.1); }
.deco-circle.c3 { width: 120px; height: 120px; bottom: 60px; right: -30px; background: rgba(212,168,83,0.05); }

.bento-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(212,168,83,0.15); border: 1px solid rgba(212,168,83,0.3);
  color: var(--gold-light); font-size: 0.8rem; font-weight: 800;
  padding: 6px 16px; border-radius: var(--r-full); margin-bottom: 1.5rem;
}
.bento-brand-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 1rem;
}
.bento-brand-title em {
  font-style: normal; background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.bento-brand-sub { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 2rem; line-height: 1.6; }
.bento-brand-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.bento-product-hero { grid-column: span 4; grid-row: span 2; min-height: 500px; cursor: pointer; }
.bento-img-wrap { position: absolute; inset: 0; }
.bento-img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.bento-card:hover .bento-img { transform: scale(1.08); }
.bento-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,46,0.9) 0%, transparent 60%); }
.bento-product-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; z-index: 2; }
.bento-cat-tag {
  display: inline-block; background: var(--gold); color: var(--navy);
  font-size: 0.75rem; font-weight: 900; padding: 4px 12px; border-radius: var(--r-full); margin-bottom: 0.8rem;
}
.bento-product-info h2 { color: #fff; font-size: 1.3rem; font-weight: 800; margin-bottom: 0.5rem; }
.bento-price-row { display: flex; align-items: center; gap: 8px; }
.bento-price { color: var(--gold-light); font-size: 1.3rem; font-weight: 900; }
.bento-price-old { color: rgba(255,255,255,0.5); font-size: 0.9rem; text-decoration: line-through; }

.bento-quick-add {
  position: absolute; top: 15px; left: 15px; z-index: 3;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--glass-bg); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-base) var(--ease-spring); box-shadow: var(--shadow-sm);
}
.bento-quick-add:hover { transform: scale(1.15) rotate(90deg); background: var(--navy); }
.bento-quick-add svg { stroke: var(--navy); transition: stroke var(--t-fast); }
.bento-quick-add:hover svg { stroke: var(--gold); }

.bento-flash { grid-column: span 3; background: var(--white); display: flex; flex-direction: column; }
.bento-flash-badge {
  position: absolute; top: 15px; right: 15px; z-index: 3;
  background: var(--accent); color: #fff; font-size: 0.8rem; font-weight: 800;
  padding: 6px 14px; border-radius: var(--r-full); animation: pulseGlow 2s infinite;
}
.bento-flash-img-wrap { height: 180px; position: relative; overflow: hidden; }
.bento-flash-content { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 0.75rem; }
.bento-flash-name { font-weight: 800; font-size: 1rem; color: var(--navy); }
.bento-flash-prices { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

.bento-stats {
  grid-column: span 3; background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: space-around; padding: 1.5rem;
}
.bento-stat { text-align: center; }
.bento-stat strong { display: block; font-size: 1.8rem; font-weight: 900; color: var(--navy); }
.bento-stat span { font-size: 0.8rem; font-weight: 700; color: rgba(26,26,46,0.7); }
.bento-stat-div { width: 2px; height: 40px; background: rgba(26,26,46,0.15); }

.bento-product-sm { grid-column: span 3; min-height: 200px; cursor: pointer; }
.bento-sm-info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.25rem; z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.bento-sm-info span:first-child { color: #fff; font-size: 0.9rem; font-weight: 800; }
.bento-sm-price { color: var(--gold-light); font-weight: 900; font-size: 1rem; }

.bento-trust {
  grid-column: span 5; background: var(--white);
  display: flex; align-items: center; justify-content: space-around; padding: 1.5rem;
}
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 700; color: var(--navy-light); }
.trust-icon { font-size: 1.5rem; color: var(--gold); }

/* ═══════════════════════════════════════════════
   PRODUCT CARDS
   ═══════════════════════════════════════════════ */
.prod-card, .prod-grid-card {
  background: var(--white); border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--cream-2); transition: all var(--t-base) var(--ease);
  cursor: pointer; position: relative; padding: 0;
  box-shadow: var(--shadow-card);
}
.prod-card:hover, .prod-grid-card:hover {
  transform: translateY(-12px); box-shadow: var(--shadow-card-hover);
  border-color: var(--gold); z-index: 5;
}
.prod-card-img { height: 240px; overflow: hidden; background: var(--cream); position: relative; }
.prod-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.prod-card:hover .prod-card-img img, .prod-grid-card:hover .prod-card-img img { transform: scale(1.08); }

.prod-card-badge {
  position: absolute; top: 12px; right: 12px; font-size: 0.75rem; font-weight: 800;
  padding: 4px 12px; border-radius: var(--r-full); z-index: 2;
}
.badge-sale { background: linear-gradient(135deg, var(--danger), var(--accent)); color: #fff; }
.badge-new { background: var(--navy); color: var(--gold); }
.badge-hot { background: linear-gradient(135deg, #FF6B35, #FFB347); color: var(--navy); }

.prod-card-actions {
  position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 8px;
  z-index: 2; opacity: 0; transform: translateX(-15px);
  transition: all var(--t-base) var(--ease-out);
}
.prod-card:hover .prod-card-actions, .prod-grid-card:hover .prod-card-actions { opacity: 1; transform: translateX(0); }
.prod-action-btn {
  width: 38px; height: 38px; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); transition: all var(--t-fast); color: var(--navy);
}
.prod-action-btn:hover { transform: scale(1.15); background: var(--gold); color: var(--navy); }
.prod-action-btn:nth-child(2) { transition-delay: 50ms; }
.prod-action-btn:nth-child(3) { transition-delay: 100ms; }

.prod-card-body { padding: 1.25rem; }
.prod-card-cat { font-size: 0.75rem; font-weight: 800; color: var(--gold-dark); text-transform: uppercase; margin-bottom: 0.4rem; }
.prod-card-name { font-size: 0.95rem; font-weight: 800; color: var(--navy); line-height: 1.4; margin-bottom: 0.6rem; }
.prod-card-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.8rem; display: flex; align-items: center; gap: 4px; }
.prod-card-stars span { color: var(--text-soft); font-size: 0.75rem; }
.prod-card-footer { display: flex; align-items: center; justify-content: space-between; }
.prod-card-price { display: flex; flex-direction: column; }
.prod-price-now { font-size: 1.1rem; font-weight: 900; color: var(--navy); }
.prod-price-was { font-size: 0.8rem; color: var(--text-soft); text-decoration: line-through; }
.prod-add-btn {
  width: 40px; height: 40px; background: var(--navy); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: all var(--t-base) var(--ease-spring);
}
.prod-add-btn:hover { background: var(--gold); color: var(--navy); transform: scale(1.15) rotate(90deg); box-shadow: var(--shadow-gold); }

/* Trust Bar */
.trust-bar-section { padding: 1.5rem 0; background: var(--white); border-top: 1px solid var(--cream-2); border-bottom: 1px solid var(--cream-2); }
.trust-bar-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
}
.trust-item {
  display: flex; align-items: center; gap: 12px; padding: 0.75rem 1rem;
  border-radius: var(--r-md); transition: background var(--t-fast);
}
.trust-item:hover { background: var(--cream); }
.trust-icon { font-size: 1.8rem; flex-shrink: 0; }
.trust-item div { display: flex; flex-direction: column; }
.trust-item strong { font-size: 0.9rem; font-weight: 800; color: var(--navy); line-height: 1.2; }
.trust-item span { font-size: 0.78rem; color: var(--text-soft); margin-top: 2px; }
@media (max-width: 900px) { .trust-bar-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .trust-bar-grid { grid-template-columns: repeat(2, 1fr); } .trust-item:last-child { display: none; } }

/* Horizontal Strip */
.strip-section { padding: 3.5rem 0; background: var(--white); }
.strip-header { display: flex; align-items: flex-end; justify-content: space-between; width: min(var(--max-w), 96%); margin-inline: auto; margin-bottom: 2.5rem; }
.h-scroll-track {
  display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 1rem min(calc((100vw - var(--max-w))/2 + 2%), 3%) 1.5rem;
  scrollbar-width: none; overflow-y: hidden;
}
.h-scroll-track .prod-card { flex-shrink: 0; width: 280px; scroll-snap-align: start; }

/* ═══════════════════════════════════════════════
   CATEGORY TILES
   ═══════════════════════════════════════════════ */
.cat-section { padding: 3.5rem 0; background: var(--cream); }
.cat-mosaic { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
.cat-tile {
  background: var(--white); border-radius: var(--r-lg); padding: 2rem 1rem; text-align: center;
  border: 1px solid var(--cream-2); cursor: pointer; position: relative; overflow: hidden;
  transition: all var(--t-base) var(--ease); box-shadow: var(--shadow-xs);
}
.cat-tile::before {
  content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, transparent, rgba(212,168,83,0.1));
  opacity: 0; transition: opacity var(--t-base);
}
.cat-tile:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: var(--shadow-gold); }
.cat-tile:hover::before { opacity: 1; }
.cat-tile:hover .cat-icon { transform: scale(1.2) translateY(-5px); }
.cat-icon { font-size: 2.5rem; display: block; margin-bottom: 1rem; transition: transform var(--t-base) var(--ease-bounce); }
.cat-name { font-size: 0.95rem; font-weight: 800; color: var(--navy); }
.cat-count { font-size: 0.8rem; color: var(--text-soft); margin-top: 5px; }

/* ═══════════════════════════════════════════════
   FLASH DEALS
   ═══════════════════════════════════════════════ */
.flash-section {
  padding: 4rem 0; background: var(--flash-bg); position: relative; overflow: hidden;
  animation: gradientShift 10s ease infinite; background-size: 200% 200%;
}
.flash-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(232,93,74,0.15), transparent 60%);
  pointer-events: none;
}
.flash-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 3.5rem; flex-wrap: wrap; gap: 2rem; position: relative; z-index: 2; }
.flash-section-header .section-heading { color: var(--white); margin: 0; }
.flash-timer-lg { display: flex; align-items: center; gap: 10px; }
.timer-block-lg {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(10px);
  border-radius: var(--r-md); padding: 12px 16px; text-align: center; min-width: 65px;
  box-shadow: 0 0 20px rgba(232,93,74,0.2);
}
.timer-block-lg span { display: block; font-size: 1.6rem; font-weight: 900; color: var(--white); line-height: 1; }
.timer-block-lg small { font-size: 0.75rem; color: rgba(255,255,255,0.7); }
.flash-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; position: relative; z-index: 2; }
.flash-card {
  background: var(--flash-card-bg); border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(12px);
  border-radius: var(--r-lg); overflow: hidden; cursor: pointer;
  transition: all var(--t-base) var(--ease);
}
.flash-card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: 0 15px 40px rgba(0,0,0,0.4); }
.flash-card-img { height: 220px; overflow: hidden; position: relative; }
.flash-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.flash-card:hover .flash-card-img img { transform: scale(1.08); }
.flash-discount-badge {
  position: absolute; top: 12px; right: 12px; background: var(--flash-discount-bg); color: var(--flash-discount-text);
  font-size: 0.8rem; font-weight: 900; padding: 6px 16px; border-radius: var(--r-full); border: 1px solid var(--accent);
  animation: pulseGlow 2s infinite;
}
.flash-card-body { padding: 1.5rem; }
.flash-card-name { font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 0.75rem; }
.flash-card-prices { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.flash-card-new { font-size: 1.3rem; font-weight: 900; color: var(--gold-light); }
.flash-card-old { font-size: 0.9rem; color: rgba(255,255,255,0.5); text-decoration: line-through; }
.flash-progress { height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; margin-bottom: 0.5rem; overflow: hidden; }
.flash-progress-bar { height: 100%; background: linear-gradient(90deg, var(--gold), var(--accent)); border-radius: 3px; transition: width 1s; }
.flash-stock-text { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* ═══════════════════════════════════════════════
   CURATED & ALL PRODUCTS
   ═══════════════════════════════════════════════ */
.curated-section { padding: 3.5rem 0; background: var(--white); }
.curated-section:nth-child(even) { background: var(--cream); }
.curated-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; }
.see-all-link {
  font-size: 0.9rem; font-weight: 800; color: var(--gold-dark); padding: 10px 24px; border-radius: var(--r-full);
  border: 2px solid rgba(212,168,83,0.4); transition: all var(--t-fast);
}
.see-all-link:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.products-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.5rem; }

.all-products-section { padding: 3.5rem 0; background: var(--cream); }
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-chip {
  padding: 10px 24px; border-radius: var(--r-full); border: 2px solid var(--cream-2);
  background: var(--white); font-size: 0.9rem; font-weight: 800; color: var(--navy-light);
  transition: all var(--t-fast); cursor: pointer;
}
.filter-chip:hover { border-color: var(--gold); color: var(--gold-dark); }
.filter-chip.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.products-masonry { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }

/* ═══════════════════════════════════════════════
   DIRECT SALES HERO
   ═══════════════════════════════════════════════ */
.ds-hero-section { padding: 8rem 0 5rem; position: relative; overflow: hidden; display: flex; align-items: center; }
.ds-hero-container { position: relative; z-index: 2; display: flex; align-items: center; gap: 4rem; flex-wrap: wrap; }
.ds-hero-content { flex: 1 1 500px; }
.ds-eyebrow { display: inline-block; background: rgba(232,93,74,0.1); color: var(--accent); font-weight: 800; font-size: 0.9rem; padding: 8px 18px; border-radius: var(--r-full); margin-bottom: 1.5rem; }
.ds-hero-title { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; color: var(--navy); line-height: 1.15; margin-bottom: 1.5rem; }
.ds-hero-title span { background: linear-gradient(135deg, var(--gold-dark), var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.ds-hero-desc { font-size: 1.15rem; color: var(--text-mid); margin-bottom: 2.5rem; line-height: 1.8; max-width: 550px; }
.ds-hero-features { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.ds-feat { display: flex; align-items: center; gap: 12px; font-weight: 800; color: var(--navy); font-size: 1.1rem; }
.ds-feat-icon { background: var(--white); box-shadow: var(--shadow-sm); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); }
.ds-cta { font-size: 1.2rem; padding: 18px 45px; }

.ds-hero-visual { flex: 1 1 450px; position: relative; }
.ds-video-wrap { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; background: var(--navy); }
.ds-video-wrap video { width: 100%; height: 100%; object-fit: cover; }
.ds-mute-btn { position: absolute; bottom: 25px; inset-inline-end: 25px; width: 50px; height: 50px; background: rgba(255,255,255,0.2); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.4); border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; z-index: 10; cursor: pointer; transition: all 0.3s; }
.ds-mute-btn:hover { background: rgba(255,255,255,0.4); transform: scale(1.1); }
.ds-glass-badge { position: absolute; top: 25px; inset-inline-start: 25px; background: rgba(255,255,255,0.85); backdrop-filter: blur(12px); padding: 10px 20px; border-radius: var(--r-full); font-weight: 800; font-size: 1rem; color: var(--navy); display: flex; align-items: center; gap: 10px; z-index: 10; box-shadow: var(--shadow-sm); }
.pulse-dot { width: 12px; height: 12px; background: var(--accent); border-radius: 50%; animation: pulseDot 1.5s infinite; }

/* ═══════════════════════════════════════════════
   FORMS & CHECKOUT
   ═══════════════════════════════════════════════ */
.form-group { position: relative; margin-bottom: 1.5rem; }
.form-label { display: block; font-weight: 800; font-size: 0.9rem; color: var(--text-mid); margin-bottom: 0.5rem; }
.form-control {
  width: 100%; padding: 16px 20px; border: 2px solid var(--cream-2); border-radius: var(--r-md);
  font-size: 1rem; font-family: var(--font); background: var(--white); color: var(--text-dark);
  transition: border-color var(--t-base), box-shadow var(--t-base), background var(--t-base);
}
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(212,168,83,0.12); background: #FFFDF8; }
.form-control::placeholder { color: var(--text-soft); }
select.form-control { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231A1A2E'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: left 16px center; background-size: 16px; }
.form-hint { font-size: 0.8rem; color: var(--text-soft); margin-top: 0.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.form-card {
  background: var(--white); border-radius: var(--r-lg); padding: 2.5rem; margin-bottom: 2rem;
  box-shadow: var(--shadow-card); border: 1px solid var(--cream-2);
}
.form-card h2 { font-size: 1.4rem; font-weight: 900; margin-bottom: 2rem; color: var(--navy); }

.payment-method-cards { display: flex; flex-direction: column; gap: 1rem; }
.payment-method-card {
  display: flex; align-items: center; gap: 1.25rem; padding: 1.25rem 1.5rem; border-radius: var(--r-md);
  border: 2px solid var(--cream-2); cursor: pointer; transition: all var(--t-base);
}
.payment-method-card.selected, .payment-method-card:hover { border-color: var(--gold); background: rgba(212,168,83,0.04); }
.payment-icon { font-size: 2rem; }
.payment-method-name { font-weight: 800; font-size: 1.05rem; color: var(--navy); }
.payment-method-desc { font-size: 0.85rem; color: var(--text-soft); }
.order-summary { padding: 2rem; background: var(--cream); border-radius: var(--r-md); }

/* ═══════════════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════════════ */
.newsletter { padding: 6rem 0; background: var(--navy); position: relative; overflow: hidden; }
.newsletter-inner { display: flex; align-items: center; gap: 4rem; flex-wrap: wrap; position: relative; z-index: 1; }
.newsletter-text { flex: 1; min-width: 300px; }
.newsletter-text h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); color: #fff; margin-bottom: 1rem; }
.newsletter-text p { color: rgba(255,255,255,0.7); font-size: 1.1rem; }
.newsletter-form { display: flex; gap: 12px; flex: 1; min-width: 300px; }
.nl-input {
  flex: 1; padding: 16px 24px; border-radius: var(--r-full);
  border: 2px solid rgba(212,168,83,0.4); background: rgba(255,255,255,0.05); backdrop-filter: blur(10px);
  color: #fff; font-size: 1rem; transition: all var(--t-base);
}
.nl-input:focus { border-color: var(--gold); background: rgba(255,255,255,0.1); box-shadow: 0 0 0 4px rgba(212,168,83,0.15); }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding: 4rem 0; }
.footer-logo .logo-ar { font-size: 1.8rem; color: #fff; background: none; -webkit-text-fill-color: #fff; }
.footer-brand p { font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.8; max-width: 280px; margin-top: 1rem; }
.footer-social { display: flex; gap: 12px; margin-top: 1.5rem; }
.social-btn {
  width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); transition: all var(--t-fast);
}
.social-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: translateY(-3px); }
.footer-col h4 { color: #fff; font-size: 1.1rem; margin-bottom: 1.5rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a { font-size: 0.95rem; color: rgba(255,255,255,0.5); transition: color var(--t-fast); }
.footer-col a:hover { color: var(--gold-light); }
.pay-methods { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 0.5rem; }
.pay-chip {
  padding: 6px 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm); font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.7);
}
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 1.5rem 0; color: rgba(255,255,255,0.4); }
.footer-bottom p { color: inherit; margin: 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; font-size: 0.9rem; color: rgba(255,255,255,0.4); }
.footer-bottom-inner a { color: rgba(255,255,255,0.4); margin-right: 1.5rem; }
.footer-bottom-inner a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════
   DRAWERS (CART & QUICK VIEW)
   ═══════════════════════════════════════════════ */
.drawer-overlay { position: fixed; inset: 0; background: rgba(26,26,46,0.6); z-index: 1200; opacity: 0; pointer-events: none; transition: opacity var(--t-base); backdrop-filter: blur(8px); }
.drawer-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer, .qv-drawer, .cats-drawer {
  position: fixed; top: 0; width: min(450px, 100vw); height: 100%; background: var(--glass-bg);
  backdrop-filter: blur(30px); border-left: 1px solid var(--glass-border);
  z-index: 1201; display: flex; flex-direction: column; box-shadow: var(--shadow-lg);
  transition: transform var(--t-slow) var(--ease);
}
.cart-drawer { left: 0; transform: translateX(-100%); } /* RTL */
.qv-drawer, .cats-drawer { left: 0; transform: translateX(-100%); }
.cart-drawer.open, .qv-drawer.open, .cats-drawer.open { transform: translateX(0); }

.cats-body { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.cat-item-link {
  display: flex; align-items: center; gap: 1rem; padding: 1.2rem;
  border-radius: var(--r-md); background: var(--white); border: 2px solid var(--cream-2);
  transition: all var(--t-base); font-weight: 700; color: var(--navy); cursor: pointer;
  text-decoration: none; font-family: var(--font); font-size: 1rem;
}
.cat-item-link:hover {
  border-color: var(--gold); background: rgba(212,168,83,0.04); transform: translateY(-2px);
  color: var(--gold-dark);
}
.cat-item-icon { font-size: 1.5rem; }
.cat-item-count { margin-right: auto; font-size: 0.8rem; background: var(--cream-2); padding: 4px 8px; border-radius: var(--r-full); color: var(--text-mid); }

.drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; border-bottom: 1px solid rgba(212,168,83,0.15); }
.drawer-header h2 { font-size: 1.3rem; }
.cart-count-label { font-size: 0.9rem; color: var(--text-soft); }
.drawer-close { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.05); transition: all var(--t-fast); }
.drawer-close:hover { background: var(--navy); color: #fff; transform: rotate(90deg); }

.cart-body { flex: 1; overflow-y: auto; padding: 1.5rem; }
.cart-empty-state { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; color: var(--text-soft); }
.cart-item-card {
  display: flex; gap: 1rem; padding: 1rem; border-radius: var(--r-md); background: var(--white);
  border: 1px solid var(--cream-2); margin-bottom: 1rem; transition: all var(--t-fast);
  animation: slideInCart 0.4s var(--ease-out); box-shadow: var(--shadow-xs);
}
.cart-item-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.cart-item-img { width: 80px; height: 80px; border-radius: var(--r-sm); }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 0.95rem; font-weight: 800; color: var(--navy); margin-bottom: 0.3rem; }
.cart-item-variant { font-size: 0.8rem; color: var(--text-soft); }
.cart-item-price { font-size: 1rem; font-weight: 900; color: var(--gold-dark); margin-top: 0.3rem; }
.cart-item-row { display: flex; justify-content: space-between; align-items: center; margin-top: 0.5rem; }
.qty-control { display: flex; align-items: center; border: 1.5px solid var(--cream-2); border-radius: var(--r-full); background: var(--cream); }
.qty-btn { width: 32px; height: 32px; font-size: 1.1rem; font-weight: 800; color: var(--navy); }
.qty-btn:hover { background: var(--gold-light); }
.qty-num { width: 32px; text-align: center; font-weight: 800; }
.cart-item-remove { font-size: 0.8rem; color: var(--danger); padding: 4px 10px; border-radius: var(--r-sm); background: rgba(231,76,60,0.1); }
.cart-item-remove:hover { background: var(--danger); color: #fff; }

.cart-footer-panel { padding: 1.5rem; border-top: 1px solid rgba(212,168,83,0.15); background: rgba(255,255,255,0.9); backdrop-filter: blur(20px); position: sticky; bottom: 0; }
.cart-summary-row { display: flex; justify-content: space-between; font-size: 0.95rem; color: var(--text-mid); margin-bottom: 0.5rem; }
.total-row { border-top: 2px solid var(--cream-2); padding-top: 1rem; margin-top: 0.5rem; font-size: 1.2rem; }
.total-row strong { color: var(--navy); font-weight: 900; }

.qv-body { padding: 2rem; flex: 1; overflow-y: auto; padding-bottom: 100px; }
.qv-img { width: 100%; aspect-ratio: 4/3; border-radius: var(--r-lg); margin-bottom: 1.5rem; }
.qv-thumbs { display: flex; gap: 10px; margin-bottom: 1.5rem; }
.qv-thumb { width: 70px; height: 70px; border-radius: var(--r-sm); border: 2px solid var(--cream-2); cursor: pointer; }
.qv-thumb:hover, .qv-thumb.active { border-color: var(--gold); }
.qv-cat { font-size: 0.8rem; font-weight: 800; color: var(--gold-dark); text-transform: uppercase; margin-bottom: 0.5rem; }
.qv-name { font-size: 1.5rem; margin-bottom: 0.8rem; }
.qv-rating { display: flex; gap: 8px; margin-bottom: 1.25rem; font-size: 0.9rem; }
.qv-stars { color: var(--gold); }
.qv-rating-count { color: var(--text-soft); }
.qv-desc { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 1.5rem; }
.qv-price-block { margin-bottom: 1.5rem; }
.qv-price-now { font-size: 1.8rem; font-weight: 900; color: var(--navy); }
.qv-price-was { font-size: 1rem; color: var(--text-soft); text-decoration: line-through; margin-right: 10px; }
.qv-discount { background: rgba(232,93,74,0.1); color: var(--accent); font-weight: 800; padding: 4px 12px; border-radius: var(--r-full); }
.qv-variants { margin-bottom: 1.5rem; }
.qv-variant-label { font-weight: 800; margin-bottom: 0.8rem; }
.qv-variant-options { display: flex; gap: 10px; }
.qv-variant-btn { padding: 8px 20px; border-radius: var(--r-full); border: 2px solid var(--cream-2); font-weight: 800; }
.qv-variant-btn:hover, .qv-variant-btn.active { border-color: var(--navy); color: var(--navy); background: var(--cream); }
.qv-actions { display: flex; gap: 12px; margin-top: 2rem; }
.qv-qty { display: flex; align-items: center; border: 2px solid var(--cream-2); border-radius: var(--r-full); }
.qv-qty-btn { width: 44px; height: 48px; font-size: 1.2rem; font-weight: 800; }
.qv-qty-num { width: 40px; text-align: center; font-weight: 900; background: transparent; border: none; }
.qv-add-btn { flex: 1; }

/* ═══════════════════════════════════════════════
   MODALS, SEARCH & MOBILE NAV
   ═══════════════════════════════════════════════ */
.search-overlay { position: fixed; top: calc(var(--top-h) + var(--nav-h)); inset-inline: 0; background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); z-index: 999; padding: 2rem 0; border-bottom: 1px solid rgba(212,168,83,0.2); transform: translateY(-100%); opacity: 0; transition: all var(--t-base); }
.search-overlay.open { transform: translateY(0); opacity: 1; }
.search-overlay-inner { display: flex; align-items: center; gap: 15px; width: min(800px, 94%); margin: 0 auto; }
.search-overlay-input { flex: 1; padding: 18px 24px; border-radius: var(--r-full); border: 2px solid rgba(212,168,83,0.4); font-size: 1.1rem; }
.search-close { font-size: 1.5rem; color: var(--navy); }
.search-results { width: min(800px, 94%); margin: 2rem auto 0; display: flex; gap: 15px; flex-wrap: wrap; }

.mobile-nav-overlay { position: fixed; inset: 0; background: rgba(26,26,46,0.6); z-index: 1099; opacity: 0; transition: opacity var(--t-base); backdrop-filter: blur(8px); pointer-events: none; }
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }
.mobile-nav { position: fixed; visibility: hidden; pointer-events: none; top: 0; right: 0; width: min(320px, 85vw); height: 100%; background: var(--white); z-index: 1100; transform: translateX(100%); transition: transform var(--t-slow); display: flex; flex-direction: column; }
.mobile-nav.open { transform: translateX(0); visibility: visible; pointer-events: all; }
.mobile-nav-header { padding: 1.5rem; border-bottom: 1px solid var(--cream-2); display: flex; justify-content: space-between; align-items: center; }
.mobile-nav-links { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-nav-links a { padding: 12px 20px; font-size: 1.1rem; font-weight: 800; border-radius: var(--r-md); }
.mobile-nav-links a:hover { background: var(--cream-2); color: var(--gold-dark); padding-inline-start: 25px; transition: all var(--t-fast); }

/* ═══════════════════════════════════════════════
   TOASTS
   ═══════════════════════════════════════════════ */
.toast-stack { position: fixed; bottom: 2rem; right: 2rem; z-index: 2000; display: flex; flex-direction: column; gap: 12px; pointer-events: none; }
.toast {
  display: flex; align-items: center; gap: 12px; padding: 16px 24px; background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px); border-radius: var(--r-md); box-shadow: var(--shadow-lg);
  font-size: 0.95rem; font-weight: 800; color: var(--navy); border-left: 4px solid var(--gold);
  animation: toastIn 0.4s var(--ease-bounce); pointer-events: all;
}
.toast.success { border-left-color: var(--success); }
.toast.fadeOut { animation: toastOut 0.3s ease forwards; }

/* ═══════════════════════════════════════════════
   MOBILE BOTTOM NAV
   ═══════════════════════════════════════════════ */
.mobile-bottom-nav {
  display: none; position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  width: 92%; max-width: 420px; height: 75px; background: rgba(255,255,255,0.8);
  backdrop-filter: blur(40px) saturate(200%); border: 1px solid rgba(255,255,255,0.6);
  border-radius: 100px; box-shadow: 0 20px 60px rgba(0,0,0,0.12); z-index: 9999;
  justify-content: space-around; align-items: center; padding: 0 15px;
}
.mobile-bottom-nav a { display: flex; flex-direction: column; align-items: center; gap: 6px; color: var(--text-soft); font-size: 0.75rem; font-weight: 800; transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); position: relative; }
.mobile-bottom-nav a.active { color: var(--gold-dark); transform: translateY(-5px); }
.mobile-bottom-nav a svg { width: 26px; height: 26px; stroke-width: 2.2; }
.cart-badge-bottom { position: absolute; top: -8px; right: -8px; background: var(--accent); color: #fff; font-size: 0.7rem; font-weight: 900; min-width: 20px; height: 20px; border-radius: 20px; display: flex; align-items: center; justify-content: center; border: 2px solid #fff; }

/* ═══════════════════════════════════════════════
   BACK TO TOP
   ═══════════════════════════════════════════════ */
.back-top {
  position: fixed; bottom: 2rem; right: 2rem; width: 50px; height: 50px; background: var(--glass-bg);
  backdrop-filter: blur(10px); color: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); border: 2px solid var(--cream-2); opacity: 0; pointer-events: none; transition: all var(--t-base); z-index: 500;
}
.back-top.show { opacity: 1; pointer-events: all; }
.back-top:hover { background: var(--gold); color: #fff; border-color: var(--gold); transform: translateY(-5px) scale(1.1); }

/* ═══════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════ */
@keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
@keyframes float { 0% { transform: translateY(0); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0); } }
@keyframes pulseGlow { 0% { box-shadow: 0 0 0 0 rgba(212,168,83,0.5); } 70% { box-shadow: 0 0 0 15px rgba(212,168,83,0); } 100% { box-shadow: 0 0 0 0 rgba(212,168,83,0); } }
@keyframes rippleAnim { to { transform: scale(4); opacity: 0; } }
@keyframes slideInCart { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes toastIn { from { opacity: 0; transform: translateY(20px) scale(0.9); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes toastOut { to { opacity: 0; transform: translateY(10px); } }
@keyframes shine { to { background-position: 200% center; } }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s var(--ease); }
.reveal.active { opacity: 1; transform: none; }


/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .bento-brand { grid-column: span 7; } .bento-product-hero { grid-column: span 5; }
  .bento-flash, .bento-stats, .bento-product-sm { grid-column: span 4; }
  .bento-trust { display: none; } .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links { display: none; } .hamburger-btn { display: flex; }
  :root { --nav-h: 65px; --top-h: 34px; }
  .bento-container { grid-template-columns: 1fr 1fr; }
  .bento-brand { grid-column: span 2; min-height: 400px; }
  .bento-product-hero, .bento-flash, .bento-product-sm { grid-column: span 1; }
  .bento-stats { grid-column: span 2; }
  .ds-hero-container { flex-direction: column-reverse; text-align: center; gap: 2rem; }
  .ds-hero-features { align-items: center; }
  .strip-section { padding: 3rem 0; }
  .cat-section { padding: 3rem 0; }
  .curated-section { padding: 3rem 0; }
  .all-products-section { padding: 3rem 0; }
  .flash-section { padding: 3.5rem 0; }
}
@media (max-width: 768px) {
  .navbar, .topbar { display: none; }
  .mobile-bottom-nav { display: flex; }
  body { padding-bottom: 90px; }
  /* 2-column products grid on mobile instead of horizontal scroll */
  .products-row { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 0.75rem; 
  }
  .products-row .prod-grid-card { width: 100%; }
  .products-masonry { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 0.75rem; 
  }
  .flash-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .cat-mosaic { grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
  .cat-tile { padding: 1.25rem 0.75rem; }
  .cat-icon { font-size: 2rem; margin-bottom: 0.5rem; }
  .strip-section { padding: 2rem 0; }
  .cat-section { padding: 2rem 0; }
  .curated-section { padding: 2rem 0; }
  .all-products-section { padding: 2rem 0; }
  .flash-section { padding: 2.5rem 0; }
  .section-heading { font-size: 1.4rem; }
  .filter-bar { gap: 6px; }
  .filter-chip { padding: 8px 14px; font-size: 0.82rem; }
  .prod-card-body { padding: 0.75rem; }
  .prod-price-now { font-size: 0.95rem; }
  /* Hero mobile fixes */
  .cinematic-hero { min-height: 55vh; min-height: 55dvh; padding: 100px 0 50px; }
  .hero-quick-links { gap: 6px; margin-top: 0.75rem; justify-content: center; }
  .hero-quick-links .quick-link { padding: 5px 10px; font-size: 0.8rem; gap: 4px; }
  .hero-brand-name { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .hero-tagline { font-size: 0.95rem; margin-bottom: 1rem; }
  .hero-ctas { gap: 8px; }
  .hero-cta { padding: 10px 20px; font-size: 0.9rem; }
  /* Strip header compact on mobile */
  .strip-header { margin-bottom: 1.25rem; }
  /* Bento section never creates phantom space */
  .bento-section { display: none; }
}
@media (max-width: 600px) {
  .bento-container { grid-template-columns: 1fr; }
  .bento-brand, .bento-product-hero, .bento-flash, .bento-stats, .bento-product-sm { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-col:nth-child(3), .footer-col:nth-child(4) { display: none; }
  .ds-video-wrap { aspect-ratio: 1/1; width: 100%; max-width: 100%; }
  .products-masonry { grid-template-columns: repeat(2, 1fr); }
  .flash-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   CART UPSELL & PROGRESS
   ═══════════════════════════════════════════════ */
.upsell-card-container {
  margin: 10px 15px;
  padding: 10px;
  border: 1px dashed var(--admin-gold);
  border-radius: 8px;
  background: rgba(255, 180, 0, 0.05);
  max-height: 150px;
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease, padding 0.3s ease, border-width 0.3s ease;
}

.upsell-card-container.hidden-fade {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-width: 0;
  border-color: transparent;
}

@keyframes pulse-upsell {
  0% { box-shadow: 0 0 0 0 rgba(255, 180, 0, 0.4); }
  70% { box-shadow: 0 0 0 6px rgba(255, 180, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 180, 0, 0); }
}

.btn-upsell-pulse {
  animation: pulse-upsell 2s infinite;
}