/* ═══════════════════════════════════════════════════════════
   UONE – GLOW ELIXIR  |  styles.css
   Theme: Royal Purple · Metallic Gold · Ivory White
   ═══════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  /* Core Palette */
  --purple-deep:    #1a0a2e;
  --purple-rich:    #2d1054;
  --purple-mid:     #4a1a8c;
  --purple-soft:    #7b3fd4;
  --purple-glow:    #9d6fe8;
  --purple-light:   #c9a8f5;

  --gold-bright:    #d4a017;
  --gold-rich:      #b8860b;
  --gold-light:     #f0c84a;
  --gold-pale:      #fdf3c0;
  --gold-shimmer:   #ffe066;

  --white:          #ffffff;
  --ivory:          #fdf8f2;
  --cream:          #f8f2e8;
  --text-dark:      #1a0a2e;
  --text-mid:       #4a3860;
  --text-light:     #8a7a9a;
  --border-subtle:  rgba(212, 160, 23, 0.18);

  /* Typography */
  --font-display:   'Playfair Display', Georgia, serif;
  --font-body:      'Inter', system-ui, sans-serif;
  --font-label:     'Montserrat', system-ui, sans-serif;

  /* Spacing */
  --section-gap:    120px;
  --container-max:  1280px;
  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-xl:      40px;

  /* Shadows */
  --shadow-card:    0 8px 40px rgba(26, 10, 46, 0.12);
  --shadow-gold:    0 4px 24px rgba(212, 160, 23, 0.25);
  --shadow-purple:  0 8px 48px rgba(74, 26, 140, 0.3);
  --shadow-hover:   0 16px 64px rgba(74, 26, 140, 0.22);

  /* Transitions */
  --ease-out:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast:         0.18s;
  --t-mid:          0.35s;
  --t-slow:         0.6s;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--ivory);
  overflow-x: hidden;
  line-height: 1.65;
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

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

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--purple-deep);
  line-height: 1.18;
  margin-bottom: 18px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  background: linear-gradient(135deg, var(--purple-mid) 0%, var(--purple-soft) 100%);
  color: var(--white);
  font-family: var(--font-label);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 50px;
  border: 1.5px solid transparent;
  box-shadow: 0 6px 28px rgba(74, 26, 140, 0.32);
  transition: all var(--t-mid) var(--ease-out);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(74, 26, 140, 0.4);
  background: linear-gradient(135deg, var(--purple-soft) 0%, var(--purple-glow) 100%);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 14px 34px;
  border: 1.5px solid var(--purple-mid);
  color: var(--purple-mid);
  font-family: var(--font-label);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 50px;
  background: transparent;
  transition: all var(--t-mid) var(--ease-out);
  text-decoration: none;
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--purple-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-purple);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  padding: 14px 34px;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
  font-family: var(--font-label);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  transition: all var(--t-mid) var(--ease-out);
  text-decoration: none;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 22px; font-size: 0.82rem; }
.full-width { width: 100%; justify-content: center; }

/* ─── GLASS CARD ─────────────────────────────────────────── */
.glass-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

/* ─── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: all var(--t-mid) var(--ease-out);
}

.navbar.scrolled {
  background: rgba(26, 10, 46, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(212, 160, 23, 0.15);
  box-shadow: 0 4px 32px rgba(0,0,0,0.2);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 44px; width: auto; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-label);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
  padding: 8px 16px;
  border-radius: 50px;
  transition: all var(--t-fast) ease;
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav-link.active {
  color: var(--gold-light);
}

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

.btn-cart {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.1);
  transition: all var(--t-fast) ease;
}
.btn-cart:hover { background: rgba(255,255,255,0.2); color: var(--white); }

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold-bright);
  color: var(--purple-deep);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.cart-count.visible { display: flex; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1);
  transition: background var(--t-fast) ease;
}
.hamburger:hover { background: rgba(255,255,255,0.2); }
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: all var(--t-mid) var(--ease-out);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 10, 46, 0.97);
  backdrop-filter: blur(24px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: all var(--t-mid) var(--ease-out);
}
.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.overlay-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(255,255,255,0.6);
  font-size: 1.4rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: all var(--t-fast) ease;
}
.overlay-close:hover { color: var(--white); background: rgba(255,255,255,0.15); }

.mobile-nav-links { text-align: center; }
.mobile-nav-links li { margin: 4px 0; }
.mobile-link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  display: block;
  padding: 12px 48px;
  border-radius: var(--radius-md);
  transition: all var(--t-fast) ease;
}
.mobile-link:hover {
  color: var(--gold-light);
  background: rgba(255,255,255,0.06);
}

/* ─── HERO SECTION ───────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-rich) 40%, #3d1570 70%, #220a42 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 32px 80px;
}

.hero-glow-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(157, 111, 232, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(212, 160, 23, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 80% 20%, rgba(212, 160, 23, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0;
}

@keyframes floatParticle {
  0%   { transform: translateY(0) scale(0.8); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-100vh) scale(1.2); opacity: 0; }
}

.hero-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-shimmer));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-trust span {
  font-family: var(--font-label);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
}

/* Product Float */
.hero-product { display: flex; justify-content: center; align-items: center; }

.product-float-wrap {
  position: relative;
  width: 420px;
  max-width: 100%;
  animation: heroFloat 5s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-18px) rotate(1deg); }
  66%       { transform: translateY(-8px) rotate(-0.5deg); }
}

.product-glow-ring {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(157, 111, 232, 0.3) 0%, transparent 70%);
  animation: pulseRing 3s ease-in-out infinite;
}

@keyframes pulseRing {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.06); }
}

.hero-product-img {
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(157, 111, 232, 0.5));
  position: relative;
  z-index: 1;
}

.floating-badge {
  position: absolute;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 160, 23, 0.4);
  border-radius: 50px;
  padding: 8px 18px;
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  white-space: nowrap;
  z-index: 2;
  animation: badgePulse 3s ease-in-out infinite;
}

.badge-top    { top: 5%; left: -12%; animation-delay: 0s; }
.badge-right  { top: 42%; right: -14%; animation-delay: 0.8s; }
.badge-bottom { bottom: 8%; left: 0%; animation-delay: 1.6s; }

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

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.4; transform: scaleY(1); transform-origin: top; }
  50%       { opacity: 1; transform: scaleY(0.5); transform-origin: bottom; }
}

/* ─── WHY SECTION ────────────────────────────────────────── */
.why-section {
  padding: var(--section-gap) 0;
  background: var(--ivory);
}

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

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  border: 1px solid rgba(212, 160, 23, 0.12);
  box-shadow: var(--shadow-card);
  transition: all var(--t-mid) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple-mid), var(--gold-bright));
  transform: scaleX(0);
  transition: transform var(--t-mid) var(--ease-out);
  transform-origin: left;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.why-card:hover::before { transform: scaleX(1); }

.why-icon { font-size: 2.2rem; margin-bottom: 18px; }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--purple-deep);
  margin-bottom: 12px;
}
.why-card p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; }

/* ─── MISSION SECTION ────────────────────────────────────── */
.mission-section {
  padding: var(--section-gap) 0;
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-rich) 100%);
  position: relative;
  overflow: hidden;
}
.mission-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 80% 50%, rgba(212, 160, 23, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.mission-card {
  padding: 48px 40px;
  text-align: center;
  background: rgba(255,255,255,0.06);
  border-color: rgba(212, 160, 23, 0.25);
}
.mission-icon-large { font-size: 3.5rem; margin-bottom: 24px; }
.mission-card blockquote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
  margin-bottom: 20px;
}
.mission-card cite {
  font-family: var(--font-label);
  font-size: 0.8rem;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  font-style: normal;
}

.mission-text .eyebrow { color: var(--gold-light); }
.mission-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}
.mission-text p {
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1rem;
}

/* ─── SCIENCE / INGREDIENTS ──────────────────────────────── */
.science-section {
  padding: var(--section-gap) 0;
  background: var(--cream);
}

.ingredients-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ingredient-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(212, 160, 23, 0.1);
  box-shadow: 0 4px 20px rgba(26, 10, 46, 0.06);
  transition: all var(--t-mid) var(--ease-out);
}
.ingredient-item:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 160, 23, 0.3);
  box-shadow: var(--shadow-gold);
}
.ingredient-icon { font-size: 2rem; margin-bottom: 14px; }
.ingredient-item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--purple-deep);
  margin-bottom: 6px;
}
.ingredient-dose {
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-rich);
  margin-bottom: 10px;
}
.ingredient-item p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ─── FEATURED PRODUCT SECTION ───────────────────────────── */
.featured-product-section {
  padding: var(--section-gap) 0;
  background: var(--ivory);
}

.product-detail-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  margin-bottom: 80px;
}

/* Gallery */
.gallery-main {
  background: linear-gradient(135deg, #f3eeff 0%, #e8ddf8 100%);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  margin-bottom: 16px;
  box-shadow: var(--shadow-purple);
}
.gallery-main-img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  transition: transform var(--t-slow) var(--ease-spring);
}
.gallery-main:hover .gallery-main-img { transform: scale(1.04) rotate(1deg); }

.gallery-thumbs { display: flex; gap: 12px; }
.gallery-thumb {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: var(--radius-md);
  background: #f3eeff;
  padding: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--t-fast) ease;
}
.gallery-thumb.active, .gallery-thumb:hover {
  border-color: var(--purple-mid);
  box-shadow: 0 4px 16px rgba(74, 26, 140, 0.2);
}

/* Product Info */
.product-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.badge-tag {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--purple-mid);
  background: rgba(74, 26, 140, 0.08);
  border: 1px solid rgba(74, 26, 140, 0.2);
  padding: 5px 14px;
  border-radius: 50px;
}

.product-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--purple-deep);
  line-height: 1.1;
  margin-bottom: 8px;
}
.product-tagline {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold-rich);
  margin-bottom: 20px;
}
.product-desc {
  color: var(--text-mid);
  line-height: 1.78;
  margin-bottom: 28px;
  font-size: 0.98rem;
}

.product-benefits-list { margin-bottom: 28px; }
.benefit-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(212, 160, 23, 0.1);
  font-size: 0.95rem;
  color: var(--text-dark);
}
.benefit-row:last-child { border-bottom: none; }
.benefit-check {
  color: var(--gold-bright);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.product-pack-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  margin-bottom: 28px;
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.product-pack-info span:nth-child(even) { color: var(--border-subtle); }

.product-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Ingredient Table */
.ingredient-breakdown {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-card);
  margin-bottom: 48px;
  border: 1px solid var(--border-subtle);
}

