/* ===========================================================
   Nordics Advertorial — Shared Design System
   Brand palette pulled from wearenordics.com/wp-content/themes/nordics/assets/css/main.css
   Primary teal #004D62 · Kids pink #F8B4C0 · CTA yellow #FFD04A
   =========================================================== */

:root {
  /* Brand colors */
  --teal: #004D62;
  --teal-soft: #9BCBCB;
  --teal-bg: #F8FEFE;
  --teal-ink: #E1F6F6;
  --pink: #F8B4C0;
  --pink-soft: #FCDDE4;
  --pink-bg: #FFF6F7;
  --yellow: #FFD04A;
  --yellow-hover: #E8B83A;
  --yellow-soft: #FFF5D8;
  --green-light: #91E660;
  --green-dark: #198754;
  --red: #B91C1C;
  --red-bg: #FEF2F2;

  /* Neutrals */
  --text: #212529;
  --text-soft: #4B5563;
  --text-mute: #6B7280;
  --line: #E5E7EB;
  --line-soft: #F1F1F0;
  --bg: #FFFFFF;
  --bg-cream: #FAF8F5;

  /* Shape */
  --r-sm: 8px;
  --r: 16px;
  --r-lg: 24px;
  --shadow-soft: 0 2px 8px rgba(0, 77, 98, 0.06), 0 1px 2px rgba(0, 77, 98, 0.04);
  --shadow-card: 0 10px 30px rgba(0, 77, 98, 0.08), 0 2px 6px rgba(0, 77, 98, 0.04);
  --shadow-lift: 0 20px 50px rgba(0, 77, 98, 0.12);

  /* Rhythm */
  --col: 720px;
  --col-wide: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Nunito Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: 'Nunito', 'Nunito Sans', system-ui, sans-serif;
  color: var(--teal);
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-weight: 800;
}

a {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
a:hover { text-decoration-thickness: 2px; }
img { max-width: 100%; height: auto; display: block; }
strong { font-weight: 700; color: var(--teal); }

::selection { background: var(--yellow); color: var(--text); }

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

/* ---------- Hero ---------- */
.hero {
  width: 100%;
  background: var(--pink-bg);
  position: relative;
  padding: 32px 24px;
}
.hero-inline {
  margin: 28px 0 36px;
}
.hero-inline .hero-img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}
@media (min-width: 700px) {
  .hero-inline .hero-img { aspect-ratio: 5 / 6; max-height: 720px; }
}
.hero-inner {
  max-width: 640px;
  margin: 0 auto;
}
.hero-img {
  display: block;
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.hero-image {
  aspect-ratio: 16 / 9;
  width: 100%;
  background: linear-gradient(135deg, var(--pink-bg) 0%, var(--teal-ink) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  border-radius: var(--r-lg);
  max-width: 640px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .hero-image { aspect-ratio: 21 / 9; }
}
.hero-image-prompt {
  max-width: 720px;
  text-align: center;
  color: var(--teal);
}
.hero-image-prompt .label {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.8);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.hero-image-prompt p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-soft);
  font-style: italic;
}

/* ---------- Article ---------- */
.article {
  max-width: var(--col);
  margin: 0 auto;
  padding: 56px 24px 140px;
}
@media (min-width: 900px) {
  .article { padding: 80px 48px 120px; }
}

.headline {
  font-size: clamp(32px, 5.6vw, 64px);
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  font-weight: 900;
  text-wrap: balance;
}
.subhead {
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
  color: var(--text-soft);
  margin-bottom: 18px;
  font-weight: 400;
}

/* Callout under the byline (yellow-bordered highlight, like Earplugs example) */
.callout {
  margin: 20px 0 24px;
  padding: 14px 18px;
  border-left: 4px solid var(--yellow);
  background: var(--yellow-soft);
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.45;
  color: var(--teal);
}

/* 5-star rating row under the subtitle */
.headline-stars {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 36px;
  flex-wrap: wrap;
}
.headline-stars .stars-row {
  color: #F4B400;
  font-size: 22px;
  letter-spacing: 2px;
  line-height: 1;
}
.headline-stars .stars-meta {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.01em;
}
.headline-stars .stars-meta strong { color: var(--text); font-weight: 800; }

.article > p {
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 22px;
  color: var(--text);
}
.article > p.lede {
  font-size: 20px;
  line-height: 1.65;
  color: var(--text);
  font-weight: 500;
}

