/* ============================================
   FLEXER EYEWEAR — Premium Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ---- TOKENS ---- */
:root {
  --black:       #080808;
  --near-black:  #0f0f0f;
  --surface:     #141414;
  --surface-2:   #1c1c1c;
  --surface-3:   #242424;
  --border:      rgba(255,255,255,0.07);
  --border-hover:rgba(255,255,255,0.15);
  --gold:        #c9a84c;
  --gold-light:  #e0c36d;
  --gold-dim:    rgba(201,168,76,0.15);
  --white:       #ffffff;
  --off-white:   #f0ede8;
  --muted:       rgba(255,255,255,0.45);
  --muted-2:     rgba(255,255,255,0.25);

  --font-display: 'Space Grotesk', sans-serif;
  --font-serif:   'Cormorant Garamond', serif;
  --font-body:    'Inter', sans-serif;

  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   16px;

  --nav-h:       72px;
  --announce-h:  38px;

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 99px; }

/* ---- TYPOGRAPHY ---- */
.section-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 16px;
}
.section-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
}

/* ---- LAYOUT ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 860px; }
.section-header { margin-bottom: 60px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-hover);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-full { width: 100%; }

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  height: var(--announce-h);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.announcement-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: scrollTrack 30s linear infinite;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.announcement-track strong { color: var(--gold); }
.announcement-track .dot { color: var(--gold); font-size: 8px; }
@keyframes scrollTrack {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: var(--announce-h);
  left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: all 0.4s var(--ease-out);
}
.navbar.scrolled {
  top: 0;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
}
.nav-right { justify-content: flex-end; }
.nav-link {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--white);
  text-align: center;
  transition: color 0.25s;
}
.nav-logo:hover { color: var(--gold); }

.cart-btn {
  display: flex; align-items: center; gap: 6px;
  color: var(--muted);
  transition: color 0.25s;
  position: relative;
}
.cart-btn:hover { color: var(--white); }
.cart-count {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  position: absolute;
  top: -8px; right: -8px;
}

/* Mobile */
.mobile-menu { display: none; }
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--near-black);
  border-top: 1px solid var(--border);
  padding: 20px 32px;
  gap: 20px;
}
.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  color: var(--white);
}
.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: all 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img,
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero-img.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
}
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.4) 0%,
    transparent 30%,
    transparent 50%,
    rgba(8,8,8,0.8) 80%,
    var(--black) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}
.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.9s var(--ease-out) forwards;
}
.hero-title .line:nth-child(1) { animation-delay: 0.45s; }
.hero-title .line:nth-child(2) { animation-delay: 0.6s; }
.hero-title .line:nth-child(3) { animation-delay: 0.75s; }
.hero-title .italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 420px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.9s forwards;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 1.05s forwards;
}

