/* ============================================================
   WILDERBLOMMETJIES — Design tokens
   Colors extracted directly from brand logo + product posters
   ============================================================ */
:root {
  /* Core palette, sampled from logo & poster art */
  --sage: #6B7A52;        /* logo wordmark green */
  --sage-deep: #4E5A3B;
  --lime: #9FC23D;         /* Bible cover green */
  --lime-light: #C8DE7E;
  --coral: #F5758C;        /* Bible cover pink / "Love" */
  --coral-deep: #E2506B;
  --lavender: #8571B5;     /* "Faith" */
  --lavender-light: #B3A4D6;
  --amber: #EAA832;        /* "Grow" / gold embroidery */
  --amber-deep: #D68E14;
  --sunshine: #EDD949;     /* Knee Protector yellow */
  --rust: #B85C2B;         /* isiZulu Bible cover */
  --rust-deep: #8F4520;

  --cream: #FDF8EE;
  --cream-deep: #F6EEDC;
  --paper: #FFFFFF;
  --ink: #2B2A22;
  --ink-soft: #5B5A4E;
  --ink-faint: #8C8A78;
  --line: rgba(43, 42, 34, 0.1);

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Rhythm */
  --container: 1240px;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-pill: 999px;

  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-soft: cubic-bezier(.22,.61,.36,1);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

* , *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

/* ============================================================
   Custom scrollbar
   ============================================================ */
html {
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: var(--coral) var(--cream-deep);
}
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
::-webkit-scrollbar-track {
  background: var(--cream-deep);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--coral), var(--lavender));
  border-radius: var(--radius-pill);
  border: 3px solid var(--cream-deep);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--coral-deep), var(--lavender));
}
::-webkit-scrollbar-corner {
  background: var(--cream-deep);
}
/* Cart drawer and any inner scroll areas get a slimmer bar */
.cart-items::-webkit-scrollbar { width: 8px; }
.cart-items::-webkit-scrollbar-thumb { border-width: 2px; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
svg { display: block; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  z-index: 999;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

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

/* ============================================================
   Top loading progress bar
   ============================================================ */
.load-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--lavender), var(--coral), var(--amber));
  z-index: 10000;
  transition: width .25s var(--ease-out), opacity .4s ease .15s;
  box-shadow: 0 0 10px rgba(245, 117, 140, 0.6);
}
.load-progress.is-done {
  width: 100%;
  opacity: 0;
}

/* ============================================================
   Loader
   ============================================================ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s var(--ease-out), visibility .6s;
}
.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-mark { color: var(--sage); position: relative; }
.loader-ring {
  stroke-dasharray: 540;
  stroke-dashoffset: 540;
  animation: loaderDraw 1.1s var(--ease-out) forwards;
  transform-origin: center;
}
.loader-w {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 600;
  fill: var(--sage);
  opacity: 0;
  animation: loaderFade .5s ease .5s forwards;
}
@keyframes loaderDraw {
  to { stroke-dashoffset: 0; }
}
@keyframes loaderFade {
  to { opacity: 1; }
}

/* ============================================================
   Custom cursor — desktop/precise-pointer only, replaces native cursor
   ============================================================ */
@media (hover: hover) and (pointer: fine) {
  html, body, a, button, input, textarea, select, .swatch, .vm-play,
  .icon-btn, .menu-toggle, .btn, .cart-close, .ci-qty button {
    cursor: none !important;
  }
}

.custom-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 0; height: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  transition: opacity .25s ease;
}
.custom-cursor.is-active { opacity: 1; }

.cursor-dot {
  position: absolute;
  top: 0; left: 0;
  width: 28px; height: 28px;
  margin: -14px 0 0 -14px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px -4px rgba(226, 80, 107, 0.55);
  transition: transform .2s var(--ease-bounce), background .25s ease;
}
.cursor-ring {
  position: absolute;
  top: 0; left: 0;
  width: 46px; height: 46px;
  margin: -23px 0 0 -23px;
  border-radius: 50%;
  border: 1.5px solid var(--sage);
  opacity: 0.55;
  transition: width .3s var(--ease-out), height .3s var(--ease-out),
              margin .3s var(--ease-out), border-color .3s ease, opacity .3s ease;
}

/* Hovering an interactive element: ring expands and hugs it, dot shrinks back */
.custom-cursor.is-hover .cursor-ring {
  width: 64px; height: 64px;
  margin: -32px 0 0 -32px;
  border-color: var(--coral);
  opacity: 0.35;
}
.custom-cursor.is-hover .cursor-dot { transform: scale(0.7); }

/* Active click: quick squeeze */
.custom-cursor.is-down .cursor-dot { transform: scale(0.55); }

@media (hover: none), (pointer: coarse) {
  .custom-cursor { display: none !important; }
}

/* ============================================================
   Utility
   ============================================================ */
.eyebrow-plain {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--coral-deep);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
/* Small rule that draws itself alongside the eyebrow text */
.eyebrow-plain::before {
  content: '';
  width: 26px;
  height: 1.5px;
  background: currentColor;
  flex: 0 0 auto;
}
.eyebrow-plain.center { justify-content: center; }
.eyebrow-plain.center { text-align: center; }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 20px;
  color: var(--ink);
  max-width: 18ch;
  text-wrap: balance;
}
.section-heading.center { max-width: none; text-align: center; margin-left: auto; margin-right: auto; }