.article h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin: 64px 0 20px;
  letter-spacing: -0.02em;
}
.article h3 {
  font-size: clamp(20px, 2vw, 24px);
  margin: 36px 0 14px;
  color: var(--teal);
  font-weight: 700;
}

.article ul, .article ol {
  margin: 0 0 22px;
  padding-left: 24px;
  font-size: 18px;
  line-height: 1.7;
}
.article li { margin-bottom: 10px; }
.article ul li::marker { color: var(--pink); }
.article ol li::marker { color: var(--teal); font-weight: 700; }

/* Pull quote */
.pullquote {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.35;
  color: var(--teal);
  margin: 48px 0;
  padding: 8px 0 8px 28px;
  border-left: 4px solid var(--yellow);
  letter-spacing: -0.015em;
}

/* Scene block (for emotional opener in advertorial #3) */
.scene {
  background: var(--pink-bg);
  border-radius: var(--r);
  padding: 28px 32px;
  margin: 0 0 32px;
}
.scene p {
  font-size: 19px;
  line-height: 1.55;
  margin-bottom: 14px;
  color: var(--text);
}
.scene p:last-child { margin-bottom: 0; }

/* Image-prompt placeholder (inline body images) */
.figure {
  margin: 40px 0;
}
.figure-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--teal-ink) 0%, var(--pink-bg) 100%);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.figure-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(248, 180, 192, 0.3) 0%, transparent 50%);
  pointer-events: none;
}
.figure-prompt {
  max-width: 520px;
  text-align: center;
  color: var(--teal);
  position: relative;
  z-index: 1;
}
.figure-prompt .label {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.85);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.figure-prompt p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-soft);
  font-style: italic;
  margin: 0;
}
.figure-caption {
  font-size: 14px;
  color: var(--text-mute);
  text-align: center;
  margin-top: 12px;
  font-style: italic;
}

/* Real product photo as a figure (for files that include actual product images) */
.figure-real {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--teal-bg);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  overflow: hidden;
}
.figure-real img {
  max-width: 80%;
  max-height: 100%;
  object-fit: contain;
}

/* UGC / lifestyle photo (full-bleed cover) */
.reason-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(180deg, var(--pink-bg) 0%, var(--teal-bg) 100%);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}
.reason-photo img,
.reason-photo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--r-lg);
}
.reason-photo img.product {
  object-fit: contain;
  padding: 32px;
}

/* ---------- Split layout (image left, text right alternating) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 48px 0;
  align-items: center;
}
@media (min-width: 900px) {
  .article-wide .split {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
  .article-wide .split.reverse > :first-child { order: 2; }
  .article-wide { max-width: var(--col-wide); }
  .article-wide .article-prose,
  .article-wide .headline,
  .article-wide .subhead,
  .article-wide > p:not(.lede),
  .article-wide > h2,
  .article-wide > h3,
  .article-wide > .pullquote,
  .article-wide > .scene,
  .article-wide > ul,
  .article-wide > ol {
    max-width: var(--col);
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---------- Reason list (editorial vertical stack on mobile, alternating grid on desktop) ---------- */
.reasons-wrap {
  margin: 40px 0 56px;
}
.reasons-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.reasons-hint { display: none; }

.reason {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-cream) 100%);
  border-radius: 24px;
  padding: 24px 22px 28px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 20px 40px rgba(0, 77, 98, 0.08),
    0 6px 14px rgba(0, 77, 98, 0.04);
  border: 1px solid rgba(0, 77, 98, 0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 0;
}
.reason-cta-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  margin-top: 4px;
  transition: gap 200ms ease;
}
.reason-cta-inline:hover { gap: 10px; text-decoration: none; }
.reason-cta-inline::after { content: "→"; }

@media (min-width: 900px) {
  .reasons-wrap { margin: 80px 0 120px; }
  .reasons-list { gap: 120px; }
  .reason {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
  }
  .reason:nth-of-type(even) .reason-image-col { order: 2; }
  .reason:nth-of-type(even) .reason-text-col { order: 1; }

  /* Uniform portrait images for all reasons */
  .reason .reason-photo { aspect-ratio: 4 / 5; }

  /* Bigger, bolder headings */
  .reason h3 {
    font-size: clamp(32px, 3vw, 44px);
    line-height: 1.05;
    margin-bottom: 18px;
  }
  .reason .reason-text-col > p {
    font-size: 18px;
    line-height: 1.65;
  }

  /* Slightly larger badges on desktop, still tucked to the corner */
  .reason-num-badge {
    width: 52px;
    height: 52px;
    font-size: 26px;
    top: -10px;
    right: -10px;
    left: auto;
  }
}
.reason-image-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reason-num {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(80px, 14vw, 140px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.07em;
  background: linear-gradient(135deg, var(--teal) 0%, #006584 40%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: block;
  margin: 0 0 16px;
  position: relative;
}
.reason-num::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  background: var(--yellow);
  margin-top: 14px;
  border-radius: 2px;
}
.reason h3 {
  font-size: clamp(24px, 2.5vw, 30px);
  margin: 0 0 14px;
  color: var(--teal);
}
.reason p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text);
}

