/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  /* Neutral surfaces — clean store white, not cream */
  --bg: #ffffff;
  --bg-2: #f4f7fc;
  --paper: #ffffff;
  --ink: #10172b;
  --ink-soft: #2b3348;
  --ink-mute: #4e5568;

  /* Bottle palette — blue / green / pink / amber, on white */
  --blue: #2f5fec;
  --blue-dark: #1c3fb0;
  --green: #0ea968;
  --green-dark: #0b7f4f;
  --pink: #e0298c;
  --pink-dark: #ad1c6c;
  --amber: #f5a800;
  --amber-dark: #8f6100;

  /* Legacy alias names kept so the rest of the sheet doesn't need rewiring */
  --accent: var(--blue);
  --accent-dark: var(--blue-dark);
  --accent-soft: #e7edff;
  --green-soft: #e2f8ee;
  --pink-soft: #fce4f1;
  --amber-soft: #fff1d6;
  --gold: var(--amber);

  --gradient-brand: linear-gradient(100deg, var(--blue) 0%, var(--green) 35%, var(--amber) 68%, var(--pink) 100%);
  --gradient-brand-surface: linear-gradient(135deg, var(--blue-dark) 0%, var(--green-dark) 52%, var(--pink-dark) 100%);

  --line: rgba(16, 23, 43, 0.12);
  --line-soft: rgba(16, 23, 43, 0.08);
  --shadow-color: 16, 23, 43;

  --display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1180px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.08; letter-spacing: -0.01em; color: var(--ink); font-family: var(--display); font-weight: 600; }
ul { list-style: none; padding: 0; }
::selection { background: var(--accent); color: var(--paper); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.2rem; background: var(--ink); color: var(--paper);
  border-radius: 8px; font-weight: 600; transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 720px) { .container { padding-inline: 2rem; } }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.section { padding-block: 4.5rem; position: relative; }
@media (min-width: 960px) { .section { padding-block: 6.5rem; } }
.section-alt { background: var(--bg-2); }
.section-wash-blue { background: var(--accent-soft); }
.section-wash-green { background: var(--green-soft); }
.section-wash-pink { background: var(--pink-soft); }
.section-wash-amber { background: var(--amber-soft); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sans); font-size: .8rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--accent-dark);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--accent); }
.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.section-lead { margin-top: 1rem; color: var(--ink-mute); font-size: 1.05rem; }

/* =============================================================
   4. Typography
   ============================================================= */
.italic { font-style: italic; }
.text-accent { color: var(--accent-dark); }

/* =============================================================
   5. Components
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.7rem; border-radius: 999px; font-weight: 600; font-size: .98rem;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(var(--shadow-color), 0.08), 0 1px 3px rgba(var(--shadow-color), 0.06);
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background .3s;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(var(--shadow-color), 0.16), 0 8px 18px rgba(47,95,236,0.18); }
.btn:active { transform: translateY(-1px); transition-duration: .12s; }
.btn-primary { background: var(--accent); color: var(--paper); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1ebe57; }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); box-shadow: none; }
.btn-ghost:hover { border-color: var(--accent); box-shadow: 0 12px 26px rgba(var(--shadow-color), 0.1); }
.btn-sm { padding: .7rem 1.3rem; font-size: .9rem; }
.btn svg { width: 1.1em; height: 1.1em; flex-shrink: 0; }

.card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  padding: 1.8rem;
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), border-color .5s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 70px -30px rgba(var(--shadow-color), 0.22), 0 12px 24px -10px rgba(47,95,236,0.16);
  border-color: transparent;
}

.badge {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .02em;
  padding: .4rem .75rem; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent-dark);
}
.badge-green { background: var(--green-soft); color: var(--green-dark); }
.badge-pink { background: var(--pink-soft); color: var(--pink-dark); }
.badge-amber { background: var(--amber-soft); color: var(--amber-dark); }

/* Reveal on scroll */
[data-reveal] {
  opacity: 0; transform: translateY(36px);
  transition: opacity .85s var(--ease-soft), transform .85s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal][data-split] { opacity: 1; transform: none; }