.section-sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 52ch;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.98rem;
  border: none;
  transition: transform .35s var(--ease-bounce), box-shadow .35s var(--ease-out), background .3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(245, 117, 140, 0.55);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 30px -8px rgba(245, 117, 140, 0.6);
  background: var(--coral-deep);
}
.btn-primary:active { transform: translateY(-1px) scale(0.99); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover {
  background: var(--paper);
  border-color: var(--sage);
  transform: translateY(-2px);
}

/* Reveal-on-scroll base state */
/* Pure layout wrappers: no animation of their own, just become visible;
   their children carry the actual entrance animation, gated below */
/* ============================================================
   ENTRANCE ANIMATION LIBRARY
   Declarative: add data-anim="name" to any element and the
   IntersectionObserver in main.js adds .in when it scrolls into
   view. Every variant is visually distinct so no two elements on
   a screen animate the same way.
   ============================================================ */
.reveal { opacity: 0; will-change: transform, opacity, clip-path, filter; }
.reveal.in { opacity: 1; }
.reveal.in[data-anim] {
  animation-duration: .95s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(.2,.7,.2,1);
}

[data-anim="rise"].in      { animation-name: a_rise; }
@keyframes a_rise      { from { opacity:0; transform:translateY(46px) } to { opacity:1; transform:none } }
[data-anim="drop"].in      { animation-name: a_drop; }
@keyframes a_drop      { from { opacity:0; transform:translateY(-46px) } to { opacity:1; transform:none } }
[data-anim="left"].in      { animation-name: a_left; }
@keyframes a_left      { from { opacity:0; transform:translateX(60px) } to { opacity:1; transform:none } }
[data-anim="right"].in     { animation-name: a_right; }
@keyframes a_right     { from { opacity:0; transform:translateX(-60px) } to { opacity:1; transform:none } }
[data-anim="zoomin"].in    { animation-name: a_zoomin; }
@keyframes a_zoomin    { from { opacity:0; transform:scale(.78) } to { opacity:1; transform:scale(1) } }
[data-anim="zoomout"].in   { animation-name: a_zoomout; }
@keyframes a_zoomout   { from { opacity:0; transform:scale(1.22) } to { opacity:1; transform:scale(1) } }
[data-anim="flipx"].in     { animation-name: a_flipx; }
@keyframes a_flipx     { from { opacity:0; transform:perspective(900px) rotateX(58deg); transform-origin:top } to { opacity:1; transform:perspective(900px) rotateX(0) } }
[data-anim="flipy"].in     { animation-name: a_flipy; }
@keyframes a_flipy     { from { opacity:0; transform:perspective(900px) rotateY(-62deg); transform-origin:left } to { opacity:1; transform:perspective(900px) rotateY(0) } }
[data-anim="swing"].in     { animation-name: a_swing; transform-origin: top center; }
@keyframes a_swing     { 0% { opacity:0; transform:rotate(-7deg) translateY(-30px) } 60% { opacity:1; transform:rotate(3deg) } 100% { transform:rotate(0) } }
[data-anim="blur"].in      { animation-name: a_blur; }
@keyframes a_blur      { from { opacity:0; filter:blur(16px); transform:scale(1.05) } to { opacity:1; filter:blur(0); transform:none } }
[data-anim="wipeup"].in    { animation-name: a_wipeup; }
@keyframes a_wipeup    { from { opacity:0; clip-path:inset(100% 0 0 0) } to { opacity:1; clip-path:inset(0 0 0 0) } }
[data-anim="wipedown"].in  { animation-name: a_wipedown; }
@keyframes a_wipedown  { from { opacity:0; clip-path:inset(0 0 100% 0) } to { opacity:1; clip-path:inset(0 0 0 0) } }
[data-anim="wipeleft"].in  { animation-name: a_wipeleft; }
@keyframes a_wipeleft  { from { opacity:0; clip-path:inset(0 0 0 100%) } to { opacity:1; clip-path:inset(0 0 0 0) } }
[data-anim="wiperight"].in { animation-name: a_wiperight; }
@keyframes a_wiperight { from { opacity:0; clip-path:inset(0 100% 0 0) } to { opacity:1; clip-path:inset(0 0 0 0) } }
[data-anim="skew"].in      { animation-name: a_skew; }
@keyframes a_skew      { from { opacity:0; transform:skewY(7deg) translateY(40px) } to { opacity:1; transform:none } }
[data-anim="pop"].in       { animation-name: a_pop; }
@keyframes a_pop       { 0% { opacity:0; transform:scale(.5) } 70% { opacity:1; transform:scale(1.08) } 100% { transform:scale(1) } }
[data-anim="tilt"].in      { animation-name: a_tilt; }
@keyframes a_tilt      { from { opacity:0; transform:rotate(-9deg) translate(-24px,24px) } to { opacity:1; transform:none } }
[data-anim="growx"].in     { animation-name: a_growx; transform-origin: left; }
@keyframes a_growx     { from { opacity:0; transform:scaleX(0) } to { opacity:1; transform:scaleX(1) } }
[data-anim="growy"].in     { animation-name: a_growy; transform-origin: bottom; }
@keyframes a_growy     { from { opacity:0; transform:scaleY(0) } to { opacity:1; transform:scaleY(1) } }
[data-anim="spiral"].in    { animation-name: a_spiral; }
@keyframes a_spiral    { from { opacity:0; transform:rotate(-28deg) scale(.6) } to { opacity:1; transform:none } }
[data-anim="diagUL"].in    { animation-name: a_diagUL; }
@keyframes a_diagUL    { from { opacity:0; transform:translate(48px,48px) } to { opacity:1; transform:none } }
[data-anim="diagUR"].in    { animation-name: a_diagUR; }
@keyframes a_diagUR    { from { opacity:0; transform:translate(-48px,48px) } to { opacity:1; transform:none } }
[data-anim="curtain"].in   { animation-name: a_curtain; }
@keyframes a_curtain   { from { opacity:0; clip-path:inset(0 50% 0 50%) } to { opacity:1; clip-path:inset(0 0 0 0) } }
[data-anim="bounce"].in    { animation-name: a_bounce; }
@keyframes a_bounce    { 0% { opacity:0; transform:translateY(50px) } 55% { opacity:1; transform:translateY(-10px) } 100% { transform:translateY(0) } }
[data-anim="rollin"].in    { animation-name: a_rollin; }
@keyframes a_rollin    { from { opacity:0; transform:rotate(-120deg) scale(.4) } to { opacity:1; transform:none } }
[data-anim="iris"].in      { animation-name: a_iris; }
@keyframes a_iris      { from { opacity:0; clip-path:circle(0% at 50% 50%) } to { opacity:1; clip-path:circle(75% at 50% 50%) } }
[data-anim="peel"].in      { animation-name: a_peel; }
@keyframes a_peel      { from { opacity:0; transform:perspective(900px) rotateY(30deg) rotateX(-10deg) } to { opacity:1; transform:none } }
[data-anim="rubber"].in    { animation-name: a_rubber; }
@keyframes a_rubber    { 0% { opacity:0; transform:scale(.3,1.4) } 50% { opacity:1; transform:scale(1.1,.9) } 100% { transform:scale(1,1) } }
[data-anim="slantup"].in   { animation-name: a_slantup; }
@keyframes a_slantup   { from { opacity:0; transform:translateY(60px) rotate(3deg) } to { opacity:1; transform:none } }
[data-anim="tuck"].in      { animation-name: a_tuck; }
@keyframes a_tuck      { from { opacity:0; transform:translateX(30px) scale(.9) } to { opacity:1; transform:none } }
[data-anim="spring"].in    { animation-name: a_spring; }
@keyframes a_spring    { 0% { opacity:0; transform:scale(0) } 70% { opacity:1; transform:scale(1.15) } 100% { transform:scale(1) } }
[data-anim="unfold"].in    { animation-name: a_unfold; }
@keyframes a_unfold    { from { opacity:0; transform:perspective(800px) rotateX(-75deg) } to { opacity:1; transform:perspective(800px) rotateX(0) } }

/* ============================================================
   REDUCED MOTION
   One blanket reset — no hand-maintained selector list to keep
   in sync, which is what previously let elements get stuck at
   opacity:0 whenever a new section was added.
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal.in {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
    clip-path: none !important;
    filter: none !important;
  }
  *, *::before, *::after {
    animation: none !important;
    transition-duration: .01ms !important;
  }
}


/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 18px 0;
  transition: padding .4s var(--ease-out), background .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(253, 248, 238, 0.82);
  backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 1px 0 var(--line), 0 12px 30px -20px rgba(43,42,34,0.25);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--sage-deep);
}
.brand-icon { color: var(--sage); flex-shrink: 0; }
.brand-w-mini {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  fill: var(--sage);
}
.brand-word {
  font-family: var(--font-display);
  font-size: 1.28rem;
  letter-spacing: -0.01em;
}
@media (max-width: 640px) {
  .brand-word { display: none; }
}

.main-nav {
  display: flex;
  gap: 6px;
  background: rgba(255,255,255,0.5);
  padding: 5px;
  border-radius: var(--radius-pill);
}
.main-nav a {
  padding: 9px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: var(--radius-pill);
  transition: background .3s ease, color .3s ease;
  position: relative;
}
.main-nav a:hover { background: var(--paper); color: var(--ink); }
@media (max-width: 900px) {
  .main-nav { display: none; }
}

.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  position: relative;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--paper);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s var(--ease-bounce), background .3s ease;
}
.icon-btn:hover { transform: scale(1.08) rotate(-6deg); background: var(--lime-light); }
.cart-count {
  position: absolute;
  top: -3px; right: -3px;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transform: scale(0);
  transition: transform .4s var(--ease-bounce);
}
.cart-count.is-active { transform: scale(1); }

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--paper);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.menu-toggle span {
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .35s var(--ease-out), opacity .3s ease;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 900px) {
  .menu-toggle { display: flex; }
}

.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  width: min(82vw, 340px);
  height: 100vh;
  background: var(--paper);
  z-index: 490;
  padding: 100px 32px 32px;
  transform: translateX(100%);
  transition: transform .5s var(--ease-out);
  box-shadow: -20px 0 60px -20px rgba(0,0,0,0.2);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav nav { display: flex; flex-direction: column; gap: 6px; }
.mobile-nav a {
  padding: 14px 4px;
  font-size: 1.2rem;
  font-family: var(--font-display);
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 150px 28px 80px;
  overflow: hidden;
}
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 130px;
    text-align: center;
  }
}

.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}
.blob-lime {
  width: 420px; height: 420px;
  background: var(--lime-light);
  top: -120px; left: -100px;
  animation: blobDrift1 18s ease-in-out infinite;
}
.blob-coral {
  width: 380px; height: 380px;
  background: var(--coral);
  opacity: 0.22;
  bottom: -140px; right: -80px;
  animation: blobDrift2 22s ease-in-out infinite;
}
.blob-lavender {
  width: 300px; height: 300px;
  background: var(--lavender-light);
  opacity: 0.25;
  top: 30%; right: 20%;
  animation: blobDrift3 16s ease-in-out infinite;
}
@keyframes blobDrift1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px, 60px) scale(1.1); }
}
@keyframes blobDrift2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-50px, -30px) scale(1.08); }
}
@keyframes blobDrift3 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-30px, 40px) scale(0.95); }
}

.leaf { position: absolute; color: var(--sage); opacity: 0.18; }
.leaf-1 { top: 12%; right: 8%; animation: leafSway1 9s ease-in-out infinite; }
.leaf-2 { bottom: 15%; left: 4%; animation: leafSway2 11s ease-in-out infinite; }
@media (max-width: 700px) {
  .leaf { opacity: 0.1; }
  .leaf-1 { top: 4%; right: 2%; transform: scale(0.6); }
  .leaf-2 { display: none; }
}
@keyframes leafSway1 {
  0%,100% { transform: rotate(8deg); }
  50% { transform: rotate(-6deg) translateY(-10px); }
}
@keyframes leafSway2 {
  0%,100% { transform: rotate(-10deg); }
  50% { transform: rotate(5deg) translateY(8px); }
}

.floating-heart { position: absolute; color: var(--coral); opacity: 0.5; }
.heart-1 { top: 22%; left: 46%; animation: heartFloat1 5s ease-in-out infinite; }
.heart-2 { top: 55%; left: 38%; animation: heartFloat2 6.5s ease-in-out infinite; animation-delay: 1s; }
@keyframes heartFloat1 {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-16px) scale(1.15); }
}
@keyframes heartFloat2 {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(0.9); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  color: var(--sage-deep);
  padding: 8px 16px 8px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--line);
  margin-bottom: 26px;
  opacity: 0;
  animation: badgePop .7s var(--ease-bounce) .15s forwards;
}
@keyframes badgePop {
  0% { opacity: 0; transform: scale(0.6) translateY(10px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin: 0 0 28px;
  text-wrap: balance;
}
.hero-title .line {
  display: inline-block;
  opacity: 0;
}
.line-1 { color: var(--lavender); animation: wordDropRotate .8s var(--ease-bounce) .3s forwards; }
.line-2 { color: var(--coral); animation: wordSlideBlur .75s var(--ease-out) .48s forwards; }
.line-3 { color: var(--sage); animation: wordRise .8s var(--ease-bounce) .64s forwards; }
.line-4 { color: var(--amber-deep); animation: wordSkew .75s var(--ease-out) .8s forwards; }
.hero-dot { display: inline-block; color: var(--ink-faint); opacity: 0; font-weight: 300; }
.dot-1 { animation: dotFade .5s ease .42s forwards; }
.dot-2 { animation: dotFade .5s ease .58s forwards; }
.dot-3 { animation: dotFade .5s ease .74s forwards; }

@keyframes wordDropRotate {
  0% { opacity: 0; transform: translateY(-40px) rotate(-8deg); }
  100% { opacity: 1; transform: translateY(0) rotate(0); }
}
@keyframes wordSlideBlur {
  0% { opacity: 0; transform: translateX(-30px); filter: blur(6px); }
  100% { opacity: 1; transform: translateX(0); filter: blur(0); }
}
@keyframes wordRise {
  0% { opacity: 0; transform: translateY(30px) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes wordSkew {
  0% { opacity: 0; transform: skewX(12deg) translateX(20px); }
  100% { opacity: 1; transform: skewX(0) translateX(0); }
}
@keyframes dotFade {
  to { opacity: 1; }
}

.hero-sub {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 46ch;
  line-height: 1.6;
  margin: 0 0 34px;
  opacity: 0;
  animation: fadeUp .7s var(--ease-out) 1s forwards;
}
@media (max-width: 980px) { .hero-sub { max-width: none; margin-inline: auto; } }

.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp .7s var(--ease-out) 1.15s forwards;
}
@media (max-width: 980px) { .hero-actions { justify-content: center; flex-wrap: wrap; } }

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-trust {
  display: flex;
  gap: 28px;
  opacity: 0;
  animation: fadeIn .7s ease 1.35s forwards;
}
@media (max-width: 980px) { .hero-trust { justify-content: center; flex-wrap: wrap; } }
@keyframes fadeIn { to { opacity: 1; } }

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.trust-item svg { color: var(--sage); }

.hero-visual {
  position: relative;
  opacity: 0;
  animation: heroVisualIn 1s var(--ease-out) .5s forwards;
}
@keyframes heroVisualIn {
  0% { opacity: 0; transform: translateX(40px) rotate(3deg) scale(0.92); }
  100% { opacity: 1; transform: translateX(0) rotate(0) scale(1); }
}
.hero-visual-glow {
  position: absolute;
  inset: 8%;
  background: radial-gradient(circle, rgba(245,117,140,0.25), transparent 70%);
  filter: blur(40px);
  z-index: -1;
}
.hero-poster-img {
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px -30px rgba(43, 42, 34, 0.35);
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
  0%,100% { transform: translateY(0) rotate(0.4deg); }
  50% { transform: translateY(-14px) rotate(-0.4deg); }
}

.hero-float-card {
  position: absolute;
  background: var(--paper);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px -16px rgba(43,42,34,0.28);
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  opacity: 0;
}
.card-price {
  top: 8%;
  left: -8%;
  animation: cardDrop .8s var(--ease-bounce) 1.3s forwards, floatCard1 5s ease-in-out 2.1s infinite;
}
.fc-label { font-size: 0.72rem; color: var(--ink-faint); font-weight: 600; }
.fc-price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--coral-deep); }

.card-badge {
  bottom: 10%;
  right: -6%;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  color: var(--sage-deep);
  font-weight: 600;
  font-size: 0.9rem;
  animation: cardRise .8s var(--ease-bounce) 1.5s forwards, floatCard2 4.5s ease-in-out 2.3s infinite;
}
.card-badge svg { color: var(--lime); flex-shrink: 0; }

@keyframes cardDrop {
  0% { opacity: 0; transform: translateY(-30px) rotate(-8deg) scale(0.7); }
  100% { opacity: 1; transform: translateY(0) rotate(-4deg) scale(1); }
}
@keyframes cardRise {
  0% { opacity: 0; transform: translateY(30px) rotate(6deg) scale(0.7); }
  100% { opacity: 1; transform: translateY(0) rotate(3deg) scale(1); }
}
@keyframes floatCard1 {
  0%,100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-10px) rotate(-2deg); }
}
@keyframes floatCard2 {
  0%,100% { transform: translateY(0) rotate(3deg); }
  50% { transform: translateY(8px) rotate(5deg); }
}

@media (max-width: 980px) {
  .hero-float-card { display: none; }
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--ink-faint);
  background: transparent;
  opacity: 0;
  animation: fadeIn .6s ease 1.8s forwards;
}
.scroll-cue span {
  display: block;
  width: 4px; height: 8px;
  border-radius: 2px;
  background: var(--sage);
  margin: 7px auto 0;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
@media (max-width: 700px) {
  .scroll-cue { display: none; }
}

/* ============================================================
   Marquee strip
   ============================================================ */
.marquee-strip {
  background: var(--sage);
  padding: 16px 0;
  overflow: hidden;
  transform: rotate(-1.2deg) scale(1.02);
  margin: 20px 0;
}
.marquee-track {
  display: flex;
  gap: 20px;
  white-space: nowrap;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
}
.marquee-track .sep { color: var(--sunshine); font-size: 1rem; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   Video moment
   ============================================================ */
.video-moment {
  max-width: var(--container);
  margin: 70px auto;
  padding: 0 28px;
}
.vm-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .vm-inner { grid-template-columns: 1fr; gap: 36px; }
}
@keyframes revealSlideRight {
  0% { opacity: 0; transform: translateX(-50px); }
  100% { opacity: 1; transform: translateX(0); }
}
.vm-heading {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 18px;
}
.vm-body { color: var(--ink-soft); line-height: 1.65; font-size: 1.05rem; }

.vm-videos {
  display: flex;
  gap: 20px;
  justify-content: center;
}
@keyframes revealScaleIn {
  0% { opacity: 0; transform: scale(0.85) rotate(2deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
.vm-video-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 9/15;
  width: min(46%, 260px);
  flex: 0 0 auto;
  box-shadow: 0 30px 60px -20px rgba(43,42,34,0.35);
  transition: transform .5s var(--ease-out);
}
@media (max-width: 900px) {
  .vm-video-frame { width: min(42%, 220px); }
}
.frame-a { transform: rotate(-3deg) translateY(10px); }
.frame-b { transform: rotate(3deg) translateY(-10px); }
.vm-video-frame:hover { transform: rotate(0) translateY(-6px) scale(1.02); }
.vm-video-frame video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.vm-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(253,248,238,0.92);
  border: none;
  color: var(--coral-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 3px;
  transition: transform .3s var(--ease-bounce), opacity .3s ease;
}
.vm-play:hover { transform: scale(1.1); }
.vm-play.is-playing { opacity: 0; pointer-events: none; }

/* ============================================================
   Products intro
   ============================================================ */
.products-intro {
  max-width: 760px;
  margin: 60px auto 20px;
  padding: 0 28px;
  text-align: center;
}
.products-intro .section-heading { margin-left: auto; margin-right: auto; }
@keyframes headingCharRise {
  0% { opacity: 0; transform: translateY(24px) scale(0.97); filter: blur(3px); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

/* ============================================================
   Product blocks
   ============================================================ */
.product-block {
  max-width: var(--container);
  margin: 60px auto;
  padding: 40px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.product-block.reverse { direction: rtl; }
.product-block.reverse > * { direction: ltr; }
@media (max-width: 900px) {
  .product-block, .product-block.reverse {
    direction: ltr;
    grid-template-columns: 1fr;
    gap: 36px;
    margin: 40px auto;
  }
}

@keyframes mediaPopRotate {
  0% { opacity: 0; transform: scale(0.8) rotate(-6deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes mediaPopRotateRev {
  0% { opacity: 0; transform: scale(0.8) rotate(6deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

.pb-media-stack {
  position: relative;
  padding: 20px;
}
.pb-img {
  position: absolute;
  width: 62%;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -20px rgba(43,42,34,0.3);
  transition: transform .5s var(--ease-out);
}
.img-back {
  top: 0; left: 0;
  transform: rotate(-6deg);
  z-index: 1;
}
.img-front {
  bottom: 0; right: 0;
  transform: rotate(5deg);
  z-index: 2;
  width: 62%;
  position: relative;
  margin-top: 45%;
  margin-left: 30%;
}
.pb-media-stack:hover .img-back { transform: rotate(-9deg) translateY(-6px); }
.pb-media-stack:hover .img-front { transform: rotate(8deg) translateY(-6px); }

.pb-chip {
  position: absolute;
  bottom: -6px;
  left: 6px;
  background: var(--paper);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 14px 30px -14px rgba(43,42,34,0.3);
  z-index: 3;
  animation: chipWiggle 4s ease-in-out infinite;
}
.chip-flag svg { border-radius: 3px; overflow: hidden; }
@keyframes chipWiggle {
  0%,100% { transform: rotate(-3deg); }
  50% { transform: rotate(2deg); }
}

.pb-media-single { position: relative; padding: 30px; }
.pb-img-single {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -20px rgba(43,42,34,0.3);
}
.chip-crawl { top: 10px; right: 0; left: auto; bottom: auto; color: var(--sage-deep); }
.chip-crawl svg { color: var(--lime); }

.pb-media-collage { position: relative; padding: 24px; }
.collage-a {
  width: 68%;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -20px rgba(43,42,34,0.3);
  transform: rotate(-4deg);
}
.collage-b {
  width: 54%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 44px -16px rgba(43,42,34,0.3);
  position: absolute;
  bottom: -6%;
  right: 0;
  transform: rotate(6deg);
  border: 6px solid var(--paper);
}

@keyframes revealSlideUp {
  0% { opacity: 0; transform: translateY(36px); }
  100% { opacity: 1; transform: translateY(0); }
}

.pb-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 600;
  margin: 0 0 16px;
  line-height: 1.1;
}
.pb-desc {
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 1.04rem;
  margin: 0 0 22px;
  max-width: 46ch;
}
.pb-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 30px;
}
.pb-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.96rem;
  color: var(--ink);
}
.pb-features svg { color: var(--sage); flex-shrink: 0; }

.pb-size-note {
  font-size: 0.86rem;
  color: var(--ink-faint);
  margin: -12px 0 22px;
}
.pb-size-note a {
  color: var(--coral-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pb-buy {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.pb-price {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--coral-deep);
}
.pb-swatches { display: flex; gap: 8px; }
.swatch {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2.5px solid transparent;
  cursor: pointer;
  transition: transform .3s var(--ease-bounce), border-color .3s ease;
  position: relative;
}
.swatch:hover { transform: scale(1.15); }
.swatch.active { border-color: var(--ink); }
.swatch.active::after {
  content: '';
  position: absolute; inset: -6px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
}
.sw-green { background: var(--lime); }
.sw-pink { background: var(--coral); }
.sw-rust { background: var(--rust); }
.sw-babyblue { background: #A9CDE8; }
.sw-coral { background: var(--rust-deep); }

.btn-add { position: relative; overflow: hidden; }
.btn-add.is-added { background: var(--sage); }

/* ============================================================
   Potty section
   ============================================================ */
.potty-section {
  background: var(--lavender-light);
  background: linear-gradient(135deg, #EFE9F7, #F7E9EE);
  border-radius: var(--radius-lg);
  max-width: var(--container);
  margin: 80px auto;
  padding: 70px 50px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 700px) { .potty-section { padding: 50px 24px; margin: 50px 16px; } }

.potty-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) { .potty-inner { grid-template-columns: 1fr; gap: 36px; } }

@keyframes pottySpin {
  0% { opacity: 0; transform: rotate(-14deg) scale(0.7); }
  100% { opacity: 1; transform: rotate(-3deg) scale(1); }
}
.potty-media { position: relative; }
.potty-img {
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -20px rgba(133, 113, 181, 0.4);
  transform: rotate(-3deg);
}
.potty-ribbon {
  position: absolute;
  top: -14px;
  right: -14px;
  background: var(--amber);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  width: 74px; height: 74px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 26px -10px rgba(214,142,20,0.6);
  animation: ribbonSpin 5s linear infinite;
}
@keyframes ribbonSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes revealSlideLeft {
  0% { opacity: 0; transform: translateX(40px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   Fabric story
   ============================================================ */
.fabric-story {
  max-width: var(--container);
  margin: 90px auto;
  padding: 0 28px;
}
.fs-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .fs-inner { grid-template-columns: 1fr; gap: 30px; } }

.fs-swatch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 14px;
  max-width: 380px;
}
.fs-swatch {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  box-shadow: 0 14px 26px -14px rgba(43,42,34,0.3);
  opacity: 0;
  background-size: cover;
  background-position: center;
}
.sw-1 { background: var(--coral); grid-column: 1 / 3; }
.sw-2 { background: var(--lavender); }
.sw-3 { background: var(--amber); }
.sw-4 { background: var(--sunshine); grid-column: 2 / 4; }
.sw-5 { background: var(--sage); }
.fabric-story.in .sw-1 { animation: swatchFlip 0.7s var(--ease-bounce) 0.1s forwards; }
.fabric-story.in .sw-2 { animation: swatchFlip 0.7s var(--ease-bounce) 0.22s forwards; }
.fabric-story.in .sw-3 { animation: swatchFlip 0.7s var(--ease-bounce) 0.34s forwards; }
.fabric-story.in .sw-4 { animation: swatchFlip 0.7s var(--ease-bounce) 0.46s forwards; }
.fabric-story.in .sw-5 { animation: swatchFlip 0.7s var(--ease-bounce) 0.58s forwards; }
@keyframes swatchFlip {
  0% { opacity: 0; transform: rotateY(90deg) scale(0.7); }
  100% { opacity: 1; transform: rotateY(0) scale(1); }
}
.fs-text { opacity: 0; }
.fabric-story.in .fs-text { animation: revealSlideUp 0.85s var(--ease-out) 0.3s forwards; }
.fs-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 18px;
  max-width: 16ch;
}
.fs-body { color: var(--ink-soft); line-height: 1.65; font-size: 1.05rem; max-width: 48ch; }

/* ============================================================
   Story section
   ============================================================ */
.story-section {
  max-width: var(--container);
  margin: 90px auto;
  padding: 0 28px;
}
.story-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .story-inner { grid-template-columns: 1fr; gap: 36px; } }

@keyframes storyImgReveal {
  0% { opacity: 0; clip-path: inset(0 100% 0 0 round 32px); }
  100% { opacity: 1; clip-path: inset(0 0% 0 0 round 32px); }
}
.story-img {
  border-radius: var(--radius-lg);
  width: 100%;
  box-shadow: 0 30px 70px -24px rgba(43,42,34,0.35);
}

.story-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 500;
  line-height: 1.28;
  margin: 0 0 22px;
  color: var(--sage-deep);
}
.story-body {
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 1.04rem;
  margin: 0 0 16px;
  max-width: 50ch;
}
.story-mascot {
  margin-top: 30px;
  max-width: 260px;
  opacity: 0;
  animation: mascotBounceIn 0.9s var(--ease-bounce) 0.6s forwards;
}
@keyframes mascotBounceIn {
  0% { opacity: 0; transform: scale(0.5) translateY(30px); }
  70% { transform: scale(1.05) translateY(-4px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.mascot-img { border-radius: var(--radius-md); }

/* ============================================================
   Growth band (inside story-section)
   ============================================================ */
.growth-band {
  max-width: var(--container);
  margin: 90px auto 0;
  padding: 60px 28px 0;
  border-top: 1px solid var(--line);
}
.growth-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 600;
  text-align: center;
  max-width: 22ch;
  margin: 0 auto 46px;
}
.growth-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .growth-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .growth-grid { grid-template-columns: 1fr; }
}
.growth-item {
  opacity: 0;
}
.growth-band.in .gi-1 { animation: growthRise 0.7s var(--ease-bounce) 0.05s forwards; }
.growth-band.in .gi-2 { animation: growthRise 0.7s var(--ease-bounce) 0.18s forwards; }
.growth-band.in .gi-3 { animation: growthRise 0.7s var(--ease-bounce) 0.31s forwards; }
.growth-band.in .gi-4 { animation: growthRise 0.7s var(--ease-bounce) 0.44s forwards; }
@keyframes growthRise {
  0% { opacity: 0; transform: translateY(28px); }
  100% { opacity: 1; transform: translateY(0); }
}
.growth-mark {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.gi-1 .growth-mark { background: rgba(133,113,181,0.14); color: var(--lavender); }
.gi-2 .growth-mark { background: rgba(159,194,61,0.16); color: var(--sage-deep); }
.gi-3 .growth-mark { background: rgba(245,117,140,0.14); color: var(--coral-deep); }
.gi-4 .growth-mark { background: rgba(234,168,50,0.16); color: var(--amber-deep); }
.growth-item h4 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  margin: 0 0 10px;
  line-height: 1.3;
}
.growth-item p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   Companions section
   ============================================================ */
.companions-section {
  max-width: var(--container);
  margin: 100px auto;
  padding: 0 28px;
  text-align: center;
}
.companions-sub {
  max-width: 60ch;
  margin: 0 auto 56px;
}
.companions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: left;
}
@media (max-width: 800px) {
  .companions-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}
.companion-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  opacity: 0;
}
.companions-section.in .cc-1 { animation: companionPop 0.75s var(--ease-bounce) 0.1s forwards; }
.companions-section.in .cc-2 { animation: companionPop 0.75s var(--ease-bounce) 0.28s forwards; }
.companions-section.in .cc-3 { animation: companionPop 0.75s var(--ease-bounce) 0.46s forwards; }
@keyframes companionPop {
  0% { opacity: 0; transform: scale(0.85) translateY(24px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.companion-portrait {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 22px;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 4px var(--paper), 0 0 0 1px var(--line);
}
.companion-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.companion-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 6px;
  text-align: center;
}
.companion-role {
  text-align: center;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--coral-deep);
  margin: 0 0 16px;
}
.companion-bio {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.65;
  margin: 0;
  text-align: center;
}

/* ============================================================
   Materials & care section
   ============================================================ */
.materials-section {
  max-width: var(--container);
  margin: 100px auto;
  padding: 0 28px;
}
.materials-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  background: var(--cream-deep);
  border-radius: var(--radius-lg);
  padding: 56px;
}
@media (max-width: 900px) {
  .materials-inner { grid-template-columns: 1fr; padding: 40px 28px; gap: 36px; }
}
.materials-heading {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 600;
  margin: 0 0 18px;
  max-width: 18ch;
}
.materials-body {
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 1.02rem;
  margin: 0 0 16px;
  max-width: 52ch;
}
.materials-body a {
  color: var(--coral-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.materials-sizing {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}
.materials-sizing-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.materials-sizing-img {
  width: 100%;
  border-radius: var(--radius-sm);
}
.materials-section.in .materials-inner { animation: fadeUp 0.85s var(--ease-out) forwards; }
.materials-inner { opacity: 0; }

/* ============================================================
   Values strip
   ============================================================ */
.values-strip {
  max-width: var(--container);
  margin: 90px auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 800px) { .values-strip { grid-template-columns: repeat(2, 1fr); } }

.value-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: left;
  transition: transform .4s var(--ease-bounce), box-shadow .4s var(--ease-out);
  opacity: 0;
}
.value-card:hover { transform: translateY(-8px); box-shadow: 0 24px 44px -20px rgba(43,42,34,0.25); }
.value-card svg { margin-bottom: 16px; }
.value-card h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin: 0 0 8px; }
.value-card p { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.55; margin: 0; }

.vc-1 { color: var(--coral); }
.vc-2 { color: var(--sage); }
.vc-3 { color: var(--amber-deep); }
.vc-4 { color: var(--lavender); }
.values-strip.in .vc-1 { animation: valueCardIn 0.7s var(--ease-bounce) 0.05s forwards; }
.values-strip.in .vc-2 { animation: valueCardIn 0.7s var(--ease-bounce) 0.2s forwards; }
.values-strip.in .vc-3 { animation: valueCardIn 0.7s var(--ease-bounce) 0.35s forwards; }
.values-strip.in .vc-4 { animation: valueCardIn 0.7s var(--ease-bounce) 0.5s forwards; }
@keyframes valueCardIn {
  0% { opacity: 0; transform: translateY(40px) rotate(-3deg); }
  100% { opacity: 1; transform: translateY(0) rotate(0); }
}


/* ============================================================
   Delivery section
   ============================================================ */
.delivery-section {
  max-width: var(--container);
  margin: 90px auto;
  padding: 0 28px;
  text-align: center;
}
.delivery-section .eyebrow-plain,
.delivery-section .section-heading,
.delivery-section .payment-strip { opacity: 0; }
.delivery-section.in .eyebrow-plain,
.delivery-section.in .section-heading { animation: fadeUp 0.8s var(--ease-out) forwards; }
.delivery-section.in .section-heading { animation-delay: 0.1s; }
.delivery-section.in .payment-strip { animation: fadeIn 0.7s ease 0.6s forwards; }

.delivery-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 50px auto 40px;
  max-width: 820px;
}
@media (max-width: 700px) { .delivery-options { grid-template-columns: 1fr; } }

.delivery-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: left;
  border: 1.5px solid var(--line);
  transition: transform .4s var(--ease-bounce), border-color .4s ease;
  opacity: 0;
}
.delivery-card:hover { transform: translateY(-6px); border-color: var(--lime); }
.dc-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: flex; align-items: center; justify-content: center;
  color: var(--sage-deep);
  margin-bottom: 20px;
}
.delivery-card h3 { font-family: var(--font-display); font-size: 1.3rem; margin: 0 0 10px; }
.delivery-card p { color: var(--ink-soft); line-height: 1.6; margin: 0; font-size: 0.98rem; }

.delivery-section.in .dc-1 { animation: deliveryCardSlide1 0.8s var(--ease-out) 0.2s forwards; }
.delivery-section.in .dc-2 { animation: deliveryCardSlide2 0.8s var(--ease-out) 0.35s forwards; }
@keyframes deliveryCardSlide1 {
  0% { opacity: 0; transform: translateX(-30px) rotate(-2deg); }
  100% { opacity: 1; transform: translateX(0) rotate(0); }
}
@keyframes deliveryCardSlide2 {
  0% { opacity: 0; transform: translateX(30px) rotate(2deg); }
  100% { opacity: 1; transform: translateX(0) rotate(0); }
}

.payment-strip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--cream-deep);
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.yoco-mark { color: var(--ink); }

/* ============================================================
   CTA section
   ============================================================ */
.cta-section {
  max-width: var(--container);
  margin: 40px auto 100px;
  padding: 0 28px;
}
.cta-inner {
  background: linear-gradient(135deg, var(--sage), var(--sage-deep));
  border-radius: var(--radius-lg);
  padding: 70px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 700px) { .cta-inner { padding: 50px 26px; } }
.cta-inner::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%);
  top: -100px; right: -60px;
  border-radius: 50%;
}
.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 14px;
  max-width: 20ch;
  margin-inline: auto;
  position: relative;
}
.cta-sub {
  color: rgba(253,248,238,0.85);
  font-size: 1.05rem;
  margin: 0 0 34px;
  position: relative;
}
.cta-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 500px) { .cta-form { flex-direction: column; } }
.cta-form input {
  flex: 1;
  padding: 15px 20px;
  border-radius: var(--radius-pill);
  border: none;
  font-family: inherit;
  font-size: 0.98rem;
  background: rgba(253,248,238,0.95);
}
.cta-form input:focus { outline: 2.5px solid var(--sunshine); outline-offset: 2px; }
@keyframes ctaZoomIn {
  0% { opacity: 0; transform: scale(0.94); }
  100% { opacity: 1; transform: scale(1); }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 70px 28px 30px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(253,248,238,0.12);
}
.footer-brand .brand-mark { color: var(--cream); margin-bottom: 10px; }
.footer-brand .brand-icon { color: var(--lime); }
.footer-brand .brand-w-mini { fill: var(--lime); }
.footer-brand p { color: rgba(253,248,238,0.6); font-size: 0.92rem; }
.footer-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h5 {
  font-size: 0.82rem;
  text-transform: none;
  color: rgba(253,248,238,0.5);
  margin: 0 0 16px;
  font-weight: 600;
}
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col a {
  color: rgba(253,248,238,0.85);
  font-size: 0.95rem;
  transition: color .3s ease, transform .3s ease;
  display: inline-block;
}
.footer-col a:hover { color: var(--sunshine); transform: translateX(3px); }
.footer-bottom {
  max-width: var(--container);
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(253,248,238,0.5);
}

/* ============================================================
   Cart drawer
   ============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(43,42,34,0.4);
  backdrop-filter: blur(3px);
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
}
.cart-overlay.is-open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(92vw, 420px);
  height: 100vh;
  background: var(--cream);
  z-index: 900;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .5s var(--ease-out);
  box-shadow: -30px 0 80px -20px rgba(0,0,0,0.3);
}
.cart-drawer.is-open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 28px;
  border-bottom: 1px solid var(--line);
}
.cart-header h3 { font-family: var(--font-display); font-size: 1.4rem; margin: 0; }
.cart-close {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: none;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: transform .3s var(--ease-bounce);
}
.cart-close:hover { transform: rotate(90deg); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px;
}
.cart-empty { color: var(--ink-faint); text-align: center; margin-top: 60px; font-size: 0.98rem; }

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  animation: cartItemIn 0.4s var(--ease-bounce) forwards;
}
@keyframes cartItemIn {
  0% { opacity: 0; transform: translateX(20px); }
  100% { opacity: 1; transform: translateX(0); }
}
.ci-info { display: flex; flex-direction: column; gap: 3px; }
.ci-name { font-weight: 600; font-size: 0.96rem; }
.ci-meta { font-size: 0.82rem; color: var(--ink-faint); }
.ci-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ci-qty button {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: background .2s ease, transform .2s var(--ease-bounce);
}
.ci-qty button:hover { background: var(--lime-light); transform: scale(1.1); }
.ci-price { font-weight: 600; color: var(--coral-deep); white-space: nowrap; }
.ci-remove {
  background: none;
  border: none;
  color: var(--ink-faint);
  font-size: 0.78rem;
  text-decoration: underline;
  padding: 0;
}
.ci-remove:hover { color: var(--coral-deep); }

.cart-footer {
  padding: 24px 28px 30px;
  border-top: 1px solid var(--line);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 18px;
  font-family: var(--font-display);
}
.btn-checkout { width: 100%; justify-content: center; }

/* ============================================================
   Toast (add-to-cart confirmation)
   ============================================================ */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--cream);
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 500;
  z-index: 1000;
  opacity: 0;
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-bounce);
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}
.toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast svg { color: var(--lime); flex-shrink: 0; }