/* ---------- Fact box ---------- */
.fact {
  background: var(--teal-bg);
  border-radius: var(--r);
  padding: 28px;
  margin: 40px 0;
  border-left: 4px solid var(--pink);
}
.fact-eyebrow {
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 10px;
}
.fact h3 {
  margin: 0 0 16px;
  font-size: 22px;
  color: var(--teal);
}
.fact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fact-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  font-size: 16px;
}
.fact-list li:last-child { border-bottom: none; }
.fact-list .value {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  color: var(--teal);
  white-space: nowrap;
}
.fact-list li.total {
  margin-top: 4px;
  padding-top: 16px;
  border-top: 2px solid var(--teal);
  border-bottom: none;
  font-weight: 700;
}
.fact-list li.total .value { color: var(--red); font-size: 19px; }

/* ---------- Comparison block ---------- */
.compare {
  margin: 56px 0;
}
.compare-title {
  text-align: center;
  margin: 0 0 12px;
}
.compare-intro {
  text-align: center;
  font-size: 18px;
  color: var(--text-soft);
  max-width: 580px;
  margin: 0 auto 36px;
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .compare-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
.compare-col {
  background: var(--bg);
  border-radius: var(--r);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.compare-col.bad { background: var(--red-bg); border-top: 6px solid var(--red); }
.compare-col.good { background: var(--teal-bg); border-top: 6px solid var(--teal); }
.compare-label {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.compare-col.bad .compare-label { color: var(--red); }
.compare-col.good .compare-label { color: var(--teal); }
.compare-col h3 {
  margin: 0 0 20px;
  font-size: 22px;
  color: var(--text);
}
.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.compare-list li {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 77, 98, 0.08);
  align-items: start;
}
.compare-list li:last-child { border-bottom: none; }
.compare-time {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mute);
  padding-top: 3px;
}
.compare-text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
}

/* ---------- Tried list (for advertorial #3) ---------- */
.tried {
  background: var(--bg-cream);
  border-radius: var(--r);
  padding: 28px;
  margin: 32px 0;
  box-shadow: var(--shadow-soft);
}
.tried-label {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}
.tried ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tried li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
}
.tried li:last-child { border-bottom: none; }
.tried li .result {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  color: var(--text-mute);
  font-size: 14px;
  white-space: nowrap;
}

/* ---------- Social proof: trust band + testimonials ---------- */
.proof {
  margin: 80px 0 64px;
}
.proof-eyebrow {
  text-align: center;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 10px;
}
.proof h2 {
  text-align: center;
  margin: 0 auto 16px;
  max-width: 640px;
}
.proof-sub {
  text-align: center;
  color: var(--text-soft);
  margin: 0 auto 40px;
  max-width: 540px;
  font-size: 18px;
}