/* Stars */
.stars { display: inline-flex; gap: .15rem; color: var(--gold); }
.stars svg { width: 1.05em; height: 1.05em; }

/* =============================================================
   6. Navigation
   ============================================================= */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 100;
  transition: background-color .4s var(--ease-out), box-shadow .4s var(--ease-out), padding .4s var(--ease-out);
  padding-block: 1.1rem;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 1px 0 rgba(var(--shadow-color), 0.08);
  padding-block: .7rem;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.logo { font-family: var(--display); font-weight: 700; font-size: 1.4rem; letter-spacing: -0.01em; color: var(--ink); }
.logo em { color: var(--accent-dark); font-style: italic; }
.nav-links { display: none; align-items: center; gap: 1.9rem; }
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-link { position: relative; font-size: .93rem; font-weight: 500; padding: .25rem 0; color: var(--ink-soft); }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 1.5px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: none; align-items: center; gap: .7rem; }
@media (min-width: 720px) { .nav-cta { display: flex; } }
.nav-burger { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; }
@media (min-width: 960px) { .nav-burger { display: none; } }
.nav-burger span, .nav-burger::before, .nav-burger::after { content: ""; }
.burger-icon { position: relative; width: 22px; height: 16px; }
.burger-icon span { position: absolute; left: 0; right: 0; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease-out), opacity .3s; }
.burger-icon span:nth-child(1) { top: 0; }
.burger-icon span:nth-child(2) { top: 7px; }
.burger-icon span:nth-child(3) { top: 14px; }
.nav-mobile[aria-hidden="false"] .burger-icon span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mobile[aria-hidden="false"] .burger-icon span:nth-child(2) { opacity: 0; }
.nav-mobile[aria-hidden="false"] .burger-icon span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 90;
  background: var(--bg); color: var(--ink);
  display: grid; place-items: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s var(--ease-soft);
}
.nav-mobile[aria-hidden="false"] { clip-path: inset(0); }
.nav-mobile-list { display: flex; flex-direction: column; align-items: center; gap: 1.6rem; text-align: center; }
.nav-mobile-list a { font-family: var(--display); font-size: 1.8rem; }

/* =============================================================
   6.5 Splash loader (double safety net)
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: grid; place-items: center;
  pointer-events: auto;
  transition: opacity .7s var(--ease-out), clip-path .9s var(--ease-soft);
  animation: splashSafety .01s 3.5s forwards;
}
.splash.is-out { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); } }

/* =============================================================
   7. Hero
   ============================================================= */