.breakdown-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--purple-deep);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid linear-gradient(90deg, var(--purple-mid), var(--gold-bright));
  position: relative;
}
.breakdown-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--purple-mid), var(--gold-bright));
}

.ingredient-table { display: flex; flex-direction: column; gap: 0; }
.ingredient-row {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(212, 160, 23, 0.08);
  font-size: 0.93rem;
  align-items: center;
}
.ingredient-row:last-child { border-bottom: none; }
.header-row {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  padding-bottom: 12px;
}
.dose-amount {
  font-family: var(--font-label);
  font-weight: 700;
  color: var(--purple-mid);
  font-size: 0.9rem;
}

/* Directions */
.directions-section {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-rich) 100%);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  margin-bottom: 48px;
}
.directions-section .breakdown-title { color: var(--white); }
.directions-section .breakdown-title::after { background: linear-gradient(90deg, var(--gold-light), var(--gold-shimmer)); }

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

.step-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all var(--t-mid) ease;
}
.step-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }

.step-num {
  position: absolute;
  top: -12px;
  left: 24px;
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-bright);
  background: var(--purple-rich);
  border: 1px solid rgba(212, 160, 23, 0.3);
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.1em;
}
.step-icon { font-size: 2rem; margin-bottom: 14px; }
.step-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.step-card p { font-size: 0.86rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* FAQ */
.faq-section { margin-bottom: 32px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid rgba(212, 160, 23, 0.12);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  font-family: var(--font-label);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--purple-deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--t-fast) ease;
}
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold-bright);
  transition: transform var(--t-mid) var(--ease-out);
  flex-shrink: 0;
}
.faq-q[aria-expanded="true"] { color: var(--purple-mid); }
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-mid) var(--ease-out), padding var(--t-mid) ease;
}
.faq-a.open { max-height: 300px; padding-bottom: 20px; }
.faq-a p { font-size: 0.94rem; color: var(--text-mid); line-height: 1.75; }

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonials-section {
  padding: var(--section-gap) 0;
  background: var(--cream);
}

.testimonials-slider { position: relative; min-height: 220px; }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 52px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  display: none;
  animation: fadeSlide 0.4s var(--ease-out) both;
}
.testimonial-card.active { display: block; }

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.stars { font-size: 1.1rem; color: var(--gold-bright); letter-spacing: 3px; margin-bottom: 20px; }
.testimonial-card > p {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 28px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 16px;
}
.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-soft));
  color: var(--white);
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 0.95rem; color: var(--purple-deep); margin-bottom: 2px; }
.reviewer span { font-size: 0.82rem; color: var(--text-light); }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(74, 26, 140, 0.2);
  transition: all var(--t-mid) ease;
  cursor: pointer;
}
.dot.active {
  width: 28px;
  border-radius: 50px;
  background: var(--purple-mid);
}

/* ─── TRUST SECTION ──────────────────────────────────────── */
.trust-section {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 12px;
  border-radius: var(--radius-md);
  transition: background var(--t-fast) ease;
}
.trust-badge:hover { background: var(--cream); }
.trust-icon { font-size: 1.8rem; margin-bottom: 10px; }
.trust-badge strong { display: block; font-size: 0.86rem; color: var(--purple-deep); font-family: var(--font-label); font-weight: 600; margin-bottom: 4px; }
.trust-badge span { font-size: 0.77rem; color: var(--text-light); }

/* ─── NEWSLETTER ─────────────────────────────────────────── */
.newsletter-section {
  padding: var(--section-gap) 0;
  background: var(--ivory);
}

.newsletter-card {
  padding: 64px 80px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(74, 26, 140, 0.04) 0%, rgba(212, 160, 23, 0.04) 100%);
  border-color: rgba(212, 160, 23, 0.2);
}
.newsletter-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--purple-deep);
  margin-bottom: 12px;
}
.newsletter-card p {
  color: var(--text-mid);
  margin-bottom: 32px;
  font-size: 1rem;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 16px;
}
.newsletter-input {
  flex: 1;
  padding: 15px 22px;
  border: 1.5px solid rgba(212, 160, 23, 0.25);
  border-radius: 50px;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--t-fast) ease;
}
.newsletter-input:focus { border-color: var(--purple-mid); }
.newsletter-input::placeholder { color: var(--text-light); }
.newsletter-fine { font-size: 0.78rem; color: var(--text-light); }

/* ─── FOOTER CTA ─────────────────────────────────────────── */
.footer-cta-section {
  background: linear-gradient(135deg, var(--purple-deep) 0%, #2d1054 50%, #1a0a2e 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.footer-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(157, 111, 232, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.footer-cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.footer-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-cta-inner p {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  margin-bottom: 40px;
}
.footer-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── WELLNESS / ASSESSMENT SECTION ─────────────────────── */
.wellness-section {
  padding: var(--section-gap) 0;
  background: var(--cream);
  position: relative;
}

/* Assessment Modal */
.assessment-modal {
  position: fixed;
  inset: 0;
  background: rgba(26, 10, 46, 0.85);
  backdrop-filter: blur(16px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-mid) ease;
}
.assessment-modal.open {
  opacity: 1;
  pointer-events: all;
}

.assessment-inner {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 32px 96px rgba(0,0,0,0.35);
  transform: scale(0.95) translateY(16px);
  transition: transform var(--t-mid) var(--ease-spring);
}
.assessment-modal.open .assessment-inner {
  transform: scale(1) translateY(0);
}

.assessment-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--text-mid);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast) ease;
}
.assessment-close:hover { background: var(--purple-mid); color: var(--white); }

/* Progress */
.assessment-progress { margin-bottom: 40px; }
.progress-bar-wrap {
  height: 4px;
  background: rgba(74, 26, 140, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 10px;
}
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--purple-mid), var(--gold-bright));
  border-radius: 2px;
  transition: width 0.5s var(--ease-out);
}
.progress-label {
  font-family: var(--font-label);
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
}

/* Question */
.question-block { animation: qFade 0.35s var(--ease-out) both; }
@keyframes qFade {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.question-eyebrow {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 10px;
  display: block;
}
.question-text {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--purple-deep);
  line-height: 1.25;
  margin-bottom: 32px;
}

.answer-options { display: flex; flex-direction: column; gap: 12px; }

.answer-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border: 1.5px solid rgba(74, 26, 140, 0.12);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--t-fast) ease;
  font-size: 0.96rem;
  color: var(--text-dark);
  background: var(--cream);
}
.answer-option:hover {
  border-color: var(--purple-soft);
  background: rgba(74, 26, 140, 0.04);
}
.answer-option.selected {
  border-color: var(--purple-mid);
  background: rgba(74, 26, 140, 0.07);
  color: var(--purple-mid);
  font-weight: 600;
}
.answer-option input[type="radio"],
.answer-option input[type="checkbox"] { display: none; }

.option-bullet {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(74, 26, 140, 0.25);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast) ease;
}
.answer-option.selected .option-bullet {
  background: var(--purple-mid);
  border-color: var(--purple-mid);
}
.answer-option.selected .option-bullet::after {
  content: '✓';
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
}

/* Range input */
.range-wrap { padding: 8px 0; }
.assessment-range {
  width: 100%;
  appearance: none;
  height: 4px;
  background: linear-gradient(90deg, var(--purple-mid) 0%, rgba(74,26,140,0.15) 0%);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  margin-bottom: 12px;
}
.assessment-range::-webkit-slider-thumb {
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--purple-mid);
  box-shadow: 0 2px 12px rgba(74,26,140,0.4);
  cursor: pointer;
}
.range-labels { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--text-light); }
.range-value {
  text-align: center;
  font-family: var(--font-label);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--purple-mid);
}

.assessment-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
}

/* ─── RECOMMENDATION SCREEN ──────────────────────────────── */
.recommendation-screen {
  position: fixed;
  inset: 0;
  background: rgba(26, 10, 46, 0.9);
  backdrop-filter: blur(20px);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-mid) ease;
  overflow-y: auto;
}
.recommendation-screen.open {
  opacity: 1;
  pointer-events: all;
}

.recommendation-inner {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  max-width: 880px;
  width: 100%;
  position: relative;
  box-shadow: 0 32px 96px rgba(0,0,0,0.4);
  transform: scale(0.96);
  transition: transform var(--t-mid) var(--ease-spring);
}
.recommendation-screen.open .recommendation-inner { transform: scale(1); }

.rec-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--text-mid);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast) ease;
}
.rec-close:hover { background: var(--purple-mid); color: var(--white); }

.rec-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-subtle);
}

.wellness-score-wrap {}
.wellness-score {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-soft));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(74,26,140,0.35);
}
.score-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.score-label {
  font-family: var(--font-label);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}

.rec-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: start;
}

.rec-product-img-wrap {
  background: linear-gradient(135deg, #f3eeff 0%, #e8ddf8 100%);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rec-product-img { width: 100%; object-fit: contain; }

.rec-label {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
  display: block;
  margin-bottom: 8px;
  margin-top: 12px;
}
.rec-product-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--purple-deep);
  margin-bottom: 12px;
}
.rec-reason { color: var(--text-mid); line-height: 1.7; font-size: 0.96rem; margin-bottom: 24px; }

.rec-benefits, .rec-usage {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 16px;
}
.rec-benefits h4, .rec-usage h4 {
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-mid);
  margin-bottom: 12px;
}
.rec-benefits ul { display: flex; flex-direction: column; gap: 8px; }
.rec-benefits li {
  font-size: 0.9rem;
  color: var(--text-dark);
  padding-left: 18px;
  position: relative;
}
.rec-benefits li::before { content: '✦'; position: absolute; left: 0; color: var(--gold-bright); font-size: 0.7rem; top: 2px; }
.rec-usage p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }

.rec-ctas { display: flex; gap: 12px; margin-top: 20px; }

/* ─── SHOP SECTION ───────────────────────────────────────── */
.shop-section {
  padding: var(--section-gap) 0;
  background: var(--ivory);
}