/* ---------- Brand band: pharmacies + customers over blurred UGC ---------- */
.brand-band {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin: 0 auto 24px;
  max-width: 720px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.proof-collage {
  margin: 0 auto 28px;
  max-width: 720px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0, 44, 61, 0.18);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.proof-collage.visible { opacity: 1; transform: translateY(0); }
.proof-collage img {
  display: block;
  width: 100%;
  height: auto;
}

.video-proof {
  margin: 0 auto 40px;
  max-width: 720px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0, 44, 61, 0.18);
  background: var(--bg, #fff);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.video-proof.visible { opacity: 1; transform: translateY(0); }
.video-proof-player {
  display: block;
  width: 100%;
  height: auto;
  background: #000;
}
.video-proof-text {
  padding: 28px 28px 32px;
  text-align: center;
}
.video-proof-headline {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--teal, #004D62);
  margin: 0 0 14px;
}
.video-proof-headline .underline-accent {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.video-proof-headline .underline-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 4px;
  background: var(--yellow, #FFD04A);
  border-radius: 4px;
}
.video-proof-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text, #2a2a2a);
  margin: 0;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.brand-band.visible { opacity: 1; transform: translateY(0); }
.brand-band-bg {
  position: absolute;
  inset: -8px;
  background-size: cover;
  background-position: center 35%;
  filter: blur(8px) brightness(0.45) saturate(1.1);
  transform: scale(1.08);
  z-index: -1;
}
.brand-band-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,77,98,0.55) 0%, rgba(0,44,61,0.7) 100%);
}
.brand-band-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 32px 28px;
  color: #fff;
  width: 100%;
}
.brand-band-eyebrow {
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
}
.brand-band-headline {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 18px;
  color: #fff;
}
.brand-band-pharmacies {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.pharmacy {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--teal);
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  box-shadow: 0 4px 12px rgba(0, 77, 98, 0.18);
}
.pharmacy.with-dot::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-light);
  box-shadow: 0 0 10px var(--green-light);
}
.pharmacy img.logo {
  height: 28px;
  width: auto;
  display: block;
}
.pharmacy img.logo-sopharmacy { height: 22px; }
.pharmacy img.logo-remedium { height: 18px; }
.pharmacy img.logo-ebag { height: 32px; }

/* Ozone.bg — the official PNG ships in white (for dark BGs); recolor to brand orange via mask */
.pharmacy .logo-ozone {
  display: block;
  height: 26px;
  width: 124px;
  background-color: #F58220;
  -webkit-mask: url('images/logos/ozone.png') no-repeat center / contain;
          mask: url('images/logos/ozone.png') no-repeat center / contain;
}
.logo-dm {
  display: inline-block;
  background: #FFC603;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 22px;
  padding: 5px 14px;
  border-radius: 5px;
  letter-spacing: -0.04em;
  line-height: 1;
}
.logo-text {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 17px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.logo-text.sopharmacy { color: #007A5E; }
.logo-text.sopharmacy::first-letter { color: #E2231A; }
.logo-text.remedium { color: #009B4E; font-style: italic; letter-spacing: 0; }
.logo-text.ebag {
  background: #F37021;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.logo-text.ozone { color: #001A57; }
.logo-text.ozone .dot { color: #E63946; font-weight: 800; }
.pharmacy.text-only {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: 13px;
}

/* ---------- Stats popup card: gradient + 3D + scroll animation ---------- */
.stats {
  position: relative;
  background:
    linear-gradient(135deg, #006584 0%, #004D62 45%, #002C3D 100%);
  border-radius: var(--r-lg);
  padding: 36px 24px;
  margin: 0 auto 32px;
  max-width: 720px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -2px 0 rgba(0, 0, 0, 0.25),
    0 30px 60px rgba(0, 77, 98, 0.28),
    0 10px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  transition: opacity 800ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.stats.visible { opacity: 1; transform: translateY(0) scale(1); }
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 0%, rgba(255, 208, 74, 0.22) 0%, transparent 55%);
  pointer-events: none;
  z-index: -1;
}
.stats::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 100%, rgba(248, 180, 192, 0.18) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}
@media (min-width: 700px) {
  .stats { padding: 44px 32px; }
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  margin-bottom: 28px;
}
@media (min-width: 700px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
}
.stat {
  text-align: center;
  padding: 14px 8px;
  position: relative;
}
.stats-grid .stat + .stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 699px) {
  .stats-grid .stat + .stat::before { display: none; }
}
.stat-num {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 4.5vw, 40px);
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 16px rgba(255, 208, 74, 0.25);
}
.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
}

/* Central warranty feature at bottom of stats card */
.stats-warranty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 22px 24px;
  background: rgba(255, 208, 74, 0.06);
  border: 1px solid rgba(255, 208, 74, 0.25);
  border-radius: var(--r);
  text-align: left;
  position: relative;
}
.stats-warranty-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--yellow);
  color: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(255, 208, 74, 0.3);
}
.stats-warranty-icon svg {
  width: 28px;
  height: 28px;
}
.stats-warranty-text {
  display: flex;
  flex-direction: column;
}
.stats-warranty-num {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stats-warranty-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 4px;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 700px) {
  .testimonials { grid-template-columns: 1fr 1fr; gap: 20px; }
}
.testimonial {
  background: var(--bg);
  border-radius: var(--r);
  padding: 18px;
  box-shadow: var(--shadow-card);
  display: flex;
  gap: 16px;
  align-items: stretch;
}
.testimonial-photo-side {
  flex: 0 0 110px;
}
.testimonial-photo-side img {
  width: 110px;
  height: 100%;
  min-height: 140px;
  object-fit: cover;
  border-radius: var(--r-sm);
  display: block;
}
.testimonial-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.testimonial-attribution {
  margin-top: auto;
  padding-top: 12px;
}
.testimonial-stars {
  color: var(--yellow);
  font-size: 17px;
  letter-spacing: 3px;
  margin-bottom: 8px;
}
.testimonial-quote {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  margin: 0 0 12px 0;
}
.testimonial-attribution {
  margin-top: auto;
  padding-top: 4px;
}