.hero-scroll-indicator {
  position: absolute;
  right: 40px;
  bottom: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
  animation: fadeIn 1s ease 1.5s both;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--muted-2), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.hero-badges {
  position: absolute;
  top: calc(var(--announce-h) + var(--nav-h) + 32px);
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  animation: fadeIn 1s ease 1.2s both;
}
.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(8,8,8,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  padding: 10px 16px;
  text-align: center;
}
.badge span {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.badge small {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================================
   MARQUEE STRIP
   ============================================ */
.marquee-strip {
  height: 52px;
  background: var(--gold);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.marquee-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: scrollTrack 20s linear infinite;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
}
.marquee-inner .sep { font-size: 8px; opacity: 0.5; }

/* ============================================
   SHOP SECTION — 3 TIERS
   ============================================ */
.shop {
  padding: 100px 0;
}

/* ============================================
   TIER CARDS (SHOP BY RANGE)
   ============================================ */
.tier-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 70px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.tier-budget  { border-top: 2px solid #6ee7b7; }
.tier-premium { border-top: 2px solid var(--gold); }
.tier-branded { border-top: 2px solid #a78bfa; }

.tier-budget:hover  { border-color: rgba(110,231,183,0.3); box-shadow: 0 16px 48px rgba(110,231,183,0.04); }
.tier-premium:hover { border-color: rgba(201,168,76,0.3);  box-shadow: 0 16px 48px rgba(201,168,76,0.06); }
.tier-branded:hover { border-color: rgba(167,139,250,0.3); box-shadow: 0 16px 48px rgba(167,139,250,0.06); }

/* Header inside tier card */
.tier-card-header {
  padding: 36px 40px 24px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Top bar: Badge & Price range */
.tier-card-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

/* Badge (Pill) - FIXED: width fit-content, inline-flex */
.tier-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  width: fit-content;
  white-space: nowrap;
}
.tier-badge-budget  { background: rgba(110,231,183,0.08); color: #6ee7b7; border: 1px solid rgba(110,231,183,0.25); }
.tier-badge-premium { background: rgba(201,168,76,0.08);  color: var(--gold); border: 1px solid rgba(201,168,76,0.25); }
.tier-badge-branded { background: rgba(167,139,250,0.08); color: #a78bfa; border: 1px solid rgba(167,139,250,0.25); }

/* Price Range */
.tier-price-range {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.tier-budget  .tier-price-range { color: rgba(110,231,183,0.9); }
.tier-premium .tier-price-range { color: rgba(201,168,76,0.9); }
.tier-branded .tier-price-range { color: rgba(167,139,250,0.9); }

/* Title & Subtitle Row */
.tier-card-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.tier-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 6px;
}
.tier-card-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}
.tier-budget  .tier-card-title em { color: #6ee7b7; }
.tier-premium .tier-card-title em { color: var(--gold); }
.tier-branded .tier-card-title em { color: #a78bfa; }

.tier-card-subtitle {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 480px;
}

/* Editorial Top Right Link */
.tier-editorial-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  padding: 10px 18px;
  border-radius: 100px;
  background: var(--surface-3);
  border: 1px solid var(--border-hover);
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
  flex-shrink: 0;
}
.tier-editorial-link .arrow { transition: transform 0.2s; }
.tier-editorial-link:hover { transform: translateX(3px); background: var(--white); color: var(--black); }
.tier-editorial-link:hover .arrow { transform: translateX(3px); }

/* Inclusions Strip (Refined & Minimalist) */
.tier-inclusions-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
}
.inc-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--muted-2);
  white-space: nowrap;
}
.inc-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.inc-tag {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
}
.inc-dot {
  color: var(--gold);
  opacity: 0.5;
  font-size: 12px;
}

/* Preview Grid */
.tier-preview-grid {
  padding: 32px 40px;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px;
}

/* Footer Section CTA Button */
.tier-card-footer {
  padding: 0 40px 32px;
  display: flex;
  justify-content: center;
}
.btn-tier-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 100px;
  background: var(--surface-2);
  border: 1px solid var(--border-hover);
  color: var(--white);
  transition: all 0.25s var(--ease-out);
}
.btn-budget-footer:hover  { background: rgba(110,231,183,0.15); border-color: #6ee7b7; color: #6ee7b7; }
.btn-premium-footer:hover { background: rgba(201,168,76,0.15);  border-color: var(--gold); color: var(--gold); }
.btn-branded-footer:hover { background: rgba(167,139,250,0.15); border-color: #a78bfa; color: #a78bfa; }

/* Reveal animation extra delay */
.reveal-delay-2 { transition-delay: 0.2s !important; }


/* Backwards compat (kept for quick-view modal tier badge) */
.tier-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
.tier-label-wrap { display: flex; align-items: center; gap: 16px; }
.tier-name { font-family: var(--font-display); font-size: 18px; font-weight: 700; }
.tier-desc { font-size: 13px; color: var(--muted); }
.tier-price-range { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--gold); }

/* Tier Package Banner */
.tier-package-banner {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px; border-radius: var(--radius); margin-bottom: 24px;
  background: var(--surface-2); border: 1px solid var(--border); flex-wrap: wrap;
}
.tier-package-budget  { border-left: 3px solid #6ee7b7; background: rgba(110,231,183,0.04); }
.tier-package-premium { border-left: 3px solid var(--gold); background: rgba(201,168,76,0.04); }
.tier-package-branded { border-left: 3px solid #a78bfa; background: rgba(167,139,250,0.04); }

.package-title { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); white-space: nowrap; }
.package-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.pkg-tag { font-size: 11px; padding: 4px 10px; border-radius: 100px; background: var(--surface); border: 1px solid var(--border); color: rgba(255,255,255,0.85); font-weight: 500; letter-spacing: 0.02em; }

/* Tier pills */
.tier-pill {
  display: inline-flex; align-items: center; padding: 6px 14px; border-radius: 100px;
  font-family: var(--font-display); font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; white-space: nowrap; flex-shrink: 0;
}

.tier-pill-budget  { background: rgba(110,231,183,0.12); color: #6ee7b7; border: 1px solid rgba(110,231,183,0.3); }
.tier-pill-premium { background: rgba(201,168,76,0.12);  color: var(--gold); border: 1px solid rgba(201,168,76,0.3); }
.tier-pill-branded { background: rgba(167,139,250,0.12); color: #a78bfa; border: 1px solid rgba(167,139,250,0.3); }

/* Product card badge & Angle switchers */
.product-tier-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 9px;
  padding: 4px 10px;
  z-index: 2;
}

.angle-switchers {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  gap: 6px;
  z-index: 3;
}
.angle-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0,0,0,0.65);
  border: 1px solid var(--border-hover);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}
.angle-dot:hover,
.angle-dot.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: scale(1.1);
}

.product-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; flex-direction: column; gap: 8px;
  align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}
.product-card:hover .product-overlay { opacity: 1; }
.quick-add-btn {
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--surface-3); color: var(--white);
  border: 1px solid var(--border-hover);
  padding: 10px 20px; border-radius: var(--radius-sm);
  transform: translateY(8px); transition: all 0.3s;
  width: 80%; text-align: center;
}
.quick-add-btn.primary-add {
  background: var(--gold); color: var(--black); border-color: var(--gold);
}
.product-card:hover .quick-add-btn { transform: translateY(0); }
.quick-add-btn:hover { background: var(--white); color: var(--black); }
.quick-add-btn.primary-add:hover { background: var(--gold-light); }