.hero {
  position: relative;
  padding-top: clamp(7.5rem, 14vw, 10rem);
  padding-bottom: 4rem;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto -10%; height: 130%; z-index: -1;
  background:
    radial-gradient(42% 40% at 80% 12%, rgba(47,95,236,0.14), transparent 65%),
    radial-gradient(38% 34% at 95% 50%, rgba(224,41,140,0.12), transparent 65%),
    radial-gradient(40% 36% at 8% 68%, rgba(14,169,104,0.13), transparent 65%);
  filter: blur(60px);
}
.hero-grid {
  display: grid; gap: 2.5rem; align-items: center;
}
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 3rem; } }
.hero-copy { max-width: 46ch; }
.hero-title { font-size: clamp(2.3rem, 5.2vw, 3.6rem); margin-bottom: 1.2rem; }
.hero-title em {
  font-style: italic;
  background: var(--gradient-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { font-size: 1.1rem; color: var(--ink-mute); margin-bottom: 1.8rem; max-width: 42ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 1.8rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: .6rem; }
.hero-trust-item {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .85rem; color: var(--ink-mute); font-weight: 500;
}
.hero-trust-item svg { width: 1.05em; height: 1.05em; color: var(--accent-dark); flex-shrink: 0; }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-visual-glow {
  position: absolute; inset: -8% -8% -18% -8%; z-index: -1;
  background: radial-gradient(60% 55% at 50% 45%, rgba(47,95,236,0.22), transparent 72%);
  filter: blur(40px);
}
.hero-product-frame {
  position: relative; width: min(360px, 82vw);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 60px 90px -30px rgba(var(--shadow-color), 0.35), 0 20px 40px -18px rgba(47,95,236,0.24);
  animation: heroFloat 7s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero-product-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 940/1254; }
.hero-badge-float {
  position: absolute; bottom: -1rem; left: -1rem;
  background: var(--paper); border-radius: 18px; padding: .9rem 1.15rem;
  box-shadow: 0 24px 40px -14px rgba(var(--shadow-color), 0.28);
  display: flex; align-items: center; gap: .7rem;
}
@media (max-width: 539px) { .hero-badge-float { left: .3rem; bottom: -.6rem; padding: .7rem .9rem; } }
.hero-badge-float .stars { color: var(--gold); }
.hero-badge-float strong { font-family: var(--display); font-size: 1.15rem; color: var(--ink); }
.hero-badge-float small { display: block; color: var(--ink-mute); font-size: .74rem; }

/* =============================================================
   8. Stats strip
   ============================================================= */
.stats-strip { border-block: 1px solid var(--line-soft); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; text-align: center; padding-block: 2.6rem; }
@media (min-width: 720px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-num { font-family: var(--display); font-weight: 600; font-size: clamp(1.9rem, 4vw, 2.6rem); color: var(--accent-dark); }
.stat-label { margin-top: .35rem; font-size: .85rem; color: var(--ink-mute); max-width: 16ch; margin-inline: auto; }
.stats-grid > *:nth-child(4n+1) .stat-num { color: var(--blue-dark); }
.stats-grid > *:nth-child(4n+2) .stat-num { color: var(--green-dark); }
.stats-grid > *:nth-child(4n+3) .stat-num { color: var(--pink-dark); }
.stats-grid > *:nth-child(4n+4) .stat-num { color: var(--amber-dark); }

/* =============================================================
   9.5 Benefits band (green signature section)
   ============================================================= */
.benefits-band {
  position: relative; overflow: hidden; isolation: isolate;
  background: linear-gradient(165deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
}
.benefits-pattern {
  position: absolute; inset: 0; z-index: 0; opacity: .5; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><g fill='none' stroke='white' stroke-width='1.1' opacity='0.35'><path d='M14 150 Q34 118 22 86 Q10 54 32 24'/><path d='M22 86 Q44 80 56 62'/><path d='M140 40 Q118 66 130 98 Q142 126 118 150'/><path d='M130 98 Q108 104 96 122'/></g></svg>");
  background-size: 160px 160px;
}
.benefits-band .container { position: relative; z-index: 1; }
.eyebrow-light { color: rgba(255,255,255,0.85); }
.eyebrow-light::before { background: rgba(255,255,255,0.6); }
.benefits-title { color: #fff; }
.benefits-title .italic { color: #ffe27a; font-style: italic; }
.benefits-lead { color: rgba(255,255,255,0.86); }

.benefits-showcase {
  display: grid; grid-template-columns: 1fr; gap: 1.2rem;
  margin-top: 2.8rem; align-items: center;
}
@media (min-width: 860px) {
  .benefits-showcase { grid-template-columns: 1fr auto 1fr; gap: 2.2rem; }
}
.benefits-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 860px) { .benefits-col { grid-template-columns: 1fr; gap: 1.4rem; } }
.benefit-chip {
  background: #fff; color: var(--ink); border-radius: 18px; padding: 1.1rem 1.2rem;
  display: flex; flex-direction: column; gap: .5rem;
  box-shadow: 0 24px 44px -20px rgba(0,0,0,0.4);
  transition: transform .5s var(--ease-soft);
}
.benefit-chip:hover { transform: translateY(-4px); }
.benefit-chip-icon { width: 2.2rem; height: 2.2rem; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; }
.benefit-chip-icon svg { width: 1.15rem; height: 1.15rem; }
.chip-icon-blue { background: var(--accent-soft); color: var(--blue-dark); }
.chip-icon-pink { background: var(--pink-soft); color: var(--pink-dark); }
.chip-icon-amber { background: var(--amber-soft); color: var(--amber-dark); }
.chip-icon-green { background: var(--green-soft); color: var(--green-dark); }
.benefit-chip-label { font-family: var(--display); font-weight: 700; font-size: .96rem; line-height: 1.2; }
.benefit-chip-desc { font-size: .8rem; color: var(--ink-mute); line-height: 1.45; }

.benefits-photo { display: flex; justify-content: center; }
.benefits-photo-frame {
  width: min(240px, 55vw); border-radius: 28px; background: #fff;
  padding: 1.1rem; box-shadow: 0 50px 80px -20px rgba(0,0,0,0.4);
}
.benefits-photo-frame img { width: 100%; display: block; border-radius: 14px; }

.benefits-tags { margin-top: 2.6rem; text-align: center; }
.benefits-tags-label {
  color: #ffe27a; font-weight: 700; font-size: .8rem; text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: 1rem;
}
.tags-row { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.tag-pill {
  border: 1.5px solid rgba(255,255,255,0.4); color: #fff; font-size: .85rem; font-weight: 500;
  padding: .5rem 1rem; border-radius: 999px; transition: background .3s, border-color .3s;
}
.tag-pill:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); }

/* =============================================================
   10. Science section
   ============================================================= */
.science-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 960px) { .science-grid { grid-template-columns: .85fr 1.15fr; } }
.science-figure {
  position: relative; border-radius: 24px; overflow: hidden;
  background: var(--bg-2);
  aspect-ratio: 4/5;
}
.science-figure img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
}
.science-figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(47,95,236,0.22), transparent 55%);
  mix-blend-mode: multiply;
}
.science-figure-illustration { background: #fbeee0; }
.science-figure-illustration img { object-position: center center; }
.science-figure-illustration::after { background: linear-gradient(200deg, rgba(47,95,236,0.14), transparent 55%); }
.dosage-card {
  margin-top: 1.6rem; display: flex; align-items: center; gap: 1rem;
  background: var(--accent-soft); border-radius: 16px; padding: 1.1rem 1.3rem;
}
.dosage-card svg { width: 2rem; height: 2rem; color: var(--accent-dark); flex-shrink: 0; }
.dosage-card strong { display: block; color: var(--ink); font-family: var(--display); font-size: 1.05rem; }
.dosage-card span { font-size: .88rem; color: var(--ink-mute); }

/* =============================================================
   11. Ingredients — photo + compact list
   ============================================================= */
.ingredients-layout { display: grid; gap: 2.2rem; align-items: start; }
@media (min-width: 900px) { .ingredients-layout { grid-template-columns: .82fr 1.18fr; gap: 3rem; } }

.ingredients-photo {
  background: var(--paper); border-radius: 24px; padding: .9rem;
  box-shadow: 0 40px 70px -30px rgba(var(--shadow-color), 0.22);
}
.ingredients-photo img { width: 100%; border-radius: 16px; display: block; }
@media (min-width: 900px) { .ingredients-photo { position: sticky; top: 6.5rem; } }

.ingredients-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.ingredient-row {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 0; border-bottom: 1px solid var(--line);
}
.ingredient-row-num {
  font-family: var(--display); font-style: italic; font-weight: 600;
  color: var(--blue-dark); font-size: 1rem; flex-shrink: 0; width: 1.7rem;
}
.ingredient-row-body { flex: 1; min-width: 0; }
.ingredient-row-name { display: block; font-family: var(--display); font-weight: 600; font-size: 1.02rem; color: var(--ink); margin-bottom: .2rem; }
.ingredient-row-benefit { display: block; font-size: .87rem; color: var(--ink-mute); line-height: 1.5; }
.ingredients-list .ingredient-row:nth-child(4n+2) .ingredient-row-num { color: var(--green-dark); }
.ingredients-list .ingredient-row:nth-child(4n+3) .ingredient-row-num { color: var(--amber-dark); }
.ingredients-list .ingredient-row:nth-child(4n+4) .ingredient-row-num { color: var(--pink-dark); }

/* =============================================================
   12. Product showcase (own photography)
   ============================================================= */
.showcase-strip {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
@media (min-width: 720px) { .showcase-strip { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; } }
.showcase-strip .showcase-photo:first-child { grid-column: span 2; }
@media (min-width: 720px) { .showcase-strip .showcase-photo:first-child { grid-column: span 1; } }
.showcase-photo {
  position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 1/1;
  isolation: isolate;
}
.showcase-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.94) brightness(1.02);
  transition: transform .8s var(--ease-soft), filter .6s;
}
.showcase-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(175deg, rgba(47,95,236,0.12), transparent 45%);
  mix-blend-mode: multiply;
}
.showcase-photo:hover img { transform: scale(1.06); filter: saturate(1) brightness(1.05); }
.showcase-badges { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }

/* =============================================================
   13. Pricing
   ============================================================= */
.pricing-grid { display: grid; gap: 1.4rem; }
@media (min-width: 720px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.price-card {
  display: flex; flex-direction: column; text-align: center;
  padding: 2.2rem 1.6rem;
  position: relative;
}
.price-card.is-featured {
  background: var(--gradient-brand-surface);
  color: var(--paper); border: none; transform: scale(1.03);
}
.price-card.is-featured .price-label,
.price-card.is-featured .price-note { color: rgba(255,255,255,0.82); }
.price-card.is-featured .price-value { color: var(--paper); }
.price-card.is-featured:hover { transform: scale(1.03) translateY(-6px); }
.price-ribbon {
  position: absolute; top: -.8rem; left: 50%; transform: translateX(-50%);
  background: var(--pink-dark); color: #fff; font-size: .74rem; font-weight: 700;
  padding: .35rem .9rem; border-radius: 999px; letter-spacing: .04em; text-transform: uppercase;
  box-shadow: 0 10px 20px -6px rgba(173,28,108,0.45);
}
.price-photo { width: 100%; aspect-ratio: 1/1; margin-bottom: 1.2rem; display: flex; align-items: center; justify-content: center; }
.price-photo img { max-width: 78%; max-height: 100%; object-fit: contain; filter: drop-shadow(0 18px 24px rgba(var(--shadow-color), 0.16)); }
.price-card.is-featured .price-photo img { filter: drop-shadow(0 18px 24px rgba(0,0,0,0.28)); }
.price-label { font-weight: 600; font-size: 1rem; margin-bottom: .3rem; }
.price-value { font-family: var(--display); font-size: 2.4rem; color: var(--ink); margin-block: .3rem; }
.price-value sup { font-size: 1rem; font-weight: 600; }
.price-per-unit { font-size: .82rem; opacity: .85; margin-bottom: .3rem; }
.price-note { font-size: .87rem; color: var(--ink-mute); margin-bottom: 1.4rem; }
.price-card .btn { width: 100%; margin-top: auto; }
.pricing-footnote { text-align: center; margin-top: 2rem; color: var(--ink-mute); font-size: .92rem; }
.pricing-footnote a { color: var(--accent-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* Wholesale table */
.tier-table-wrap { overflow-x: auto; border-radius: 20px; border: 1px solid var(--line-soft); background: var(--paper); }
.tier-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.tier-table th, .tier-table td { padding: 1rem 1.4rem; text-align: left; border-bottom: 1px solid var(--line-soft); }
.tier-table th { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-mute); font-weight: 600; }
.tier-table tr:last-child td { border-bottom: none; }
.tier-table tr.is-highlight td { background: var(--accent-soft); }
.tier-table td.tier-units { font-family: var(--display); font-size: 1.05rem; color: var(--ink); }
.tier-table td.tier-price { font-family: var(--display); font-size: 1.2rem; color: var(--accent-dark); font-weight: 600; }
.tier-table td.tier-save { color: var(--amber-dark); font-weight: 600; font-size: .88rem; }

/* =============================================================
   14. Reviews (Amazon)
   ============================================================= */
.reviews-head {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.6rem;
  margin-bottom: 2.6rem;
}
.reviews-rating { display: flex; align-items: center; gap: 1.2rem; }
.reviews-rating-num { font-family: var(--display); font-size: 3rem; color: var(--ink); }
.reviews-rating-meta { font-size: .88rem; color: var(--ink-mute); }
.reviews-grid { display: grid; gap: 1.3rem; }
@media (min-width: 720px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card { display: flex; flex-direction: column; gap: .8rem; }
.review-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.review-avatar {
  width: 2.6rem; height: 2.6rem; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent-dark);
  display: grid; place-items: center; font-family: var(--display); font-weight: 700;
  flex-shrink: 0;
}
.review-card:nth-child(4n+2) .review-avatar { background: var(--green-soft); color: var(--green-dark); }
.review-card:nth-child(4n+3) .review-avatar { background: var(--pink-soft); color: var(--pink-dark); }
.review-card:nth-child(4n+4) .review-avatar { background: var(--amber-soft); color: var(--amber-dark); }
.review-person { display: flex; align-items: center; gap: .7rem; }
.review-name { font-weight: 600; color: var(--ink); font-size: .95rem; }
.review-verified { font-size: .74rem; color: var(--accent-dark); font-weight: 600; }
.review-title { font-family: var(--display); font-size: 1.08rem; color: var(--ink); }
.review-body { font-size: .93rem; color: var(--ink-mute); }
.review-foot { display: flex; align-items: center; justify-content: space-between; font-size: .78rem; color: var(--ink-mute); margin-top: auto; padding-top: .6rem; border-top: 1px dashed var(--line); }
.amazon-cta { text-align: center; margin-top: 2.4rem; }
.amazon-source-note { text-align: center; margin-top: 1rem; font-size: .82rem; color: var(--ink-mute); max-width: 56ch; margin-inline: auto; }

/* =============================================================
   15. FAQ accordion
   ============================================================= */
.faq-list { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: .8rem; }
.faq-item { background: var(--paper); border: 1px solid var(--line-soft); border-radius: 16px; overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem; text-align: left; font-family: var(--display); font-size: 1.08rem; color: var(--ink);
}
.faq-q .plus { flex-shrink: 0; width: 1.4rem; height: 1.4rem; position: relative; }
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; background: var(--accent-dark);
  transition: transform .35s var(--ease-out), opacity .35s;
}
.faq-q .plus::before { left: 0; right: 0; top: 50%; height: 2px; transform: translateY(-1px); }
.faq-q .plus::after { top: 0; bottom: 0; left: 50%; width: 2px; transform: translateX(-1px); }
.faq-item.is-open .faq-q .plus::after { transform: translateX(-1px) rotate(90deg); opacity: 0; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .45s var(--ease-soft);
}
.faq-a-inner { padding: 0 1.5rem 1.4rem; color: var(--ink-mute); font-size: .95rem; max-width: 62ch; }

/* =============================================================
   16. Final CTA
   ============================================================= */
.final-cta {
  border-radius: 32px; overflow: hidden; position: relative; isolation: isolate;
  background: var(--gradient-brand-surface);
  padding: clamp(2.6rem, 6vw, 4.5rem);
  text-align: center; color: var(--paper);
}
.final-cta::before {
  content: ""; position: absolute; inset: -30% -10% -10% -10%; z-index: -1;
  background: radial-gradient(50% 50% at 80% 20%, rgba(245,168,0,0.35), transparent 60%);
  filter: blur(60px);
}
.final-cta h2 { color: var(--paper); font-size: clamp(1.9rem, 4vw, 2.6rem); }
.final-cta h2 em { font-style: italic; color: #ffd666; }
.final-cta p { margin-top: 1rem; color: rgba(255,255,255,0.86); max-width: 52ch; margin-inline: auto; font-size: 1.05rem; }
.final-cta .hero-actions { justify-content: center; margin-top: 2rem; }
.final-cta .btn-ghost { color: var(--paper); border-color: rgba(255,255,255,0.4); }
.final-cta .btn-ghost:hover { border-color: var(--paper); }

/* =============================================================
   17. Footer
   ============================================================= */
.footer { background: var(--ink); color: rgba(255,255,255,0.72); padding-block: 3.5rem 2rem; }
.footer-grid { display: grid; gap: 2.4rem; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer .logo { color: var(--bg); }
.footer-tagline { margin-top: .8rem; font-size: .9rem; max-width: 34ch; }
.footer-heading { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .65rem; font-size: .92rem; }
.footer-links a:hover { color: var(--bg); }
.footer-legal {
  margin-top: 3rem; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,0.14);
  font-size: .8rem; color: rgba(255,255,255,0.5); display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between;
}
.footer-disclaimer { max-width: 70ch; font-size: .8rem; color: rgba(255,255,255,0.45); margin-top: 1rem; line-height: 1.6; }

/* =============================================================
   18. WhatsApp floating button
   ============================================================= */
.wa-float {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 95;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 16px 34px -10px rgba(37,211,102,0.55);
  transition: transform .4s var(--ease-bounce);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }
.wa-float::before {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.55);
  animation: waPulse 2.6s ease-out infinite;
}
@media (prefers-reduced-motion: reduce) { .wa-float::before { animation: none; } }
@keyframes waPulse {
  0% { transform: scale(0.9); opacity: .9; }
  80%, 100% { transform: scale(1.5); opacity: 0; }
}

/* =============================================================
   19. Page-specific: mayoristas hero band
   ============================================================= */
.page-band {
  background: var(--bg-2); padding-block: .6rem;
  text-align: center; font-size: .85rem; color: var(--ink-soft);
}
.page-band a { font-weight: 600; color: var(--accent-dark); text-decoration: underline; text-underline-offset: 3px; }

.opportunity-grid { display: grid; gap: 1.4rem; }
@media (min-width: 720px) { .opportunity-grid { grid-template-columns: repeat(3, 1fr); } }
.opportunity-card { text-align: left; }
.opportunity-icon {
  width: 2.8rem; height: 2.8rem; border-radius: 12px; background: var(--accent-soft);
  color: var(--accent-dark); display: grid; place-items: center; margin-bottom: 1rem;
}
.opportunity-icon svg { width: 1.5rem; height: 1.5rem; }
.opportunity-card:nth-child(3n+2) .opportunity-icon { background: var(--green-soft); color: var(--green-dark); }
.opportunity-card:nth-child(3n+3) .opportunity-icon { background: var(--pink-soft); color: var(--pink-dark); }

.steps-list { display: grid; gap: 1.2rem; counter-reset: step; }
@media (min-width: 720px) { .steps-list { grid-template-columns: repeat(4, 1fr); } }
.step-card { text-align: left; position: relative; padding-top: 2.6rem; }
.step-num {
  position: absolute; top: 1.6rem; left: 1.8rem;
  font-family: var(--display); font-style: italic; font-weight: 600; font-size: 1.5rem; color: var(--blue-dark);
}

/* =============================================================
   20. Credits page
   ============================================================= */
.page-credits main { padding-top: 9rem; padding-bottom: 5rem; }
.credits-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; max-width: 640px; }
.credits-list li { padding: 1rem 1.3rem; background: var(--paper); border: 1px solid var(--line-soft); border-radius: 14px; font-size: .92rem; color: var(--ink-mute); }
.credits-list a { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 2px; }
.back-link { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; color: var(--accent-dark); margin-bottom: 1rem; }

/* =============================================================
   21. Responsive tweaks
   ============================================================= */
@media (max-width: 539px) {
  .section { padding-block: 3.2rem; }
  .hero { padding-top: 6.5rem; }
  .price-card.is-featured { transform: none; }
}