/* UGC grid */
.ugc-grid {
  margin: 0 auto 32px;
  max-width: 720px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}
.ugc-grid img {
  width: 100%;
  display: block;
  border-radius: var(--r-lg);
}

/* Brush picker — all 7 color dots fit on a single row (responsive size) */
.brush-picker {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 3px;
  margin: 10px auto 0;
  width: 100%;
  padding: 0;
}
@media (min-width: 540px) {
  .brush-picker { gap: 8px; }
}
.picker-dot {
  flex: 1 1 0;
  min-width: 0;
  max-width: 28px;
  aspect-ratio: 1;
  width: auto;
  height: auto;
  border-radius: 50%;
  background: var(--dot, #ccc);
  border: 1.5px solid #fff;
  box-shadow: 0 0 0 1px rgba(0, 77, 98, 0.18), 0 1px 3px rgba(0, 0, 0, 0.08);
  padding: 0;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
@media (min-width: 540px) {
  .picker-dot { flex: 0 0 26px; width: 26px; height: 26px; }
}
.picker-dot:hover { transform: scale(1.12); }
.picker-dot.active {
  transform: scale(1.18);
  box-shadow: 0 0 0 2px var(--teal), 0 2px 6px rgba(0, 0, 0, 0.12);
}
.picker-dot:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}
.bundle-brush-img { transition: opacity 0.15s ease; }
.bundle-brush-img.swapping { opacity: 0; }

/* Stat cards — 2x2 grid of colorful trust cards */
.stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 16px 0 28px;
}
@media (min-width: 700px) {
  .stat-cards { gap: 18px; }
}
.stat-card {
  position: relative;
  background: var(--card-bg, #fff);
  color: var(--card-fg, var(--text));
  border-radius: var(--r-lg);
  padding: 22px 18px 20px;
  box-shadow: 0 10px 24px rgba(0, 77, 98, 0.10), 0 0 0 1px rgba(0, 77, 98, 0.05);
  text-align: center;
  overflow: hidden;
  transition: transform 0.2s ease;
}
.stat-card:hover { transform: translateY(-3px); }
.stat-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--card-accent, rgba(255,255,255,0.3));
  z-index: 0;
}
.stat-card-icon,
.stat-card-num,
.stat-card-label { position: relative; z-index: 1; }
.stat-card-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  color: var(--card-fg);
}
.stat-card-icon svg { width: 100%; height: 100%; }
.stat-card-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--card-fg);
  margin-bottom: 6px;
}
@media (min-width: 700px) {
  .stat-card-num { font-size: 56px; }
}
.stat-card-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--card-fg);
  opacity: 0.86;
}
.stat-card.sc1 { --card-bg: linear-gradient(135deg, #FFD04A 0%, #FFB740 100%); --card-fg: #4A3B00; --card-accent: rgba(255,255,255,0.35); }
.stat-card.sc2 { --card-bg: linear-gradient(135deg, #F8B4C0 0%, #E88FA0 100%); --card-fg: #5A2330; --card-accent: rgba(255,255,255,0.32); }
.stat-card.sc3 { --card-bg: linear-gradient(135deg, #7CC4D9 0%, #4FA8C2 100%); --card-fg: #fff; --card-accent: rgba(255,255,255,0.25); }
.stat-card.sc4 { --card-bg: linear-gradient(135deg, #6BBE93 0%, #3F9D6F 100%); --card-fg: #fff; --card-accent: rgba(255,255,255,0.25); }

/* Lifestyle photo strip — 4 photos under the stats */
.lifestyle-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 0 32px;
}
@media (min-width: 700px) {
  .lifestyle-strip { grid-template-columns: repeat(4, 1fr); gap: 14px; }
}
.lifestyle-strip img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--r);
  box-shadow: var(--shadow-card);
  display: block;
}

/* Hand-drawn underline — bold SVG as background-image on the span */
.hd-underline {
  display: inline;
  color: var(--teal);
  white-space: nowrap;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 18' preserveAspectRatio='none'><path d='M4,12 C36,3 72,15 110,8 C148,2 180,14 216,6' fill='none' stroke='%23FFD04A' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 0.5em;
  padding-bottom: 0.1em;
}

/* Big playful number badges overlaid on reason images — one color per brush */
@font-face {
  font-family: 'Fredoka';
  src: url('fonts/Fredoka-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.reason-photo,
.ugc-grid {
  position: relative;
}
.reason-num-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  left: auto;
  bottom: auto;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--badge-bg, linear-gradient(135deg, #FFD04A 0%, #FFB740 100%));
  color: var(--badge-fg, #fff);
  font-family: 'Fredoka', var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(0, 77, 98, 0.22), 0 0 0 3px #fff;
  transform: none;
  pointer-events: none;
}
/* One color per brush variant — 7 reasons, 7 brushes */
.reason-num-badge.c1 { --badge-bg: linear-gradient(135deg, #FFD04A 0%, #FFB740 100%); --badge-fg: #4A3B00; }   /* Giraffe Yellow */
.reason-num-badge.c2 { --badge-bg: linear-gradient(135deg, #7CC4D9 0%, #4FA8C2 100%); --badge-fg: #fff; }      /* Giraffe Blue */
.reason-num-badge.c3 { --badge-bg: linear-gradient(135deg, #F8B4C0 0%, #E88FA0 100%); --badge-fg: #5A2330; }   /* Giraffe Pink */
.reason-num-badge.c4 { --badge-bg: linear-gradient(135deg, #F08A3E 0%, #D66E22 100%); --badge-fg: #fff; }      /* Fox Orange */
.reason-num-badge.c5 { --badge-bg: linear-gradient(135deg, #6BBE93 0%, #3F9D6F 100%); --badge-fg: #fff; }      /* Panda Green */
.reason-num-badge.c6 { --badge-bg: linear-gradient(135deg, #B07A4D 0%, #8B5A2B 100%); --badge-fg: #fff; }      /* Lion Brown */
.reason-num-badge.c7 { --badge-bg: linear-gradient(135deg, #2A2A2A 0%, #000 100%); --badge-fg: #fff; }         /* Panda Black */

/* Legacy position overrides — no longer used; badges are uniformly top-right */
.reason-num-badge.badge-bottom-right,
.reason-num-badge.badge-top-right { top: -8px; right: -8px; left: auto; bottom: auto; transform: none; }
@media (min-width: 900px) {
  .reason-num-badge.badge-bottom-right,
  .reason-num-badge.badge-top-right { top: -10px; right: -10px; }
}

/* Editorial opener */
.headline-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 4px;
}
.headline-thumb {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0, 77, 98, 0.18), 0 0 0 4px #fff, 0 0 0 6px var(--pink-bg);
  margin-top: 4px;
}
@media (max-width: 600px) {
  .headline-block { gap: 14px; }
  .headline-thumb { width: 72px; height: 72px; }
}
@media (min-width: 900px) {
  .headline-block {
    gap: 48px;
    align-items: center;
    margin-bottom: 8px;
  }
  .headline-thumb {
    width: 260px;
    height: 260px;
    margin-top: 0;
    box-shadow: 0 14px 32px rgba(0, 77, 98, 0.22), 0 0 0 8px #fff, 0 0 0 12px var(--pink-bg);
  }
  .article-wide .headline {
    font-size: clamp(44px, 4.8vw, 68px);
    line-height: 1.06;
  }
  .article-wide .subhead {
    font-size: 24px;
  }
}
.article-eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 800;
  color: var(--teal);
  margin: 0 0 12px;
}
.byline {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 24px 0 28px;
}
.byline-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-ink) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.byline-avatar.byline-avatar-photo {
  width: 52px;
  height: 52px;
  object-fit: cover;
  background: var(--pink-bg);
  box-shadow: 0 2px 6px rgba(0,77,98,0.15);
  display: block;
}
.byline-name {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text);
  font-size: 15px;
}
.byline-role {
  font-size: 13px;
  color: var(--text-muted);
}
.who-is-this-for {
  background: var(--pink-bg);
  border-left: 4px solid var(--teal);
  border-radius: var(--r-sm);
  padding: 18px 20px;
  margin: 0 0 28px;
}
.who-is-this-for h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin: 0 0 10px;
}
.who-is-this-for ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}
.who-is-this-for li { margin-bottom: 4px; }
.who-is-this-for li:last-child { margin-bottom: 0; }

/* Reason 7 — wide grid layout */
.reason.reason-wide {
  grid-template-columns: 1fr;
  gap: 24px;
  background: linear-gradient(180deg, var(--pink-bg) 0%, var(--bg) 100%);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  margin-top: 8px;
}
.reason-text-center {
  text-align: center;
}
.reason-text-center .reason-num {
  margin-left: auto;
  margin-right: auto;
}
.reason-grid-col {
  width: 100%;
}
.reason-grid-col .ugc-grid {
  margin: 0;
  max-width: 100%;
  box-shadow: var(--shadow-card);
}

/* Large initials badge for testimonials */
.testimonial-initials-large {
  width: 110px;
  height: 100%;
  min-height: 140px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-ink) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  letter-spacing: 0.02em;
  border-radius: var(--r-sm);
}

.testimonial-photo,
.testimonial-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
}
.testimonial-photo {
  object-fit: cover;
  border: 2px solid var(--teal-ink);
}
.testimonial-initials {
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 14px;
}
.testimonial-initials.doctor { background: var(--yellow); color: var(--teal); }
.testimonial-name {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  color: var(--text);
  font-size: 15px;
  line-height: 1.2;
}
.testimonial-meta {
  font-size: 13px;
  color: var(--text-mute);
  margin-top: 2px;
}

/* ---------- Offer / CTA ---------- */
.offer {
  position: relative;
  background: linear-gradient(180deg, var(--pink-bg) 0%, var(--teal-ink) 100%);
  border-radius: var(--r-lg);
  padding: 48px 28px;
  margin: 64px 0 32px;
  text-align: center;
  box-shadow: var(--shadow-lift);
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: opacity 800ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.offer.visible { opacity: 1; transform: translateY(0) scale(1); }

/* Per-card corner ribbons */
.bundle-brush,
.bundle-gift {
  overflow: hidden;
}
.card-ribbon {
  position: absolute;
  top: 14px;
  right: -42px;
  width: 150px;
  padding: 5px 0 4px;
  transform: rotate(45deg);
  text-align: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 4px 10px rgba(0, 77, 98, 0.2);
}
.card-ribbon.gold {
  background: linear-gradient(135deg, #FFD04A 0%, #FFB800 100%);
  color: var(--teal);
}
.card-ribbon.red {
  background: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
  color: #fff;
}

/* Countdown */
.countdown {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px 20px;
  margin: 0 auto 28px;
  max-width: 460px;
  box-shadow: var(--shadow-soft);
}
.countdown-label {
  text-align: center;
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 10px;
}
.countdown-label::before {
  content: "⏱  ";
}
.countdown-clock {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
}
.countdown-seg {
  text-align: center;
  min-width: 64px;
  background: var(--teal-bg);
  border-radius: var(--r-sm);
  padding: 8px 4px;
}
.countdown-num {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--teal);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.countdown-unit {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-mute);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
}
.countdown-sep {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: var(--text-mute);
  padding-top: 10px;
}
@media (min-width: 700px) {
  .offer { padding: 64px 48px; }
}
.offer-eyebrow {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--teal);
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.offer h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin: 0 0 12px;
  color: var(--teal);
}
.offer-sub {
  font-size: 18px;
  color: var(--text-soft);
  max-width: 480px;
  margin: 0 auto 32px;
}

.offer-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0 auto 32px;
  max-width: 480px;
}
@media (min-width: 600px) {
  .offer-products { grid-template-columns: repeat(4, 1fr); }
}
.offer-product {
  background: var(--bg);
  border-radius: var(--r);
  padding: 14px 10px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.offer-product img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin-bottom: 6px;
}
.offer-product-name {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--teal);
}

.offer-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  margin-bottom: 8px;
}
.offer-price-now {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 6vw, 56px);
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.03em;
}
.offer-price-was {
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  color: var(--text-mute);
  text-decoration: line-through;
  font-weight: 600;
}
.offer-save {
  display: inline-block;
  background: var(--yellow);
  color: var(--teal);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.offer-button {
  display: inline-block;
  background: var(--yellow);
  color: var(--teal);
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 20px;
  padding: 20px 48px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 20px rgba(255, 208, 74, 0.45), 0 2px 6px rgba(0, 77, 98, 0.1);
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
  min-height: 60px;
  border: none;
  cursor: pointer;
}
.offer-button:hover, .offer-button:focus-visible {
  background: var(--yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 208, 74, 0.5), 0 2px 6px rgba(0, 77, 98, 0.12);
  text-decoration: none;
}
.offer-button:active { transform: translateY(0); }

.bundle {
  margin: 0 auto 32px;
  max-width: 620px;
}

/* Two-row bundle: 2 big brushes on top, 2 free gifts below */
.bundle-brushes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.bundle-brush {
  background: var(--bg);
  border-radius: var(--r);
  padding: 18px 6px 16px;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
}
@media (min-width: 540px) {
  .bundle-brush { padding: 20px 14px 18px; }
}
.bundle-brush img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin-bottom: 10px;
}
.bundle-brush-name {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--teal);
  margin-bottom: 8px;
  line-height: 1.2;
}
.bundle-brush-tag {
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute);
  display: inline-block;
}
.bundle-brush-tag.discount {
  color: #fff;
  background: var(--red);
  padding: 5px 12px;
  border-radius: 14px;
  font-size: 12px;
}

.bundle-gift-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0 16px;
}
.bundle-gift-divider::before,
.bundle-gift-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,77,98,0.2), transparent);
}
.bundle-gift-label {
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--yellow);
  padding: 8px 18px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(255,208,74,0.4);
  white-space: nowrap;
}
.bundle-gift-label::before {
  content: "🎁  ";
}

.bundle-gifts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative;
}
.bundle-gift {
  background: linear-gradient(135deg, #FFF5D8 0%, #FFFFFF 100%);
  border-radius: var(--r);
  padding: 16px 12px 14px;
  text-align: center;
  border: 2px dashed var(--yellow);
  position: relative;
}
.bundle-gift img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin-bottom: 8px;
  max-height: 120px;
}
.bundle-gift-name {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--teal);
  margin-bottom: 4px;
}
.bundle-gift-free {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--yellow);
  padding: 3px 10px;
  border-radius: 10px;
}
.bundle-gift-strike { display: none; }
.bundle-gift-free { display: none; }
.bundle-choose {
  text-align: center;
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--text-soft);
  font-style: italic;
}