.shop-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.search-wrap {
  position: relative;
  flex: 1;
  max-width: 360px;
}
.shop-search {
  width: 100%;
  padding: 13px 20px 13px 48px;
  border: 1.5px solid rgba(212, 160, 23, 0.2);
  border-radius: 50px;
  font-size: 0.92rem;
  outline: none;
  background: var(--white);
  color: var(--text-dark);
  transition: border-color var(--t-fast) ease;
}
.shop-search:focus { border-color: var(--purple-mid); }
.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.85rem;
  pointer-events: none;
}

.filter-tabs { display: flex; gap: 8px; }
.filter-tab {
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  background: var(--white);
  border: 1.5px solid rgba(212,160,23,0.15);
  transition: all var(--t-fast) ease;
}
.filter-tab.active, .filter-tab:hover {
  background: var(--purple-mid);
  color: var(--white);
  border-color: var(--purple-mid);
}

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

.shop-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(212, 160, 23, 0.1);
  box-shadow: var(--shadow-card);
  transition: all var(--t-mid) var(--ease-out);
}
.shop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.shop-card-img-wrap {
  position: relative;
  background: linear-gradient(135deg, #f3eeff 0%, #e8ddf8 100%);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
}
.shop-card-img { width: 80%; object-fit: contain; }
.wishlist-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-light);
  transition: all var(--t-fast) ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.wishlist-btn:hover, .wishlist-btn.active { color: #e8366b; }
.shop-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--gold-rich), var(--gold-bright));
  color: var(--white);
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 50px;
}

.coming-soon-img {
  background: linear-gradient(135deg, #f0f0f0 0%, #e5e5e5 100%);
  align-items: center;
  justify-content: center;
}
.coming-soon-text {
  font-family: var(--font-label);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.shop-card-info { padding: 28px 28px 32px; }
.shop-card-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--purple-deep);
  margin-bottom: 6px;
}
.shop-card-sub { font-size: 0.84rem; color: var(--text-light); margin-bottom: 10px; }
.shop-rating {
  font-size: 0.88rem;
  color: var(--gold-bright);
  margin-bottom: 14px;
}
.shop-rating span { color: var(--text-light); font-size: 0.8rem; }

.shop-price-wrap { margin-bottom: 20px; }
.shop-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--purple-deep);
}
.shop-price-note { font-size: 0.8rem; color: var(--text-light); display: block; margin-top: 2px; }

.shop-card-ctas { display: flex; gap: 10px; }

/* ─── CONTACT SECTION ────────────────────────────────────── */
.contact-section {
  padding: var(--section-gap) 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-mid);
  text-transform: uppercase;
}
.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid rgba(212, 160, 23, 0.2);
  border-radius: var(--radius-md);
  font-size: 0.94rem;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--t-fast) ease, box-shadow var(--t-fast) ease;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--purple-mid);
  box-shadow: 0 0 0 3px rgba(74, 26, 140, 0.08);
}

.contact-info-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  background: rgba(74, 26, 140, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-item strong {
  display: block;
  font-family: var(--font-label);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-info-item a,
.contact-info-item span {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.55;
}
.contact-info-item a:hover { color: var(--purple-mid); }

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius-md);
  font-family: var(--font-label);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--t-mid) ease;
  text-decoration: none;
}
.btn-whatsapp:hover { background: #1ebe5c; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }

.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(74, 26, 140, 0.08);
  border: 1px solid rgba(74, 26, 140, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-mid);
  transition: all var(--t-fast) ease;
}
.social-link:hover {
  background: var(--purple-mid);
  color: var(--white);
  transform: translateY(-2px);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer { background: var(--purple-deep); }

.footer-top { padding: 72px 0 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-top-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo { height: 40px; width: auto; object-fit: contain; margin-bottom: 18px; background: white; border-radius: 6px; padding: 3px 8px; }
.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social .social-link {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
}
.footer-social .social-link:hover { background: var(--gold-rich); color: var(--white); border-color: var(--gold-rich); }

.footer-links-col h4 {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--t-fast) ease;
}
.footer-links-col a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  padding: 24px 0;
  background: rgba(0,0,0,0.2);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ─── TOAST ──────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--purple-deep);
  color: var(--white);
  padding: 16px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-label);
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  border-left: 3px solid var(--gold-bright);
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.35s var(--ease-out);
  z-index: 9999;
  pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ─── CART SIDEBAR ───────────────────────────────────────── */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 380px;
  background: var(--white);
  box-shadow: -8px 0 48px rgba(0,0,0,0.15);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--t-mid) var(--ease-out);
}
.cart-sidebar.open { transform: translateX(0); }

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,10,46,0.5);
  z-index: 2999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-mid) ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border-subtle);
}
.cart-header h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--purple-deep);
}
.cart-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--text-mid);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast) ease;
}
.cart-close:hover { background: var(--purple-mid); color: var(--white); }

.cart-items { flex: 1; overflow-y: auto; padding: 24px 28px; }
.cart-empty {
  text-align: center;
  color: var(--text-light);
  font-size: 0.92rem;
  padding: 40px 0;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.cart-item-img {
  width: 70px;
  height: 70px;
  background: #f3eeff;
  border-radius: var(--radius-md);
  padding: 8px;
  object-fit: contain;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-name {
  font-family: var(--font-label);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--purple-deep);
  margin-bottom: 4px;
}
.cart-item-sub { font-size: 0.8rem; color: var(--text-light); margin-bottom: 8px; }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}
.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--text-dark);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast) ease;
}
.qty-btn:hover { background: var(--purple-mid); color: var(--white); }
.qty-num { font-family: var(--font-label); font-size: 0.9rem; font-weight: 600; min-width: 20px; text-align: center; }

.cart-footer {
  padding: 24px 28px;
  border-top: 1px solid var(--border-subtle);
}
.cart-total {
  font-family: var(--font-label);
  font-size: 1rem;
  font-weight: 600;
  color: var(--purple-deep);
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
}
.cart-total span { color: var(--purple-mid); font-size: 1.2rem; }

/* ─── AOS (SCROLL ANIMATIONS) ────────────────────────────── */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="480"] { transition-delay: 0.48s; }
[data-delay="560"] { transition-delay: 0.56s; }
[data-delay="80"]  { transition-delay: 0.08s; }
[data-delay="160"] { transition-delay: 0.16s; }
[data-delay="240"] { transition-delay: 0.24s; }
[data-delay="320"] { transition-delay: 0.32s; }
[data-delay="0"]   { transition-delay: 0s; }

[data-aos="fade-right"] { transform: translateX(-28px); }
[data-aos="fade-right"].aos-visible { transform: translateX(0); }
[data-aos="fade-left"]  { transform: translateX(28px); }
[data-aos="fade-left"].aos-visible  { transform: translateX(0); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .ingredients-showcase { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .directions-steps { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .rec-content { grid-template-columns: 220px 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  :root { --section-gap: 80px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-sub { margin: 0 auto 40px; }
  .hero-product { order: -1; }
  .product-float-wrap { width: 300px; }
  .badge-top { left: -4%; }
  .badge-right { right: -4%; }
  .badge-bottom { left: 10%; }
  .mission-inner { grid-template-columns: 1fr; gap: 40px; }
  .product-detail-wrap { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .ingredient-breakdown { padding: 32px 24px; }
  .assessment-inner { padding: 40px 32px; }
  .recommendation-inner { padding: 40px 32px; }
  .rec-content { grid-template-columns: 1fr; }
  .rec-header { flex-direction: column; gap: 20px; align-items: flex-start; }
  .newsletter-card { padding: 40px 32px; }
}

@media (max-width: 680px) {
  :root { --section-gap: 64px; }
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-card { padding: 28px 24px; }
  .ingredients-showcase { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .directions-steps { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .hero-section { padding: 90px 20px 60px; }
  .ingredient-row { grid-template-columns: 1fr 1fr; }
  .header-row span:last-child, .ingredient-row span:last-child { display: none; }
  .ingredient-row { grid-template-columns: 2fr 1fr; }
  .assessment-inner { padding: 32px 20px; }
  .newsletter-form { flex-direction: column; }
  .testimonial-card { padding: 32px 24px; }
  .cart-sidebar { width: 100%; }
  .shop-controls { flex-direction: column; align-items: stretch; }
  .search-wrap { max-width: 100%; }
}

@media (max-width: 420px) {
  .hero-headline { font-size: 2.6rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary, .hero-ctas .btn-outline { text-align: center; justify-content: center; }
  .footer-cta-btns { flex-direction: column; }
}

/* ─── WELLNESS HERO SECTION (Doctor + CTA) ───────────────── */
.wellness-section {
  padding: var(--section-gap) 0;
  background: linear-gradient(135deg, var(--purple-deep) 0%, #2d1054 100%);
  position: relative;
  overflow: hidden;
}
.wellness-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 30% 50%, rgba(157,111,232,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.wellness-hero-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.wellness-hero-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212,160,23,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Doctor */
.wellness-doctor-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.doctor-glow-ring {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157,111,232,0.3) 0%, rgba(212,160,23,0.1) 50%, transparent 70%);
  animation: doctorGlow 4s ease-in-out infinite;
}
@keyframes doctorGlow {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50%       { opacity: 1;   transform: translateX(-50%) scale(1.06); }
}

.doctor-img {
  width: 340px;
  max-width: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
  animation: doctorFloat 5s ease-in-out infinite;
}
@keyframes doctorFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.doctor-badge {
  position: absolute;
  bottom: 20px;
  right: -10px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(212,160,23,0.4);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: badgePulse 3s ease-in-out infinite;
}
.doctor-badge-icon { font-size: 1.6rem; }
.doctor-badge strong {
  display: block;
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}
.doctor-badge span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
}

/* Content */
.wellness-hero-content .eyebrow { color: var(--gold-light); }

.wellness-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
}

.wellness-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  margin-bottom: 32px;
}
.wellness-hero-sub strong { color: var(--gold-light); font-weight: 600; }

/* Steps */
.wellness-steps {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.wellness-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}
.wstep-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-rich), var(--gold-bright));
  color: var(--purple-deep);
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* BIG START BUTTON */
.wellness-cta-wrap { display: flex; flex-direction: column; gap: 14px; }

.btn-wellness-start {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 32px;
  background: linear-gradient(135deg, var(--gold-rich) 0%, var(--gold-bright) 50%, var(--gold-light) 100%);
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--t-mid) var(--ease-out);
  box-shadow: 0 8px 40px rgba(212,160,23,0.45), 0 2px 8px rgba(0,0,0,0.2);
  width: 100%;
  text-align: left;
}
.btn-wellness-start::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 60%);
  pointer-events: none;
}
/* Pulsing glow animation to grab attention */
.btn-wellness-start::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-lg) + 3px);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-bright));
  z-index: -1;
  animation: btnPulseGlow 2s ease-in-out infinite;
}
@keyframes btnPulseGlow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.02); }
}
.btn-wellness-start:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 56px rgba(212,160,23,0.6), 0 4px 16px rgba(0,0,0,0.2);
}
.btn-wellness-start:active { transform: translateY(-1px); }