/* ============================================
   MODALS & UTILITIES
   ============================================ */
.hidden {
  display: none !important;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s var(--ease-out);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.96) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* QUICK VIEW MODAL */
.quickview-modal {
  background: var(--surface);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  width: 860px;
  max-width: 92vw;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.8);
  animation: modalIn 0.35s var(--ease-out);
}

.quickview-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--surface-3);
  border: 1px solid var(--border-hover);
  color: var(--white);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
}
.quickview-close:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.quickview-body {
  padding: 32px;
}
.qv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.qv-main-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--surface-2);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
}
.qv-main-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}
.qv-main-img-wrap .tier-pill {
  position: absolute; top: 12px; left: 12px;
}
.qv-thumbs {
  display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px;
}
.qv-thumb {
  width: 60px; height: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden; background: var(--surface-2);
  border: 2px solid transparent; cursor: pointer;
  transition: all 0.2s; flex-shrink: 0;
}
.qv-thumb:hover, .qv-thumb.active {
  border-color: var(--gold);
}
.qv-thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
.qv-category {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; color: var(--gold);
  display: block; margin-bottom: 8px;
}
.qv-title {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 700;
  margin-bottom: 12px;
}
.qv-price {
  display: flex; align-items: baseline; gap: 12px; margin-bottom: 16px;
}
.qv-desc {
  font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 20px;
}
.qv-features {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px; margin-bottom: 24px;
}
.qv-features h4 {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); margin-bottom: 10px;
}
.qv-features ul {
  list-style: none; display: flex; flex-direction: column; gap: 6px;
}
.qv-features li {
  font-size: 12px; color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 8px;
}
.qv-colors {
  margin-bottom: 20px; font-size: 12px; color: var(--muted);
}
.qv-colors span { display: block; margin-bottom: 8px; }
.qv-actions { margin-top: 16px; }

@media (max-width: 768px) {
  .qv-grid { grid-template-columns: 1fr; }
  .quickview-body { padding: 20px; }
}

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* Tier empty state */
.tier-empty {
  grid-column: 1/-1;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  padding: 40px 0;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
}