/* ============================================================
   SECTION BANDING
   Full-bleed background tones so the page reads as distinct
   chapters rather than one continuous cream scroll. Applied as
   a modifier on a section; inner content keeps its own max-width.
   ============================================================ */
.band {
  position: relative;
  padding-block: clamp(56px, 7vw, 104px);
}
/* Full-bleed tone painted behind a max-width section without needing
   to restructure its markup: the pseudo-element breaks out of the
   container to the full viewport width and sits behind the content. */
.band::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
}
.band > * { position: relative; z-index: 1; }
.band-paper::before  { background: var(--paper); }
.band-stone::before  { background: var(--cream-deep); }
.band-sage::before   { background: var(--sage); }
.band-sage { color: var(--cream); }
.band-sage .section-heading,
.band-sage .pb-title,
.band-sage .growth-item h4 { color: var(--cream); }
.band-sage .section-sub,
.band-sage .growth-item p { color: rgba(253,248,238,0.78); }
.band-sage .eyebrow-plain { color: var(--sunshine); }

/* Hairline rule between adjacent same-tone bands */
.band-hair { border-top: 1px solid var(--line); }

/* When a band directly follows another, collapse the doubled gap */
.band + .band { margin-top: 0; }

/* Banded sections manage their own vertical space via padding, so the
   original per-section margins would double the gap. */
.band.video-moment,
.band.potty-section,
.band.companions-section,
.band.values-strip { margin-block: 0; }

/* The potty card already had its own rounded panel + inner padding;
   inside a band that reads as a box-in-a-box, so flatten it. */
.band.potty-section { border-radius: 0; }

/* A sage band tints its own headings/body, but any light card sitting
   inside it must keep dark ink — otherwise cream text lands on white. */
.band-sage .companion-card,
.band-sage .value-card,
.band-sage .delivery-card {
  color: var(--ink);
}
.band-sage .companion-card h3,
.band-sage .value-card h4,
.band-sage .delivery-card h3 { color: var(--ink); }
.band-sage .companion-bio,
.band-sage .value-card p,
.band-sage .delivery-card p { color: var(--ink-soft); }