.offer-bullets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 480px;
  margin: 28px auto 0;
  text-align: left;
}
@media (min-width: 600px) {
  .offer-bullets { grid-template-columns: 1fr 1fr; gap: 14px 28px; max-width: 560px; }
}
.offer-bullet {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.offer-bullet-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 77, 98, 0.18);
}
.offer-bullet-icon svg { width: 22px; height: 22px; }
.offer-bullet-icon.ob-shipping { background: linear-gradient(135deg, #7CC4D9 0%, #4FA8C2 100%); }
.offer-bullet-icon.ob-warranty { background: linear-gradient(135deg, #6BBE93 0%, #3F9D6F 100%); }
.offer-bullet-icon.ob-head { background: linear-gradient(135deg, #F8B4C0 0%, #E88FA0 100%); color: #5A2330; }
.offer-bullet-icon.ob-battery { background: linear-gradient(135deg, #FFD04A 0%, #FFB740 100%); color: #4A3B00; }
.offer-guarantee {
  margin-top: 28px;
  font-size: 14px;
  color: var(--text-mute);
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0, 77, 98, 0.08);
  z-index: 50;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 400ms ease;
}
.sticky-cta.visible { transform: translateY(0); opacity: 1; }
.sticky-cta.hidden-offer { transform: translateY(100%); opacity: 0; }
.sticky-cta-preview {
  width: 96px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  margin-right: 4px;
}
@media (max-width: 380px) {
  .sticky-cta-preview { width: 72px; height: 40px; }
}
.sticky-cta-info { flex: 1; min-width: 0; }
.sticky-cta-price {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 19px;
  color: var(--teal);
}
.sticky-cta-was {
  font-size: 13px;
  color: var(--text-mute);
  text-decoration: line-through;
  margin-left: 6px;
  font-weight: 600;
}
.sticky-cta-label {
  font-size: 12px;
  color: var(--text-mute);
  margin-top: 2px;
}
.sticky-cta a {
  background: var(--yellow);
  color: var(--teal);
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 100px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 15px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(255, 208, 74, 0.4);
}
@media (min-width: 900px) { .sticky-cta { display: none; } }

/* ---------- Footer ---------- */
.footer {
  padding: 40px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text-mute);
  border-top: 1px solid var(--line);
  background: var(--teal-bg);
}
.footer-brand {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--teal);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  display: block;
}

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