/* Product cards */
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  position: relative;
}
.product-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
/* Tier-specific card hover accents */
.product-card-budget:hover  { border-color: rgba(110,231,183,0.35); box-shadow: 0 20px 60px rgba(110,231,183,0.06); }
.product-card-premium:hover { border-color: rgba(201,168,76,0.4);   box-shadow: 0 20px 60px rgba(201,168,76,0.1); }
.product-card-branded:hover { border-color: rgba(167,139,250,0.4);  box-shadow: 0 20px 60px rgba(167,139,250,0.1); }

.product-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface-2);
}
.product-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.product-card:hover .product-img { transform: scale(1.05); }
.product-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.product-card:hover .product-overlay { opacity: 1; }
.quick-add-btn {
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  background: var(--white); color: var(--black);
  padding: 12px 24px; border-radius: var(--radius-sm);
  transform: translateY(8px); transition: all 0.3s;
}
.product-card:hover .quick-add-btn { transform: translateY(0); }
.quick-add-btn:hover { background: var(--gold); }

.product-info { padding: 20px; }
.product-header {
  display: flex; justify-content: space-between;
  align-items: flex-start; margin-bottom: 8px;
}
.product-name {
  font-family: var(--font-display); font-size: 15px; font-weight: 700;
  letter-spacing: 0.06em; color: var(--white);
}
.product-price { text-align: right; }
.price-sale {
  display: block; font-family: var(--font-display);
  font-size: 17px; font-weight: 700; color: var(--white);
}
.price-original {
  display: block; font-size: 12px; color: var(--muted); text-decoration: line-through;
}
.product-desc {
  font-size: 12px; line-height: 1.6; color: var(--muted); margin-bottom: 12px;
}

/* Feature list */
.product-features {
  list-style: none;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.product-features li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}