.btn-wellness-icon {
  font-size: 2rem;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}
.btn-wellness-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.btn-wellness-text strong {
  font-family: var(--font-label);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--purple-deep);
  letter-spacing: 0.02em;
}
.btn-wellness-text small {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(26,10,46,0.65);
  font-weight: 400;
}
.btn-wellness-arrow {
  font-size: 1.4rem;
  color: var(--purple-deep);
  font-weight: 700;
  flex-shrink: 0;
  transition: transform var(--t-fast) ease;
}
.btn-wellness-start:hover .btn-wellness-arrow { transform: translateX(5px); }

.wellness-cta-note {
  font-family: var(--font-label);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  text-align: center;
}

/* Responsive */
@media (max-width: 1000px) {
  .wellness-hero-card {
    grid-template-columns: 300px 1fr;
    gap: 40px;
    padding: 40px 36px;
  }
  .doctor-img { width: 260px; }
}
@media (max-width: 768px) {
  .wellness-hero-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
    padding: 36px 24px;
  }
  .wellness-doctor-wrap { justify-content: center; }
  .doctor-img { width: 220px; }
  .doctor-badge { right: 10px; bottom: 10px; }
  .wellness-steps { justify-content: center; }
  .btn-wellness-start { padding: 18px 24px; }
  .wellness-hero-card::before { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   UONE EXTENSIONS — FlexCore · Hero Slider · Theme Switcher
   All new additions below. Original styles preserved above.
   ═══════════════════════════════════════════════════════════ */

/* ─── SAGE GREEN THEME ───────────────────────────────────── */
body.theme-sage {
  --purple-deep:    #0f2918;
  --purple-rich:    #1a3d28;
  --purple-mid:     #2d6a4f;
  --purple-soft:    #4a9470;
  --purple-glow:    #74c69d;
  --purple-light:   #b7e4c7;
  --gold-bright:    #b5830a;
  --gold-rich:      #9a6f08;
  --gold-light:     #d4a017;
  --gold-shimmer:   #f0c84a;
  --gold-pale:      #fdf3c0;
  --text-dark:      #0f2918;
  --text-mid:       #2d4a38;
  --border-subtle:  rgba(45, 106, 79, 0.2);
  --shadow-card:    0 8px 40px rgba(15, 41, 24, 0.12);
  --shadow-purple:  0 8px 48px rgba(45, 106, 79, 0.3);
  --shadow-hover:   0 16px 64px rgba(45, 106, 79, 0.22);
}

body.theme-sage .hero-section {
  background: linear-gradient(135deg, #0f2918 0%, #1a3d28 40%, #2d5a3d 70%, #163320 100%);
}
body.theme-sage .mission-section {
  background: linear-gradient(135deg, #0f2918 0%, #1a3d28 100%);
}
body.theme-sage .wellness-section {
  background: linear-gradient(135deg, #0f2918 0%, #1a3d28 100%);
}
body.theme-sage .footer-cta-section {
  background: linear-gradient(135deg, #0f2918 0%, #1a3d28 50%, #0a1f12 100%);
}
body.theme-sage .site-footer { background: #0a1f12; }
body.theme-sage .btn-primary {
  background: linear-gradient(135deg, #2d6a4f 0%, #4a9470 100%);
  box-shadow: 0 6px 28px rgba(45, 106, 79, 0.35);
}
body.theme-sage .btn-primary:hover {
  background: linear-gradient(135deg, #4a9470 0%, #74c69d 100%);
  box-shadow: 0 12px 40px rgba(45, 106, 79, 0.45);
}
body.theme-sage .btn-outline {
  border-color: #2d6a4f;
  color: #2d6a4f;
}
body.theme-sage .btn-outline:hover {
  background: #2d6a4f;
  color: var(--white);
}
body.theme-sage .hero-slide[data-slide="0"] .product-glow-ring {
  background: radial-gradient(ellipse at center, rgba(116,198,157,0.3) 0%, transparent 70%);
}
body.theme-sage .gallery-main {
  background: linear-gradient(135deg, #e8f5ee 0%, #d1eddb 100%);
}
body.theme-sage .gallery-thumb { background: #e8f5ee; }
body.theme-sage .gallery-thumb.active,
body.theme-sage .gallery-thumb:hover { border-color: #2d6a4f; }
body.theme-sage .dot.active { background: #2d6a4f; }
body.theme-sage .progress-bar-fill {
  background: linear-gradient(90deg, #2d6a4f, #b5830a);
}
body.theme-sage .reviewer-avatar {
  background: linear-gradient(135deg, #2d6a4f, #4a9470);
}
body.theme-sage .answer-option.selected {
  border-color: #2d6a4f;
  background: rgba(45,106,79,0.07);
  color: #2d6a4f;
}
body.theme-sage .answer-option.selected .option-bullet {
  background: #2d6a4f;
  border-color: #2d6a4f;
}
body.theme-sage .wellness-score {
  background: linear-gradient(135deg, #2d6a4f, #4a9470);
}
body.theme-sage .filter-tab.active,
body.theme-sage .filter-tab:hover {
  background: #2d6a4f;
  border-color: #2d6a4f;
}
body.theme-sage .badge-tag { color: #2d6a4f; background: rgba(45,106,79,0.08); border-color: rgba(45,106,79,0.2); }
body.theme-sage .toast { border-left-color: #b5830a; }
body.theme-sage .why-card::before { background: linear-gradient(90deg, #2d6a4f, #b5830a); }
body.theme-sage .breakdown-title::after { background: linear-gradient(90deg, #2d6a4f, #b5830a); }
body.theme-sage .rec-product-img-wrap { background: linear-gradient(135deg, #e8f5ee 0%, #d1eddb 100%); }
body.theme-sage .shop-card-img-wrap { background: linear-gradient(135deg, #e8f5ee 0%, #d1eddb 100%); }
body.theme-sage .flexcore-gallery-main { background: linear-gradient(135deg, #e8f5ee 0%, #d1eddb 100%) !important; }

/* ─── DETOX GREEN & GOLD THEME ───────────────────────────── */
body.theme-detox {
  --purple-deep:    #0a1f12;
  --purple-rich:    #123a20;
  --purple-mid:     #1e5c34;
  --purple-soft:    #3a8a55;
  --purple-glow:    #6fbf87;
  --purple-light:   #b9e4c4;
  --gold-bright:    #c9a034;
  --gold-rich:      #a3801f;
  --gold-light:     #e0b940;
  --gold-shimmer:   #f2d571;
  --gold-pale:      #fbf0cf;
  --text-dark:      #0a1f12;
  --text-mid:       #2a4432;
  --border-subtle:  rgba(30, 92, 52, 0.2);
  --shadow-card:    0 8px 40px rgba(10, 31, 18, 0.14);
  --shadow-purple:  0 8px 48px rgba(30, 92, 52, 0.3);
  --shadow-hover:   0 16px 64px rgba(30, 92, 52, 0.22);
}

body.theme-detox .hero-section {
  background: linear-gradient(135deg, #0a1f12 0%, #123a20 40%, #1c4c2c 70%, #081a0f 100%);
}
body.theme-detox .mission-section {
  background: linear-gradient(135deg, #0a1f12 0%, #123a20 100%);
}
body.theme-detox .wellness-section {
  background: linear-gradient(135deg, #0a1f12 0%, #123a20 100%);
}
body.theme-detox .footer-cta-section {
  background: linear-gradient(135deg, #0a1f12 0%, #123a20 50%, #061308 100%);
}
body.theme-detox .site-footer { background: #061308; }
body.theme-detox .btn-primary {
  background: linear-gradient(135deg, #1e5c34 0%, #3a8a55 100%);
  box-shadow: 0 6px 28px rgba(30, 92, 52, 0.35);
}
body.theme-detox .btn-primary:hover {
  background: linear-gradient(135deg, #3a8a55 0%, #6fbf87 100%);
  box-shadow: 0 12px 40px rgba(30, 92, 52, 0.45);
}
body.theme-detox .btn-outline {
  border-color: #1e5c34;
  color: #1e5c34;
}
body.theme-detox .btn-outline:hover {
  background: #1e5c34;
  color: var(--white);
}
body.theme-detox .gallery-main {
  background: linear-gradient(135deg, #e4f0e6 0%, #cde6d2 100%);
}
body.theme-detox .gallery-thumb { background: #e4f0e6; }
body.theme-detox .gallery-thumb.active,
body.theme-detox .gallery-thumb:hover { border-color: #1e5c34; }
body.theme-detox .dot.active { background: #1e5c34; }
body.theme-detox .progress-bar-fill {
  background: linear-gradient(90deg, #1e5c34, #c9a034);
}
body.theme-detox .reviewer-avatar {
  background: linear-gradient(135deg, #1e5c34, #3a8a55);
}
body.theme-detox .answer-option.selected {
  border-color: #1e5c34;
  background: rgba(30,92,52,0.07);
  color: #1e5c34;
}
body.theme-detox .answer-option.selected .option-bullet {
  background: #1e5c34;
  border-color: #1e5c34;
}
body.theme-detox .wellness-score {
  background: linear-gradient(135deg, #1e5c34, #3a8a55);
}
body.theme-detox .filter-tab.active,
body.theme-detox .filter-tab:hover {
  background: #1e5c34;
  border-color: #1e5c34;
}
body.theme-detox .badge-tag { color: #1e5c34; background: rgba(30,92,52,0.08); border-color: rgba(30,92,52,0.2); }
body.theme-detox .toast { border-left-color: #c9a034; }
body.theme-detox .why-card::before { background: linear-gradient(90deg, #1e5c34, #c9a034); }
body.theme-detox .breakdown-title::after { background: linear-gradient(90deg, #1e5c34, #c9a034); }
body.theme-detox .rec-product-img-wrap { background: linear-gradient(135deg, #e4f0e6 0%, #cde6d2 100%); }
body.theme-detox .shop-card-img-wrap { background: linear-gradient(135deg, #e4f0e6 0%, #cde6d2 100%); }
body.theme-detox .detox-gallery-main { background: linear-gradient(135deg, #e4f0e6 0%, #cde6d2 100%) !important; }
body.theme-detox .npi-dot { background: #6fbf87; }
body.theme-detox .navbar.scrolled {
  background: rgba(10, 31, 18, 0.96);
  border-bottom-color: rgba(30, 92, 52, 0.25);
}
body.theme-detox .nav-link.active { color: #e0b940; }
body.theme-detox ::-webkit-scrollbar-thumb { background: rgba(30,92,52,0.2); }
body.theme-detox ::-webkit-scrollbar-thumb:hover { background: #1e5c34; }

/* ─── NAV PRODUCT INDICATOR ──────────────────────────────── */
.nav-product-indicator {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  transition: all 0.5s var(--ease-out);
}
.npi-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  flex-shrink: 0;
  animation: npiPulse 2s ease-in-out infinite;
  transition: background 0.5s var(--ease-out);
}
body.theme-sage .npi-dot { background: #74c69d; }
@keyframes npiPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.3); }
}
@media (max-width: 900px) {
  .nav-product-indicator { display: none; }
}


.btn-theme-toggle {
  display: none !important;
}

.mobile-theme-toggle {
  display: none !important;
}

/* ─── SMOOTH GLOBAL THEME TRANSITION ─────────────────────── */
body {
  transition:
    background-color 0.6s var(--ease-out),
    color 0.6s var(--ease-out);
}

/* Navbar dynamic theming: purple default (scrolled state) */
.navbar.scrolled {
  background: rgba(26, 10, 46, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(212, 160, 23, 0.15);
  box-shadow: 0 4px 32px rgba(0,0,0,0.2);
  transition: background 0.6s var(--ease-out), border-color 0.6s var(--ease-out);
}
/* Navbar sage state */
body.theme-sage .navbar.scrolled {
  background: rgba(15, 41, 24, 0.96);
  border-bottom-color: rgba(45, 106, 79, 0.25);
}

/* ─── HERO SLIDER ────────────────────────────────────────── */
.hero-slider-section {
  padding: 0;
  min-height: 100vh;
  position: relative;
}
.hero-slides-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  /* Desktop: static container; Mobile: overridden to flex track */
}
.hero-slide {
  position: absolute;
  inset: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 32px 80px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s var(--ease-out);
  overflow: hidden;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: all;
  position: relative;
}

/* ── MOBILE CAROUSEL OVERRIDE ─────────────────────────────
   On mobile we switch to a flex-row track so slides move
   horizontally via translateX — NO vertical stacking. */
@media (max-width: 900px) {
  .hero-slider-section {
    overflow: hidden;   /* Clips the track */
    position: relative;
    min-height: 100svh;
    min-height: 100vh;
  }

  /* The container becomes the scrollable track */
  .hero-slides-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: 100svh;
    min-height: 100vh;
    position: relative;
    /* JS sets transform: translateX(-N*100%) */
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
  }

  /* Every slide is a rigid full-width flex child — NO absolute */
  .hero-slide {
    flex: 0 0 100%;
    width: 100%;
    min-height: 100svh;
    min-height: 100vh;
    position: relative;  /* Overrides desktop position:absolute */
    opacity: 1;           /* Opacity no longer hides slides — position does */
    pointer-events: none;
    padding: 88px 20px 130px;
    display: flex;
    align-items: center;
    transition: none;     /* No per-slide transition; track handles it */
    overflow: hidden;
  }

  /* Active slide gets interaction */
  .hero-slide.active {
    opacity: 1;
    pointer-events: all;
    position: relative;   /* Already set above, but override desktop rule */
  }

  /* Hero inner: single column, product image first */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
    align-items: center;
    width: 100%;
    padding-bottom: 20px;
  }

  .hero-product { order: -1; }
  .hero-ctas    { justify-content: center; flex-wrap: wrap; gap: 12px; }
  .hero-trust   { justify-content: center; flex-wrap: wrap; gap: 10px; }
  .hero-sub     { margin: 0 auto 24px; max-width: 100%; font-size: 0.97rem; }

  .product-float-wrap {
    width: 220px;
    margin: 0 auto;
  }
  .hero-headline { font-size: clamp(2.2rem, 7.5vw, 3rem); }

  /* Badges: pull inside slide boundaries */
  .badge-top    { top: 3%;  left:  1%; font-size: 0.64rem; padding: 5px 10px; }
  .badge-right  { top: 36%; right: 1%; font-size: 0.64rem; padding: 5px 10px; }
  .badge-bottom { bottom: 3%; left: 3%; font-size: 0.64rem; padding: 5px 10px; }

  /* Slider controls: absolute inside the section */
  .hero-slider-controls {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    gap: 10px;
  }

  .hero-scroll-hint { display: none; }
}

@media (max-width: 480px) {
  .hero-slide { padding: 78px 14px 120px; }
  .product-float-wrap { width: 190px; }
  .hero-headline { font-size: 2.1rem; }
  .hero-eyebrow { font-size: 0.62rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline { text-align: center; justify-content: center; width: 100%; }
  .hero-trust { flex-direction: column; align-items: center; gap: 6px; }
  .badge-right { display: none; }  /* Prevent overflow on tiny screens */
}

/* Slide 1 BG */
.hero-slide[data-slide="0"] {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-rich) 40%, #3d1570 70%, #220a42 100%);
}
/* Slide 2 BG */
.hero-slide[data-slide="1"] {
  background: linear-gradient(135deg, #0f2918 0%, #1a3d28 35%, #24533a 65%, #162e1f 100%);
}
body.theme-sage .hero-slide[data-slide="0"] {
  background: linear-gradient(135deg, #0f2918 0%, #1a3d28 40%, #2d5a3d 70%, #163320 100%);
}
body.theme-sage .hero-slide[data-slide="1"] {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-rich) 40%, #3d1570 70%, #220a42 100%);
}

.detox-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(111,191,135,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,160,52,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.hero-headline-detox {
  /* "Cleanse. / Rebalance. Revive." is longer than the other headlines —
     a slightly smaller clamp keeps it to exactly 2 lines at all widths
     so the slide never grows taller than the fullscreen hero. */
  font-size: clamp(2.4rem, 4.8vw, 4.4rem);
}
.hero-headline-detox em {
  background: linear-gradient(90deg, #6fbf87, #a3d9b1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.detox-ring {
  background: radial-gradient(ellipse at center, rgba(111,191,135,0.25) 0%, transparent 70%) !important;
}

.detox-img {
  filter: drop-shadow(0 20px 60px rgba(10,31,18,0.5)) !important;
}

.detox-badge {
  border-color: rgba(111,191,135,0.5) !important;
  color: #6fbf87 !important;
}

.flexcore-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(116,198,157,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(181,131,10,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-headline-flexcore em {
  background: linear-gradient(90deg, #74c69d, #95d5b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.flexcore-ring {
  background: radial-gradient(ellipse at center, rgba(116,198,157,0.25) 0%, transparent 70%) !important;
}

.flexcore-img {
  filter: drop-shadow(0 20px 60px rgba(45,106,79,0.4)) !important;
}

.flexcore-badge {
  border-color: rgba(116,198,157,0.5) !important;
  color: #74c69d !important;
}

/* Slider Controls */
.hero-slider-controls {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
}
.hero-slide-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t-fast) ease;
}
.hero-slide-btn:hover {
  background: rgba(255,255,255,0.22);
  color: var(--white);
}
.hero-slide-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all var(--t-mid) ease;
  border: none;
}
.hero-dot.active {
  width: 28px;
  border-radius: 50px;
  background: var(--gold-light);
}

/* ─── ALL PRODUCTS SECTION ───────────────────────────────── */
.all-products-section {
  padding: var(--section-gap) 0;
  background: var(--ivory);
}

/* Product Tabs */
.product-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  justify-content: center;
  flex-wrap: wrap;
}
.product-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-label);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  background: var(--white);
  border: 1.5px solid rgba(212,160,23,0.18);
  cursor: pointer;
  transition: all var(--t-mid) var(--ease-out);
  box-shadow: var(--shadow-card);
}
.product-tab:hover {
  border-color: var(--purple-mid);
  color: var(--purple-mid);
}
.product-tab.active {
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-soft));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 6px 28px rgba(74,26,140,0.3);
}
.tab-icon { font-size: 1rem; }

/* Product Panels */
.product-panel {
  display: none;
}
.product-panel.active {
  display: block;
  animation: panelFadeIn 0.45s var(--ease-out) both;
}
@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Product sub-brand */
.product-sub-brand {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

/* ─── FLEXCORE SPECIFIC STYLES ───────────────────────────── */
.flexcore-gallery-main {
  background: linear-gradient(135deg, #e8f5ee 0%, #d1eddb 100%) !important;
}
.flexcore-gallery-img {
  filter: drop-shadow(0 16px 40px rgba(45,106,79,0.3));
}

/* Sage-themed badges */
.badge-tag.sage {
  color: #2d6a4f;
  background: rgba(45,106,79,0.08);
  border-color: rgba(45,106,79,0.2);
}

/* Sage check */
.benefit-check.sage-check {
  color: #4a9470;
}

/* FlexCore Highlights strip */
.flexcore-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  padding: 16px;
  background: rgba(45,106,79,0.04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(45,106,79,0.12);
}
.flex-highlight {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-label);
  font-size: 0.76rem;
  font-weight: 600;
  color: #2d6a4f;
  letter-spacing: 0.04em;
}
.fh-icon { font-size: 1rem; }

/* Sage buttons */
.sage-btn {
  background: linear-gradient(135deg, #2d6a4f 0%, #4a9470 100%) !important;
  box-shadow: 0 6px 28px rgba(45,106,79,0.32) !important;
}
.sage-btn:hover {
  background: linear-gradient(135deg, #4a9470 0%, #74c69d 100%) !important;
  box-shadow: 0 12px 40px rgba(45,106,79,0.4) !important;
}
.sage-outline {
  border-color: #2d6a4f !important;
  color: #2d6a4f !important;
}
.sage-outline:hover {
  background: #2d6a4f !important;
  color: var(--white) !important;
}
.sage-badge {
  background: linear-gradient(135deg, #2d6a4f, #4a9470) !important;
}

/* FlexCore breakdown */
.flexcore-breakdown {
  border-top: 3px solid #4a9470;
}
.flexcore-breakdown .breakdown-title::after {
  background: linear-gradient(90deg, #2d6a4f, #b5830a);
}

/* FlexCore step cards */
.sage-step {
  border-color: rgba(116,198,157,0.25) !important;
}
.sage-step h4 { color: #d1eddb !important; }

/* FlexCore ingredient items */
.sage-item:hover {
  border-color: rgba(45,106,79,0.3) !important;
  box-shadow: 0 4px 20px rgba(45,106,79,0.12) !important;
}

/* FlexCore product tab when sage theme */
body.theme-sage .product-tab.active {
  background: linear-gradient(135deg, #2d6a4f, #4a9470);
  box-shadow: 0 6px 28px rgba(45,106,79,0.3);
}

/* FlexCore Benefits Grid section padding */
.flexcore-benefits-grid {
  padding: var(--section-gap) 0 0;
}
.flexcore-benefits-grid .section-header { margin-bottom: 40px; }

/* ─── DETOX SPECIFIC STYLES ───────────────────────────────── */
.detox-gallery-main {
  background: linear-gradient(135deg, #e4f0e6 0%, #cde6d2 100%) !important;
}
.detox-gallery-img {
  filter: drop-shadow(0 16px 40px rgba(10,31,18,0.35));
}

/* Detox-themed badges */
.badge-tag.detox {
  color: #1e5c34;
  background: rgba(30,92,52,0.08);
  border-color: rgba(30,92,52,0.2);
}

/* Detox check */
.benefit-check.detox-check {
  color: #3a8a55;
}

/* Detox Highlights strip (reuses .flexcore-highlights layout) */
.detox-highlights {
  background: rgba(30,92,52,0.04);
  border: 1px solid rgba(30,92,52,0.12);
}
.detox-highlight {
  color: #1e5c34;
}

/* Detox buttons */
.detox-btn {
  background: linear-gradient(135deg, #1e5c34 0%, #3a8a55 100%) !important;
  box-shadow: 0 6px 28px rgba(30,92,52,0.32) !important;
}
.detox-btn:hover {
  background: linear-gradient(135deg, #3a8a55 0%, #6fbf87 100%) !important;
  box-shadow: 0 12px 40px rgba(30,92,52,0.4) !important;
}
.detox-outline {
  border-color: #1e5c34 !important;
  color: #1e5c34 !important;
}
.detox-outline:hover {
  background: #1e5c34 !important;
  color: var(--white) !important;
}
.detox-badge-tag {
  background: linear-gradient(135deg, #1e5c34, #3a8a55) !important;
}

/* Detox breakdown */
.detox-breakdown {
  border-top: 3px solid #3a8a55;
}
.detox-breakdown .breakdown-title::after {
  background: linear-gradient(90deg, #1e5c34, #c9a034);
}

/* Detox step cards */
.detox-step {
  border-color: rgba(111,191,135,0.25) !important;
}
.detox-step h4 { color: #cde6d2 !important; }

/* Detox ingredient items */
.detox-item:hover {
  border-color: rgba(30,92,52,0.3) !important;
  box-shadow: 0 4px 20px rgba(30,92,52,0.12) !important;
}

/* Detox product tab when detox theme */
body.theme-detox .product-tab.active {
  background: linear-gradient(135deg, #1e5c34, #3a8a55);
  box-shadow: 0 6px 28px rgba(30,92,52,0.3);
}
/* Detox product tab active state is always green regardless of body theme */
.product-tab[data-product="detox"].active {
  background: linear-gradient(135deg, #1e5c34, #3a8a55) !important;
  box-shadow: 0 6px 28px rgba(30,92,52,0.3) !important;
  color: white !important;
}

/* Detox Benefits Grid section padding (reuses .flexcore-benefits-grid layout) */
.detox-benefits-grid { padding: var(--section-gap) 0 0; }
.detox-benefits-grid .section-header { margin-bottom: 40px; }

/* ─── RELATED PRODUCTS ───────────────────────────────────── */
.related-products {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border-subtle);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.related-card {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  transition: all var(--t-mid) var(--ease-out);
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.related-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  background: linear-gradient(135deg, #f3eeff 0%, #e8ddf8 100%);
  border-radius: var(--radius-md);
  padding: 12px;
  flex-shrink: 0;
}
#relatedFlexcore .related-img {
  background: linear-gradient(135deg, #e8f5ee 0%, #d1eddb 100%);
}
.related-info h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--purple-deep);
  margin-bottom: 4px;
}
.related-info p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.5;
}

/* ─── SHOP CARD FLEXCORE VARIANT ─────────────────────────── */
.flexcore-card-img-wrap {
  background: linear-gradient(135deg, #e8f5ee 0%, #d1eddb 100%) !important;
}

/* ─── SHOP CARD DETOX VARIANT ────────────────────────────── */
.detox-card-img-wrap {
  background: linear-gradient(135deg, #e4f0e6 0%, #cde6d2 100%) !important;
}

/* ─── FOOTER LINKS WITH ONCLICK ──────────────────────────── */
.footer-links-col a[onclick] { cursor: pointer; }

/* ─── NAVBAR - add Products link styling ─────────────────── */
.navbar .nav-link[data-section="products"] {}
/* Slide 0 (Glow Elixir) always purple regardless of global theme */
.hero-slide[data-slide="0"] {
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1054 40%, #3d1570 70%, #220a42 100%) !important;
}
/* Slide 1 (FlexCore) always green regardless of global theme */
.hero-slide[data-slide="1"] {
  background: linear-gradient(135deg, #0f2918 0%, #1a3d28 35%, #24533a 65%, #162e1f 100%) !important;
}
/* Slide 2 (Detox) always deep green/gold regardless of global theme */
.hero-slide[data-slide="2"] {
  background: linear-gradient(135deg, #0a1f12 0%, #123a20 35%, #1c4c2c 65%, #081a0f 100%) !important;
}
/* Override theme-sage overrides for hero slides */
body.theme-sage .hero-slide[data-slide="0"] {
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1054 40%, #3d1570 70%, #220a42 100%) !important;
}
body.theme-sage .hero-slide[data-slide="1"] {
  background: linear-gradient(135deg, #0f2918 0%, #1a3d28 35%, #24533a 65%, #162e1f 100%) !important;
}
body.theme-sage .hero-slide[data-slide="2"] {
  background: linear-gradient(135deg, #0a1f12 0%, #123a20 35%, #1c4c2c 65%, #081a0f 100%) !important;
}
/* Override theme-detox overrides for hero slides */
body.theme-detox .hero-slide[data-slide="0"] {
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1054 40%, #3d1570 70%, #220a42 100%) !important;
}
body.theme-detox .hero-slide[data-slide="1"] {
  background: linear-gradient(135deg, #0f2918 0%, #1a3d28 35%, #24533a 65%, #162e1f 100%) !important;
}
body.theme-detox .hero-slide[data-slide="2"] {
  background: linear-gradient(135deg, #0a1f12 0%, #123a20 35%, #1c4c2c 65%, #081a0f 100%) !important;
}

/* ─── PRODUCT SECTIONS: always keep their own identity ──────── */
/* Glow Elixir product panel — always purple themed regardless of body theme */
#glow-elixir .gallery-main {
  background: linear-gradient(135deg, #f3eeff 0%, #e8ddf8 100%) !important;
}
#glow-elixir .gallery-thumb { background: #f3eeff !important; }
#glow-elixir .gallery-thumb.active,
#glow-elixir .gallery-thumb:hover { border-color: #4a1a8c !important; }
#glow-elixir .badge-tag { color: #4a1a8c !important; background: rgba(74,26,140,0.08) !important; border-color: rgba(74,26,140,0.2) !important; }
#glow-elixir .benefit-check { color: #d4a017 !important; }
#glow-elixir .product-ctas .btn-primary {
  background: linear-gradient(135deg, #4a1a8c 0%, #7b3fd4 100%) !important;
  box-shadow: 0 6px 28px rgba(74,26,140,0.32) !important;
}
#glow-elixir .product-ctas .btn-outline {
  border-color: #4a1a8c !important;
  color: #4a1a8c !important;
}
#glow-elixir .ingredient-dose { color: #b8860b !important; }

/* FlexCore product panel — always green themed regardless of body theme */
#flexcore .gallery-main {
  background: linear-gradient(135deg, #e8f5ee 0%, #d1eddb 100%) !important;
}
#flexcore .gallery-thumb { background: #e8f5ee !important; }
#flexcore .gallery-thumb.active,
#flexcore .gallery-thumb:hover { border-color: #2d6a4f !important; }
#flexcore .directions-section {
  background: linear-gradient(135deg, #0f2918 0%, #1a3d28 100%) !important;
}
#flexcore .flexcore-breakdown { border-top-color: #4a9470 !important; }

/* Detox product panel — always deep green/gold themed regardless of body theme */
#detox .gallery-main {
  background: linear-gradient(135deg, #e4f0e6 0%, #cde6d2 100%) !important;
}
#detox .gallery-thumb { background: #e4f0e6 !important; }
#detox .gallery-thumb.active,
#detox .gallery-thumb:hover { border-color: #1e5c34 !important; }
#detox .directions-section {
  background: linear-gradient(135deg, #0a1f12 0%, #123a20 100%) !important;
}
#detox .detox-breakdown { border-top-color: #3a8a55 !important; }

/* ─── MOBILE WELLNESS BUTTON FIX ────────────────────────────── */
/* Match desktop btn-wellness-start perfectly on all screen sizes */
@media (max-width: 768px) {
  .btn-wellness-start {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    padding: 20px 28px !important;
    background: linear-gradient(135deg, #b8860b 0%, #d4a017 50%, #f0c84a 100%) !important;
    border-radius: var(--radius-lg) !important;
    border: none !important;
    cursor: pointer !important;
    overflow: hidden !important;
    box-shadow: 0 8px 40px rgba(212,160,23,0.45), 0 2px 8px rgba(0,0,0,0.2) !important;
    width: 100% !important;
    text-align: left !important;
    /* Reset any mobile-only overrides */
    font-size: inherit !important;
    flex-direction: row !important;
  }
  .btn-wellness-icon {
    font-size: 1.8rem !important;
    flex-shrink: 0 !important;
  }
  .btn-wellness-text {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
  }
  .btn-wellness-text strong {
    font-family: var(--font-label) !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: #1a0a2e !important;
    letter-spacing: 0.02em !important;
    display: block !important;
  }
  .btn-wellness-text small {
    font-family: var(--font-body) !important;
    font-size: 0.75rem !important;
    color: rgba(26,10,46,0.65) !important;
    font-weight: 400 !important;
    display: block !important;
  }
  .btn-wellness-arrow {
    font-size: 1.2rem !important;
    color: #1a0a2e !important;
    font-weight: 700 !important;
    flex-shrink: 0 !important;
  }
}

/* ─── FLEXCORE RECOMMENDATION MODAL THEMING ─────────────────── */
.recommendation-screen.rec-flexcore .wellness-score {
  background: linear-gradient(135deg, #2d6a4f, #4a9470);
  box-shadow: 0 8px 32px rgba(45,106,79,0.35);
}
.recommendation-screen.rec-flexcore .rec-product-img-wrap {
  background: linear-gradient(135deg, #e8f5ee 0%, #d1eddb 100%);
}
.recommendation-screen.rec-flexcore .rec-product-name { color: #1a3d28; }
.recommendation-screen.rec-flexcore .rec-benefits h4,
.recommendation-screen.rec-flexcore .rec-usage h4 { color: #2d6a4f; }
.recommendation-screen.rec-flexcore .rec-benefits li::before { color: #2d6a4f; }
.recommendation-screen.rec-flexcore .rec-ctas .btn-primary {
  background: linear-gradient(135deg, #2d6a4f 0%, #4a9470 100%);
  box-shadow: 0 6px 28px rgba(45,106,79,0.32);
}
.recommendation-screen.rec-flexcore .rec-ctas .btn-outline {
  border-color: #2d6a4f;
  color: #2d6a4f;
}
.recommendation-screen.rec-flexcore .rec-close:hover { background: #2d6a4f; }

/* ─── DETOX RECOMMENDATION MODAL THEMING ─────────────────── */
.recommendation-screen.rec-detox .wellness-score {
  background: linear-gradient(135deg, #1e5c34, #3a8a55);
  box-shadow: 0 8px 32px rgba(30,92,52,0.35);
}
.recommendation-screen.rec-detox .rec-product-img-wrap {
  background: linear-gradient(135deg, #e4f0e6 0%, #cde6d2 100%);
}
.recommendation-screen.rec-detox .rec-product-name { color: #123a20; }
.recommendation-screen.rec-detox .rec-benefits h4,
.recommendation-screen.rec-detox .rec-usage h4 { color: #1e5c34; }
.recommendation-screen.rec-detox .rec-benefits li::before { color: #1e5c34; }
.recommendation-screen.rec-detox .rec-ctas .btn-primary {
  background: linear-gradient(135deg, #1e5c34 0%, #3a8a55 100%);
  box-shadow: 0 6px 28px rgba(30,92,52,0.32);
}
.recommendation-screen.rec-detox .rec-ctas .btn-outline {
  border-color: #1e5c34;
  color: #1e5c34;
}
.recommendation-screen.rec-detox .rec-close:hover { background: #1e5c34; }

/* ─── SCROLLBAR SAGE THEME ───────────────────────────────────── */
body.theme-sage ::-webkit-scrollbar-thumb { background: rgba(45,106,79,0.2); }
body.theme-sage ::-webkit-scrollbar-thumb:hover { background: #2d6a4f; }

/* ─── NAVBAR ACTIVE LINK: sage theme gold ────────────────────── */
body.theme-sage .nav-link.active { color: #d4a017; }

/* Product tab: FlexCore active state (sage) in global theme */
body.theme-sage .product-tab[data-product="flexcore"].active {
  background: linear-gradient(135deg, #2d6a4f, #4a9470);
  box-shadow: 0 6px 28px rgba(45,106,79,0.3);
}
/* Product tab: Detox active state (detox theme) in global theme */
body.theme-detox .product-tab[data-product="detox"].active {
  background: linear-gradient(135deg, #1e5c34, #3a8a55);
  box-shadow: 0 6px 28px rgba(30,92,52,0.3);
}
/* Product tab: Glow Elixir active state is always purple */
.product-tab[data-product="glow-elixir"].active {
  background: linear-gradient(135deg, #4a1a8c, #7b3fd4) !important;
  box-shadow: 0 6px 28px rgba(74,26,140,0.3) !important;
  color: white !important;
}



/* ─── SCIENCE SECTION inside product panel ───────────────── */
.product-panel .science-section {
  padding: var(--section-gap) 0 0;
  background: transparent;
}
.product-panel .science-section .section-header { margin-bottom: 40px; }

/* ─── DIRECTIONS inside product panel ───────────────────── */
.product-panel .directions-section {
  margin-top: 48px;
}

/* ─── FAQ inside product panel ──────────────────────────── */
.product-panel .faq-section {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-subtle);
  margin-top: 48px;
  margin-bottom: 0;
}

/* ─── INGREDIENT BREAKDOWN inside product panel ──────────── */
.product-panel .ingredient-breakdown {
  margin-top: 0;
}

/* ─── SCROLLBAR STYLING ──────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(74,26,140,0.2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple-mid); }

/* ─── FOCUS VISIBLE ──────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
}

/* ─── WELLNESS SECTION override (card bg light) ──────────── */
.wellness-section {
  background: var(--cream);
}
.wellness-section .wellness-hero-card {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-rich) 100%);
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212,160,23,0.2);
}
.wellness-section .wellness-hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 30% 50%, rgba(157,111,232,0.12) 0%, transparent 70%);
  pointer-events: none;
}
body.theme-sage .wellness-section .wellness-hero-card {
  background: linear-gradient(135deg, #0f2918 0%, #1a3d28 100%);
}
body.theme-detox .wellness-section .wellness-hero-card {
  background: linear-gradient(135deg, #0a1f12 0%, #123a20 100%);
}

/* ─── IMPROVED RESPONSIVE (NEW) ──────────────────────────── */
@media (max-width: 1200px) {
  .wellness-section .wellness-hero-card {
    grid-template-columns: 320px 1fr;
    gap: 40px;
    padding: 48px 40px;
  }
}
@media (max-width: 1024px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .related-grid { grid-template-columns: 1fr; }
  .product-tabs { gap: 8px; }
  .product-tab { padding: 12px 24px; font-size: 0.82rem; }
}
@media (max-width: 900px) {
  .wellness-section .wellness-hero-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
    padding: 40px 28px;
  }
  .flexcore-highlights { justify-content: center; }
  .btn-theme-toggle .theme-label { display: none; }
  .hero-slider-controls { bottom: 72px; }
}
@media (max-width: 768px) {
  .product-tabs { gap: 8px; }
  .product-tab { padding: 10px 18px; font-size: 0.8rem; }
  .related-grid { grid-template-columns: 1fr; }
  .related-card { flex-direction: row; }
  .flexcore-gallery-main { aspect-ratio: auto; padding: 32px !important; }
  .hero-slider-controls { gap: 10px; }
  .hero-slide-btn { width: 34px; height: 34px; font-size: 0.9rem; }
  .wellness-section .wellness-hero-card { padding: 32px 20px; }
}
@media (max-width: 560px) {
  .product-tabs { flex-direction: column; align-items: stretch; }
  .product-tab { justify-content: center; }
  .related-card { flex-direction: column; text-align: center; }
  .related-img { width: 120px; height: 120px; margin: 0 auto; }
  .hero-slide { padding: 90px 20px 100px; }
  .flexcore-highlights { gap: 8px; }
  .shop-grid { grid-template-columns: 1fr; }
}



/* ═══════════════════════════════════════════════════════════
   UONE MOBILE FIXES — DEFINITIVE EDITION
   Single authoritative block. No conflicts. No duplication.
   Covers every screen from 360px to 900px.
   ═══════════════════════════════════════════════════════════ */

/* ─── SMOOTH THEME TRANSITIONS ────────────────────────────── */
/* These apply at ALL sizes so desktop AND mobile both get
   smooth cross-fades when the theme class changes. */
body {
  transition: background-color 0.55s cubic-bezier(0.16,1,0.3,1),
              color 0.55s cubic-bezier(0.16,1,0.3,1);
}
.navbar.scrolled,
.btn-primary,
.btn-outline,
.product-tab.active,
.dot.active,
.hero-dot.active,
.mission-section,
.wellness-section,
.footer-cta-section,
.site-footer,
.progress-bar-fill,
.reviewer-avatar,
.answer-option.selected,
.filter-tab.active {
  transition-property: background, background-color, border-color, color, box-shadow;
  transition-duration: 0.55s;
  transition-timing-function: cubic-bezier(0.16,1,0.3,1);
}

body.theme-sage .navbar.scrolled {
  background: rgba(15, 41, 24, 0.96) !important;
  border-bottom-color: rgba(45, 106, 79, 0.3) !important;
}
body.theme-sage .mobile-overlay {
  background: rgba(15, 41, 24, 0.97);
}
body.theme-detox .navbar.scrolled {
  background: rgba(10, 31, 18, 0.96) !important;
  border-bottom-color: rgba(30, 92, 52, 0.3) !important;
}
body.theme-detox .mobile-overlay {
  background: rgba(10, 31, 18, 0.97);
}

/* ─── WELLNESS START BUTTON — EXACT DESKTOP MATCH ──────────── */
/* Single canonical rule set. No !important wars. */
.btn-wellness-start {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 18px !important;
  padding: 20px 32px !important;
  background: linear-gradient(135deg, var(--gold-rich) 0%, var(--gold-bright) 50%, var(--gold-light) 100%) !important;
  border-radius: var(--radius-lg) !important;
  border: none !important;
  cursor: pointer !important;
  position: relative !important;
  overflow: hidden !important;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s cubic-bezier(0.16,1,0.3,1) !important;
  box-shadow: 0 8px 40px rgba(212,160,23,0.45), 0 2px 8px rgba(0,0,0,0.2) !important;
  width: 100% !important;
  text-align: left !important;
}
.btn-wellness-start::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 60%) !important;
  pointer-events: none !important;
}
.btn-wellness-start::after {
  content: '' !important;
  position: absolute !important;
  inset: -3px !important;
  border-radius: calc(var(--radius-lg) + 3px) !important;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-bright)) !important;
  z-index: -1 !important;
  animation: btnPulseGlow 2s ease-in-out infinite !important;
}
.btn-wellness-start:hover, .btn-wellness-start:active {
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 48px rgba(212,160,23,0.6), 0 4px 16px rgba(0,0,0,0.2) !important;
}
.btn-wellness-start:active { transform: translateY(0) !important; }

.btn-wellness-icon {
  font-size: 2rem !important;
  flex-shrink: 0 !important;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2)) !important;
  display: block !important;
}
.btn-wellness-text {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  min-width: 0 !important;
}
.btn-wellness-text strong {
  font-family: 'Montserrat', system-ui, sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: #1a0a2e !important;
  letter-spacing: 0.02em !important;
  display: block !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}
.btn-wellness-text small {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.8rem !important;
  color: rgba(26,10,46,0.65) !important;
  font-weight: 400 !important;
  display: block !important;
}
.btn-wellness-arrow {
  font-size: 1.4rem !important;
  color: #1a0a2e !important;
  font-weight: 700 !important;
  flex-shrink: 0 !important;
  transition: transform 0.2s ease !important;
}
.btn-wellness-start:hover .btn-wellness-arrow { transform: translateX(5px) !important; }

/* ─── AOS: MOBILE TRIGGERS ──────────────────────────────────── */
@media (max-width: 900px) {
  [data-aos] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  [data-aos].aos-visible {
    opacity: 1 !important;
    transform: none !important;
  }
  [data-aos="fade-right"]           { transform: translateX(-18px); }
  [data-aos="fade-right"].aos-visible { transform: none !important; }
  [data-aos="fade-left"]            { transform: translateX(18px); }
  [data-aos="fade-left"].aos-visible  { transform: none !important; }

  [data-delay="0"]   { transition-delay: 0s; }
  [data-delay="80"]  { transition-delay: 0.04s; }
  [data-delay="100"] { transition-delay: 0.05s; }
  [data-delay="160"] { transition-delay: 0.08s; }
  [data-delay="200"] { transition-delay: 0.1s; }
  [data-delay="240"] { transition-delay: 0.12s; }
  [data-delay="300"] { transition-delay: 0.14s; }
  [data-delay="320"] { transition-delay: 0.15s; }
  [data-delay="400"] { transition-delay: 0.18s; }
  [data-delay="480"] { transition-delay: 0.2s; }
  [data-delay="560"] { transition-delay: 0.22s; }
}

/* ─── MAIN MOBILE LAYOUT FIXES ──────────────────────────────── */
@media (max-width: 900px) {
  :root { --section-gap: 72px; }
  .nav-inner { padding: 0 16px; height: 64px; }
  .logo-img { height: 38px; }
  .nav-product-indicator { display: none; }

  /* Hero slider controls */
  .hero-slide-btn { width: 36px; height: 36px; font-size: 0.88rem; }
  .hero-dot       { width: 7px; height: 7px; }
  .hero-dot.active{ width: 22px; }

  /* Why grid */
  .why-grid  { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .why-card  { padding: 28px 18px; }

  /* Mission */
  .mission-inner { grid-template-columns: 1fr; gap: 32px; }
  .mission-card  { padding: 32px 24px; }
  .mission-card blockquote { font-size: 1.1rem; }

  /* Product tabs */
  .product-tabs {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
  }
  .product-tabs::-webkit-scrollbar { display: none; }
  .product-tab { flex: 1; min-width: 110px; justify-content: center; padding: 12px 14px; font-size: 0.82rem; white-space: nowrap; }

  /* Product detail */
  .product-detail-wrap { grid-template-columns: 1fr; gap: 32px; }
  .product-gallery     { max-width: 360px; margin: 0 auto; width: 100%; }
  .gallery-main        { aspect-ratio: auto; padding: 28px; min-height: 230px; }

  /* Ingredient showcase */
  .ingredients-showcase { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .ingredient-item      { padding: 20px 14px; }

  /* Ingredient table */
  .ingredient-breakdown { padding: 28px 16px; }
  .ingredient-row       { grid-template-columns: 2fr 1fr; gap: 8px; font-size: 0.82rem; }
  .ingredient-row span:last-child, .header-row span:last-child { display: none; }

  /* Directions */
  .directions-steps { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .step-card        { padding: 20px 14px; }

  /* Flexcore highlights */
  .flexcore-highlights { flex-wrap: wrap; justify-content: center; gap: 8px; }

  /* Related products */
  .related-grid { grid-template-columns: 1fr; gap: 16px; }
  .related-card { flex-direction: row; gap: 14px; }
  .related-img  { width: 80px; height: 80px; }

  /* Testimonials */
  .testimonial-card { padding: 24px 18px; }

  /* Trust grid */
  .trust-grid   { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .trust-badge  { padding: 18px 8px; }
  .trust-badge strong { font-size: 0.78rem; }
  .trust-badge span   { font-size: 0.7rem; }

  /* Newsletter */
  .newsletter-card { padding: 36px 20px; }
  .newsletter-form { flex-direction: column; gap: 12px; }

  /* Footer CTA */
  .footer-cta-inner h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); text-align: center; }
  .footer-cta-btns     { flex-direction: column; gap: 12px; align-items: center; }
  .footer-cta-btns .btn-primary,
  .footer-cta-btns .btn-outline-light { width: 100%; max-width: 300px; justify-content: center; }

  /* Wellness hero card */
  .wellness-section .wellness-hero-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
    padding: 36px 24px;
  }
  .wellness-section .wellness-hero-card::before { display: none; }
  .wellness-doctor-wrap { justify-content: center; }
  .doctor-img  { width: 200px; }
  .wellness-steps { justify-content: center; flex-wrap: wrap; gap: 12px; }
  .wellness-step  { font-size: 0.83rem; }

  /* Wellness CTA wrap */
  .wellness-cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
  .btn-wellness-start {
    padding: 18px 24px !important;
    gap: 14px !important;
  }
  .btn-wellness-text strong { white-space: normal !important; font-size: 0.95rem !important; }

  /* Assessment & recommendation */
  .assessment-inner    { padding: 28px 16px 80px; }
  .recommendation-inner{ padding: 28px 16px 32px; max-height: 92vh; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .rec-content         { grid-template-columns: 1fr; gap: 24px; }
  .rec-product-img-wrap{ max-width: 200px; margin: 0 auto; }
  .rec-ctas            { flex-direction: column; gap: 10px; }
  .rec-ctas .btn-primary, .rec-ctas .btn-outline { justify-content: center; width: 100%; }
  .rec-header          { flex-direction: column; gap: 20px; align-items: flex-start; }

  /* Shop */
  .shop-controls    { flex-direction: column; gap: 14px; }
  .search-wrap      { max-width: 100%; }
  .filter-tabs      { flex-wrap: wrap; gap: 8px; }
  .filter-tab       { padding: 8px 16px; font-size: 0.8rem; }
  .shop-grid        { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row     { grid-template-columns: 1fr; }
  .contact-form input,
  .contact-form textarea { font-size: 16px; } /* prevent iOS zoom */

  /* Footer */
  .footer-top-inner { grid-template-columns: 1fr 1fr; gap: 28px; }

  /* Cart */
  .cart-sidebar { width: 100%; }

  /* Toast */
  .toast { bottom: 16px; right: 16px; left: 16px; text-align: center; }

  /* Sections — prevent horizontal overflow */
  section, .hero-slider-section, .hero-section { overflow-x: hidden; }

  /* Touch targets */
  button, a { -webkit-tap-highlight-color: transparent; }
  .btn-primary, .btn-outline { min-height: 44px; }
  .hero-slide-btn { min-width: 44px; min-height: 44px; }

  /* Section header tightening */
  .section-header { margin-bottom: 40px; }
  .section-sub    { font-size: 0.95rem; }
}

/* ─── SMALL PHONES ───────────────────────────────────────────── */
@media (max-width: 480px) {
  :root { --section-gap: 56px; }

  /* Why: single column */
  .why-grid { grid-template-columns: 1fr; }

  /* Product tabs */
  .product-tab { font-size: 0.77rem; padding: 10px 10px; min-width: 90px; }

  /* Gallery */
  .product-gallery { max-width: 280px; }
  .gallery-main    { padding: 20px; min-height: 200px; }

  /* Ingredients */
  .ingredients-showcase { grid-template-columns: 1fr 1fr; gap: 10px; }
  .ingredient-item      { padding: 14px 10px; }
  .ingredient-item h4   { font-size: 0.86rem; }
  .ingredient-item p    { font-size: 0.78rem; }

  /* Directions: single column */
  .directions-steps { grid-template-columns: 1fr; }

  /* Trust: 2-col */
  .trust-grid  { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .trust-icon  { font-size: 1.6rem; }

  /* Related */
  .related-card { flex-direction: column; text-align: center; }
  .related-img  { margin: 0 auto; width: 100px; height: 100px; }

  /* Wellness button: smallest size */
  .btn-wellness-start { padding: 16px 18px !important; gap: 12px !important; }
  .btn-wellness-icon  { font-size: 1.75rem !important; }
  .btn-wellness-text strong { font-size: 0.88rem !important; }
  .btn-wellness-text small  { font-size: 0.72rem !important; }
  .btn-wellness-arrow { font-size: 1.15rem !important; }

  /* Doctor section */
  .doctor-img  { width: 160px; }
  .doctor-badge{ display: none; } /* prevent overflow */

  /* Typography */
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .breakdown-title { font-size: 1.25rem; }
  .product-pack-info { flex-wrap: wrap; gap: 6px; font-size: 0.7rem; }

  /* Shop: single column */
  .shop-grid { grid-template-columns: 1fr; }
  .shop-card-ctas { flex-direction: column; gap: 8px; }
  .shop-card-ctas .btn-sm { justify-content: center; }

  /* Footer */
  .footer-top-inner     { grid-template-columns: 1fr; }
  .footer-bottom-inner  { flex-direction: column; text-align: center; }
}

/* ─── VERY SMALL PHONES ──────────────────────────────────────── */
@media (max-width: 380px) {
  .hero-headline { font-size: 1.9rem; }
  .product-float-wrap { width: 170px; }
  .hero-ctas .btn-primary, .hero-ctas .btn-outline { font-size: 0.8rem; padding: 12px 20px; }
}