.feat-check {
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
/* Tier-colored checkmarks */
.product-card-budget  .feat-check { color: #6ee7b7; }
.product-card-premium .feat-check { color: var(--gold); }
.product-card-branded .feat-check { color: #a78bfa; }

.product-colors {
  display: flex; gap: 8px; margin-bottom: 16px;
}
.color-dot {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid transparent; cursor: pointer; transition: all 0.2s;
}
.color-dot:hover { transform: scale(1.15); }
.color-dot.active { border-color: var(--gold); }

/* Tier-colored CTA buttons */
.btn-tier-budget  { background: #6ee7b7; color: #0a2a1f; border-color: #6ee7b7; }
.btn-tier-budget:hover  { background: #a7f3d0; border-color: #a7f3d0; box-shadow: 0 8px 24px rgba(110,231,183,0.25); }
.btn-tier-premium { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-tier-premium:hover { background: var(--gold-light); border-color: var(--gold-light); box-shadow: 0 8px 24px rgba(201,168,76,0.25); }
.btn-tier-branded { background: #a78bfa; color: #1a0a3a; border-color: #a78bfa; }
.btn-tier-branded:hover { background: #c4b5fd; border-color: #c4b5fd; box-shadow: 0 8px 24px rgba(167,139,250,0.25); }


/* ============================================
   SPLIT SECTION (ABOUT)
   ============================================ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
  overflow: hidden;
}
.split-visual {
  position: relative;
  background: var(--surface);
  overflow: hidden;
}
.split-img-container {
  position: absolute;
  inset: 0;
}
.split-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.8);
  transition: transform 8s ease-out;
}
.split-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.2) 0%, rgba(8,8,8,0.6) 100%);
}
.split-stat-block {
  position: absolute;
  bottom: 40px; left: 40px;
  display: flex;
  gap: 40px;
  z-index: 2;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.split-content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--near-black);
  border-left: 1px solid var(--border);
}
.split-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 28px;
}
.split-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}
.split-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 20px;
  max-width: 420px;
}
.features-list {
  margin: 24px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  font-size: 20px;
  color: var(--gold);
  line-height: 1.4;
  flex-shrink: 0;
}
.feature-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.feature-item p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

/* About section mission highlight box */
.about-mission {
  background: rgba(201,168,76,0.06);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 32px;
  max-width: 440px;
}
.about-mission p {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1.6;
  letter-spacing: 0.02em;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 100px 0;
  background: var(--near-black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.4s var(--ease-out);
}
.testimonial-card:hover {
  border-color: var(--gold-dim);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}
.stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.reviewer strong {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.reviewer small {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  padding: 100px 0;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--white);
  text-align: left;
  gap: 20px;
  transition: color 0.25s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
  line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease-out), padding 0.3s;
}
.faq-answer.open {
  max-height: 200px;
  padding-bottom: 20px;
}
.faq-answer p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section {
  padding: 100px 0;
  background: var(--near-black);
  border-top: 1px solid var(--border);
}
.newsletter-inner {
  text-align: center;
}
.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.newsletter-sub {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 40px;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto 16px;
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s;
}
.newsletter-form:focus-within { border-color: var(--gold); }
.newsletter-input {
  flex: 1;
  background: var(--surface);
  border: none;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  outline: none;
}
.newsletter-input::placeholder { color: var(--muted); }
.newsletter-form .btn {
  border-radius: 0;
  border: none;
  border-left: 1px solid var(--border);
}
.newsletter-privacy {
  font-size: 11px;
  color: var(--muted-2);
}
.newsletter-privacy a { color: var(--gold); }

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

/* WhatsApp Community Banner Card */
.whatsapp-card {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.08) 0%, rgba(18, 140, 126, 0.15) 100%);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(37, 211, 102, 0.08);
  transition: all 0.3s var(--ease-out);
}
.whatsapp-card:hover {
  border-color: rgba(37, 211, 102, 0.6);
  box-shadow: 0 20px 60px rgba(37, 211, 102, 0.15);
  transform: translateY(-2px);
}
.wa-icon-glow {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #080808;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 24px rgba(37, 211, 102, 0.5);
}
.wa-content { flex: 1; }
.wa-content h3 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  color: var(--white); margin-bottom: 6px;
}
.wa-content p {
  font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.5;
}
.btn-whatsapp {
  background: #25D366; color: #080808;
  border: 1px solid #25D366;
  font-weight: 700;
  padding: 14px 28px;
  white-space: nowrap;
}
.btn-whatsapp:hover {
  background: #20ba5a; border-color: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}
.wa-link-highlight {
  color: #25D366 !important;
  font-weight: 600;
  transition: opacity 0.2s;
}
.wa-link-highlight:hover { opacity: 0.8; }

@media (max-width: 768px) {
  .whatsapp-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
    gap: 16px;
  }
  .btn-whatsapp { width: 100%; }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1.4;
}
.contact-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.contact-item a, .contact-item span {
  font-size: 14px;
  color: var(--white);
  transition: color 0.25s;
}
.contact-item a:hover { color: var(--gold); }
.social-links { display: flex; gap: 16px; }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color 0.25s;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--near-black);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 16px;
}
.social-icon {
  color: var(--muted);
  transition: color 0.25s;
  display: flex;
}
.social-icon:hover { color: var(--gold); }
.footer-links-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color 0.25s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0.05em;
}

/* ============================================
   CART DRAWER
   ============================================ */
.cart-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 420px;
  max-width: 100vw;
  height: 100vh;
  background: var(--near-black);
  border-left: 1px solid var(--border);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--border);
}
.cart-header h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.cart-close {
  font-size: 18px;
  color: var(--muted);
  transition: color 0.2s;
  line-height: 1;
  padding: 4px;
}
.cart-close:hover { color: var(--white); }
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px;
}
.cart-empty {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  padding: 60px 0;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-info { flex: 1; }
.cart-item-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.cart-item-price { font-size: 13px; color: var(--gold); }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
}
.qty-btn {
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s;
}
.qty-btn:hover { border-color: var(--gold); color: var(--gold); }
.cart-footer {
  padding: 20px 28px 28px;
  border-top: 1px solid var(--border);
}
.cart-total {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.cart-total span:last-child { color: var(--gold); }

/* ============================================
   TOAST
   ============================================ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--surface-3);
  border: 1px solid var(--border-hover);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 14px 28px;
  border-radius: 100px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s var(--ease-out);
  z-index: 999;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================
   INTERSECTION OBSERVER ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE (TABLETS & SMARTPHONES)
   ============================================ */
@media (min-width: 901px) and (max-width: 1100px) {
  .tier-preview-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 900px) {
  .products-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .split-section { grid-template-columns: 1fr; }
  .split-visual { min-height: 340px; }
  .split-content { padding: 40px 20px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .hero-badges { display: none !important; }
  .hero-scroll-indicator { display: none !important; }
}

/* SMARTPHONE SPECIFIC (<= 768px) */
@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
    --announce-h: 34px;
  }

  .container { padding: 0 16px !important; }
  
  /* Navbar & Header on Mobile */
  .nav-left, .nav-right .nav-link { display: none !important; }
  .nav-right { display: flex !important; align-items: center; gap: 10px; }
  .cart-btn { display: flex !important; }
  .mobile-menu { display: flex !important; align-items: center; margin-left: 8px; }

  /* Mobile menu dropdown */
  .mobile-nav {
    position: fixed;
    top: calc(var(--nav-h) + var(--announce-h));
    left: 0; right: 0;
    background: rgba(12, 12, 12, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 24px 20px;
    gap: 18px;
    z-index: 99;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
  }
  .mobile-nav-link {
    font-size: 14px;
    letter-spacing: 0.12em;
    padding: 8px 0;
  }

  /* Hero Section */
  .hero {
    min-height: 520px;
    height: auto;
    padding-top: calc(var(--nav-h) + var(--announce-h) + 32px);
    padding-bottom: 48px;
  }
  .hero-content { padding: 0 16px; }
  .hero-title { font-size: clamp(2.4rem, 11vw, 4rem) !important; margin-bottom: 16px; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 24px; }
  .hero-cta-group { flex-direction: column; width: 100%; max-width: 100%; gap: 12px; }
  .hero-cta-group .btn { width: 100%; min-height: 48px; }

  /* Tier Cards on Mobile */
  .shop { padding: 48px 0; }
  .tier-card { margin-bottom: 40px; border-radius: var(--radius); }
  .tier-card-header { padding: 24px 18px 18px; gap: 14px; }
  .tier-card-top-bar { flex-wrap: wrap; gap: 10px; }
  .tier-price-range { font-size: 13px; }
  .tier-card-title-row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .tier-card-title { font-size: clamp(1.5rem, 6vw, 2.1rem) !important; }
  .tier-editorial-link { align-self: flex-start; }
  .tier-preview-grid { grid-template-columns: 1fr !important; padding: 18px 16px; gap: 16px; }
  .tier-card-footer { padding: 0 16px 24px; }
  .btn-tier-footer { width: 100%; padding: 14px 20px; font-size: 11px; }

  /* Sections Padding */
  .testimonials, .faq-section, .newsletter-section, .contact-section { padding: 48px 0; }
  .split-stat-block {
    position: static;
    transform: none;
    background: var(--surface-2);
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    text-align: center;
    border-radius: 0;
  }
  .stat-num { font-size: 18px; }
  .stat-label { font-size: 9px; }

  /* Footer on Mobile */
  .footer-links-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .newsletter-form { flex-direction: column; border-radius: var(--radius-sm); }
  .newsletter-form .btn { border-left: none; border-top: 1px solid var(--border); border-radius: 0 0 var(--radius-sm) var(--radius-sm); }
  .newsletter-input { border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
}

/* SMALL SMARTPHONES (<= 480px) */
@media (max-width: 480px) {
  .cart-drawer {
    width: 100vw !important;
    height: 100vh !important;
    border-left: none;
  }
  .quickview-modal {
    width: 100vw !important;
    height: 100vh !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    border-radius: 0 !important;
  }
  .quickview-body { padding: 20px 16px 36px; }
  .qv-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-links-cols { grid-template-columns: 1fr; }
}

/* ---- SPINNER ---- */
.spinner {
  width: 36px; height: 36px;
  border: 2px solid var(--border-hover);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- CART ITEM IMAGE ---- */
.cart-item-img {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface-2);
  flex-shrink: 0;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }

