@charset "UTF-8";
/* ═══════════════════════════════════════════════════
   style.css — Nidola, nursery & baby essentials
   Prefix: nid-   |  Archetype: SOFT ROUNDED "STORYBOOK"
   Theme: warm cream + honey + sky + blush  (rounded, pastel)
   Fonts: Baloo 2 (rounded display) + Nunito (rounded body) — reserved
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=Nunito:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --cream:      #fdf7f0;          /* soft cream — primary background */
  --cream-deep: #f8ede0;          /* a warmer cream for bands/cards */
  --milk:       #ffffff;
  --sand:       #f3e3cf;          /* warm sand */

  --honey:      #f6c768;          /* buttercup honey — PRIMARY accent / cart badge */
  --honey-deep: #ecae3e;          /* honey hover */
  --blush:      #f6b6ae;          /* soft blush rose — warm accent */
  --blush-deep: #ee9087;
  --sky:        #a9d4e2;          /* powder sky — cool accent */
  --sky-deep:   #79b6c9;
  --mint:       #bfe0c4;          /* soft mint */
  --mint-deep:  #88c191;
  --lilac:      #cdc3ea;          /* gentle lilac */

  --ink:        #4a3f3a;          /* warm soft brown-black (NOT harsh) */
  --ink-soft:   #6e6058;          /* secondary text */
  --ink-mist:   #9a8c81;          /* tertiary / labels */
  --hairline:   #efe1d0;

  --ff-display: 'Baloo 2', 'Trebuchet MS', system-ui, sans-serif;
  --ff-body:    'Nunito', system-ui, sans-serif;

  /* big rounded everything */
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --radius-xl: 48px;
  --radius-pill: 999px;

  --shadow-soft: 0 10px 30px rgba(120,90,60,0.10);
  --shadow-lift: 0 22px 50px rgba(120,90,60,0.18);
  --shadow-pop:  0 6px 0 rgba(120,90,60,0.10);   /* chunky storybook drop */

  --max-w: 1280px;
  --gutter: clamp(1rem, 4vw, 2.6rem);
  --anim: 0.26s cubic-bezier(.34,1.56,.64,1);    /* gentle springy */
}

/* ── Reset ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  font-size: clamp(0.96rem, 0.45vw + 0.86rem, 1.06rem);
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  font-weight: 500;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, textarea, select { font: inherit; }
::selection { background: var(--honey); color: var(--ink); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ── Gentle motion primitives ─────────────────────── */
@keyframes nid-float   { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes nid-float-s { 0%,100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-8px) rotate(-3deg); } }
@keyframes nid-bob     { 0%,100% { transform: translateY(0) rotate(4deg); } 50% { transform: translateY(-10px) rotate(4deg); } }

/* ── Utility ──────────────────────────────────────── */
.nid-sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.nid-container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }

/* Scroll reveal — gentle rise + fade, with optional stagger */
.nid-reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.22,1,.36,1); }
.nid-reveal.is-visible { opacity: 1; transform: none; }
.nid-reveal[data-delay="1"] { transition-delay: .08s; }
.nid-reveal[data-delay="2"] { transition-delay: .16s; }
.nid-reveal[data-delay="3"] { transition-delay: .24s; }
.nid-reveal[data-delay="4"] { transition-delay: .32s; }

.nid-eyebrow {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--blush-deep);
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--milk);
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 3px 12px rgba(120,90,60,0.08);
}
.nid-eyebrow::before { content: '✿'; font-size: 0.9em; color: var(--blush); letter-spacing: 0; }

.nid-section-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3vw + 0.5rem, 3rem);
  line-height: 1.12;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.nid-section-title em { font-style: normal; color: var(--blush-deep); }

/* ── ANNOUNCEMENT BAR — soft rounded ribbon ───────── */
.nid-announce {
  background: linear-gradient(90deg, var(--honey) 0%, var(--blush) 100%);
  color: var(--ink);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  font-weight: 700;
  text-align: center;
  padding: 0.55rem var(--gutter);
}
.nid-announce span + span::before { content: '•'; margin: 0 0.8rem; opacity: 0.5; }

/* ═══════════════════════════════════════════════════
   HEADER — archetype D : CLUSTER-LEFT, floating pill bar
   (brand blob + nav pills left · actions pushed right)
   ═══════════════════════════════════════════════════ */
.nid-head {
  position: sticky; top: 0; z-index: 100;
  padding: 0.7rem var(--gutter) 0.5rem;
  transition: padding var(--anim);
}
.nid-head-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 70px;
  padding: 0 0.7rem 0 1rem;
  max-width: var(--max-w);
  margin: 0 auto;
  background: var(--milk);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 26px rgba(120,90,60,0.12);
  transition: height var(--anim), box-shadow var(--anim);
}
.nid-head--stuck .nid-head-inner { height: 62px; box-shadow: 0 10px 30px rgba(120,90,60,0.18); }

/* Brand — rounded blob mark + chunky wordmark, clustered left */
.nid-brandslot {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
  padding-right: 0.4rem;
}
.nid-brandslot:hover .nid-brandslot-mark { transform: rotate(-8deg) scale(1.05); }
.nid-brandslot-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: radial-gradient(circle at 35% 30%, var(--honey) 0%, var(--honey-deep) 100%);
  border-radius: 46% 54% 52% 48% / 56% 48% 52% 44%;   /* organic blob */
  color: var(--ink);
  font-weight: 800;
  font-family: var(--ff-display);
  font-size: 1.15rem;
  box-shadow: inset 0 -3px 6px rgba(180,120,40,0.25);
  transition: transform var(--anim);
}

/* Nav — pills, clustered to the left next to brand */
.nid-nav-left {
  display: flex; gap: 0.2rem; align-items: center;
  margin-left: 0.4rem;
}
.nid-nav-right {
  display: flex; align-items: center; gap: 0.2rem;
  margin-left: auto;                 /* push actions far right */
}
.nid-head-actions { display: flex; align-items: center; gap: 0.3rem; margin-left: 0.4rem; }

.nid-nav-link {
  font-family: var(--ff-body);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink-soft);
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-pill);
  transition: color var(--anim), background var(--anim), transform var(--anim);
  white-space: nowrap;
}
.nid-nav-link:hover { color: var(--ink); background: var(--cream-deep); transform: translateY(-1px); }
.nid-nav-link.is-active { color: var(--blush-deep); background: var(--cream-deep); }

.nid-head-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  color: var(--ink);
  background: var(--cream-deep);
  border-radius: 50%;
  transition: color var(--anim), background var(--anim), transform var(--anim);
  position: relative;
}
.nid-head-btn:hover { background: var(--honey); transform: translateY(-2px) rotate(-4deg); }
.nid-head-btn svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

/* Cart badge — DNA-breaker: HONEY squircle blob + white ring */
.nid-cart-badge {
  background: var(--honey);
  color: var(--ink);
  font-size: 0.66rem;
  font-weight: 800;
  min-width: 21px; height: 21px;
  border-radius: 48% 52% 50% 50% / 55% 55% 45% 45%;   /* soft blob */
  display: flex; align-items: center; justify-content: center;
  padding: 0 5px;
  position: absolute;
  top: -3px; right: -3px;
  font-family: var(--ff-body);
  border: 2.5px solid var(--milk);
  box-shadow: 0 3px 8px rgba(200,150,40,0.4);
}

/* Hamburger (mobile) */
.nid-hamburger { display: none; flex-direction: column; gap: 5px; padding: 10px; align-items: center; justify-content: center; width: 44px; height: 44px; background: var(--cream-deep); border-radius: 50%; }
.nid-hamburger span { display: block; width: 20px; height: 2.6px; background: var(--ink); border-radius: 2px; transition: transform var(--anim), opacity var(--anim); }
.nid-hamburger.is-open span:nth-child(1) { transform: translateY(7.6px) rotate(45deg); }
.nid-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nid-hamburger.is-open span:nth-child(3) { transform: translateY(-7.6px) rotate(-45deg); }

/* Mobile nav overlay */
.nid-mobile-nav {
  display: none;
  position: fixed; inset: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  padding: 110px var(--gutter) 2rem;
  gap: 0.4rem;
  overflow-y: auto;
}
.nid-mobile-nav.is-open { display: flex; }
.nid-mobile-nav-link {
  display: block;
  padding: 0.95rem 1.2rem;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
  background: var(--milk);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}
.nid-mobile-nav-link:active { transform: scale(0.98); }
.nid-head:has(.nid-hamburger.is-open) .nid-brandslot,
.nid-head:has(.nid-hamburger.is-open) .nid-hamburger span,
.nid-head:has(.nid-hamburger.is-open) .nid-head-btn { color: var(--ink); }
.nid-head:has(.nid-hamburger.is-open) .nid-hamburger span { background: var(--ink); }

/* Search overlay */
.nid-search-overlay {
  position: fixed; inset: 0; background: rgba(74,63,58,0.42);
  display: none; align-items: flex-start; justify-content: center;
  padding: 6rem 1rem; z-index: 200;
}
.nid-search-overlay.is-open { display: flex; }
.nid-search-box {
  background: var(--cream);
  width: 100%; max-width: 640px;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lift);
}
.nid-search-input {
  width: 100%;
  border: 2.5px solid var(--hairline); outline: none;
  background: var(--milk);
  padding: 0.95rem 1.3rem;
  border-radius: var(--radius-pill);
  font-size: 1rem; color: var(--ink); font-weight: 600;
  transition: border-color var(--anim);
}
.nid-search-input:focus { border-color: var(--honey); }
.nid-search-results { margin-top: 0.85rem; max-height: 50vh; overflow-y: auto; }
.nid-search-result {
  display: flex; gap: 0.85rem; align-items: center;
  padding: 0.6rem; border-radius: var(--radius-md);
  transition: background var(--anim);
}
.nid-search-result:hover { background: var(--cream-deep); }
.nid-search-result img { width: 52px; height: 52px; object-fit: cover; border-radius: var(--radius-sm); }
.nid-search-result-name { font-weight: 700; font-size: 0.95rem; color: var(--ink); }
.nid-search-result-meta { font-size: 0.8rem; color: var(--ink-mist); font-weight: 600; }

/* Cart drawer */
.nid-cart-overlay { position: fixed; inset: 0; background: rgba(74,63,58,0.42); opacity: 0; pointer-events: none; transition: opacity 0.3s ease; z-index: 150; }
.nid-cart-overlay.is-open { opacity: 1; pointer-events: auto; }
.nid-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(430px, 92vw);
  background: var(--cream);
  z-index: 160;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.22,1,.36,1);
  display: flex; flex-direction: column;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}
.nid-drawer.is-open { transform: translateX(0); box-shadow: -16px 0 50px rgba(120,90,60,0.22); }
.nid-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 1.7rem;
}
.nid-drawer-title { font-family: var(--ff-display); font-weight: 700; font-size: 1.55rem; }
.nid-drawer-close { font-size: 1.5rem; line-height: 1; color: var(--ink); width: 38px; height: 38px; border-radius: 50%; background: var(--cream-deep); display: flex; align-items: center; justify-content: center; transition: background var(--anim); }
.nid-drawer-close:hover { background: var(--blush); }
.nid-drawer-items { flex: 1; overflow-y: auto; padding: 0.5rem 1.7rem; display: flex; flex-direction: column; gap: 0.9rem; }
.nid-drawer-empty { color: var(--ink-mist); text-align: center; padding: 2rem 0; font-weight: 600; }
.nid-drawer-foot { padding: 1.4rem 1.7rem; margin: 0 0.7rem 0.7rem; background: var(--milk); border-radius: var(--radius-lg); display: flex; flex-direction: column; gap: 0.9rem; box-shadow: var(--shadow-soft); }
.nid-drawer-subtotal { display: flex; justify-content: space-between; font-weight: 700; font-size: 1.1rem; }
.nid-drawer-subtotal-val { font-family: var(--ff-display); font-weight: 800; color: var(--blush-deep); }

.nid-cart-line {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 0.85rem; align-items: center;
  background: var(--milk); border-radius: var(--radius-md); padding: 0.7rem;
}
.nid-cart-line img { width: 64px; height: 64px; object-fit: cover; border-radius: var(--radius-sm); }
.nid-cart-line-name { font-size: 0.92rem; font-weight: 700; color: var(--ink); }
.nid-cart-line-opt { font-size: 0.76rem; color: var(--ink-mist); margin-top: 2px; font-weight: 600; }
.nid-cart-line-qty { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.4rem; }
.nid-cart-line-qty button { width: 24px; height: 24px; border-radius: 50%; background: var(--cream-deep); color: var(--ink); font-weight: 800; transition: background var(--anim); }
.nid-cart-line-qty button:hover { background: var(--honey); }
.nid-cart-line-price { font-family: var(--ff-display); font-weight: 800; font-size: 1.02rem; color: var(--ink); }
.nid-cart-line-remove { color: var(--ink-mist); font-size: 0.74rem; text-decoration: underline; display: block; margin-top: 0.3rem; text-align: right; font-weight: 600; }

/* ═══════════════════════════════════════════════════
   HERO — STORYBOOK rounded split card (pastel + blobs)
   ═══════════════════════════════════════════════════ */
.nid-hero {
  position: relative;
  padding: clamp(1.5rem, 4vw, 3rem) var(--gutter) clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}
/* soft pastel blobs floating behind everything */
.nid-hero-blob {
  position: absolute; border-radius: 50%; filter: blur(2px); opacity: 0.55; pointer-events: none; z-index: 0;
}
.nid-hero-blob.b1 { width: 320px; height: 320px; background: var(--sky); top: -90px; right: 6%; animation: nid-float 9s ease-in-out infinite; }
.nid-hero-blob.b2 { width: 230px; height: 230px; background: var(--mint); bottom: -70px; left: 4%; animation: nid-float 11s ease-in-out infinite; }
.nid-hero-blob.b3 { width: 150px; height: 150px; background: var(--lilac); top: 40%; left: 42%; animation: nid-float 8s ease-in-out infinite; }

.nid-hero-card {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto;
  background: linear-gradient(135deg, var(--milk) 0%, var(--cream-deep) 100%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lift);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(2rem, 4vw, 3.6rem);
  overflow: hidden;
}
.nid-hero-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 1.3rem; }
.nid-hero-headline {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 4.6vw + 0.4rem, 4.3rem);
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.nid-hero-headline em { font-style: normal; color: var(--blush-deep); position: relative; }
.nid-hero-headline em::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0.04em; height: 0.28em;
  background: var(--honey); border-radius: var(--radius-pill); z-index: -1; opacity: 0.55;
}
.nid-hero-lede {
  font-size: clamp(1.04rem, 0.45vw + 0.92rem, 1.2rem);
  color: var(--ink-soft);
  max-width: 46ch;
  font-weight: 600;
}
.nid-hero-ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* mini "stickers" row under CTAs — playful reassurance chips */
.nid-hero-stats {
  display: flex; flex-wrap: wrap; gap: 0.7rem;
  margin-top: 0.4rem;
}
.nid-hero-stat {
  display: inline-flex; align-items: baseline; gap: 0.4rem;
  background: var(--milk);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1rem;
  box-shadow: var(--shadow-soft);
}
.nid-hero-stat-num { font-family: var(--ff-display); font-weight: 800; font-size: 1.15rem; color: var(--blush-deep); line-height: 1; }
.nid-hero-stat-lbl { font-size: 0.74rem; font-weight: 700; color: var(--ink-soft); letter-spacing: 0.01em; }

/* hero image inside a rounded squircle + floating stickers */
.nid-hero-art { position: relative; }
.nid-hero-img {
  aspect-ratio: 1/1;
  border-radius: 42% 58% 54% 46% / 52% 44% 56% 48%;   /* organic squircle */
  overflow: hidden;
  background: var(--sand);
  box-shadow: 0 18px 44px rgba(120,90,60,0.20);
}
.nid-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.nid-hero-sticker {
  position: absolute;
  background: var(--milk);
  border-radius: var(--radius-pill);
  padding: 0.55rem 1.05rem;
  font-weight: 800; font-size: 0.84rem; color: var(--ink);
  box-shadow: var(--shadow-soft);
  display: inline-flex; align-items: center; gap: 0.4rem;
  z-index: 2;
}
.nid-hero-sticker .dot { width: 9px; height: 9px; border-radius: 50%; }
.nid-hero-sticker.s1 { top: 6%; left: -6%; animation: nid-float-s 6s ease-in-out infinite; }
.nid-hero-sticker.s1 .dot { background: var(--mint-deep); }
.nid-hero-sticker.s2 { bottom: 9%; right: -5%; animation: nid-bob 7s ease-in-out infinite; }
.nid-hero-sticker.s2 .dot { background: var(--blush); }
.nid-hero-sticker.s3 { bottom: 38%; left: -9%; animation: nid-float-s 8s ease-in-out infinite; }
.nid-hero-sticker.s3 .dot { background: var(--honey-deep); }

/* ── BUTTONS — chunky rounded pills ───────────────── */
.nid-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-weight: 700;
  font-size: 0.96rem;
  letter-spacing: 0.005em;
  padding: 0.85rem 1.7rem;
  border-radius: var(--radius-pill);
  transition: background var(--anim), color var(--anim), transform var(--anim), box-shadow var(--anim);
  border: 2.5px solid transparent;
  white-space: nowrap;
}
.nid-btn:hover { transform: translateY(-2px); }
.nid-btn:active { transform: translateY(0); }
.nid-btn-primary { background: var(--honey); color: var(--ink); border-color: var(--honey); box-shadow: 0 5px 0 var(--honey-deep); }
.nid-btn-primary:hover { background: var(--honey-deep); border-color: var(--honey-deep); box-shadow: 0 7px 0 #cf9526; }
.nid-btn-ghost { background: var(--milk); color: var(--ink); border-color: var(--milk); box-shadow: var(--shadow-soft); }
.nid-btn-ghost:hover { background: var(--cream-deep); border-color: var(--cream-deep); }
.nid-btn-white { background: var(--milk); color: var(--ink); border-color: var(--milk); }
.nid-btn-sage { background: var(--mint); color: var(--ink); border-color: var(--mint); box-shadow: 0 5px 0 var(--mint-deep); }
.nid-btn-sage:hover { background: var(--mint-deep); border-color: var(--mint-deep); }
.nid-btn-sm { padding: 0.5rem 1.1rem; font-size: 0.82rem; box-shadow: none !important; border-width: 2px; }
/* "Add" button on cards */
.nid-btn-accent { background: var(--blush); color: var(--ink); border-color: var(--blush); }
.nid-btn-accent:hover { background: var(--blush-deep); border-color: var(--blush-deep); color: var(--milk); }

/* ═══════════════════════════════════════════════════
   CATEGORY CARROUSEL — rounded scroll-snap chips
   ═══════════════════════════════════════════════════ */
.nid-collections {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2.5rem, 5vw, 4rem);
}
.nid-collections-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1.6rem; }
.nid-collections-link { font-size: 0.92rem; font-weight: 800; color: var(--blush-deep); background: var(--milk); padding: 0.5rem 1.1rem; border-radius: var(--radius-pill); box-shadow: var(--shadow-soft); transition: transform var(--anim); white-space: nowrap; }
.nid-collections-link:hover { transform: translateY(-2px); }
.nid-collections-scroll {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 6px 2px 1.2rem;
  -webkit-overflow-scrolling: touch;
}
.nid-collections-scroll::-webkit-scrollbar { display: none; }
.nid-collection-card {
  scroll-snap-align: start;
  flex: 0 0 clamp(170px, 22vw, 220px);
  display: flex; flex-direction: column;
  background: var(--milk);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: left;
  box-shadow: var(--shadow-soft);
  transition: transform var(--anim), box-shadow var(--anim);
}
.nid-collection-card:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: var(--shadow-lift); }
.nid-collection-img {
  aspect-ratio: 1/1;
  background: var(--sand);
  position: relative;
  overflow: hidden;
  margin: 8px 8px 0;
  border-radius: var(--radius-md);
}
.nid-collection-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.nid-collection-card:hover .nid-collection-img img { transform: scale(1.06); }
.nid-collection-num {
  position: absolute; top: 9px; left: 9px;
  font-family: var(--ff-display);
  font-size: 0.74rem;
  font-weight: 800;
  background: var(--honey);
  color: var(--ink);
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  box-shadow: 0 3px 8px rgba(200,150,40,0.35);
}
.nid-collection-body { padding: 0.85rem 1rem 1.15rem; display: flex; flex-direction: column; gap: 0.25rem; }
.nid-collection-name { font-family: var(--ff-display); font-weight: 700; font-size: 1.2rem; color: var(--ink); }
.nid-collection-count { font-size: 0.82rem; color: var(--ink-mist); font-weight: 700; }

/* ═══════════════════════════════════════════════════
   "BY AGE / STAGE" STORYBOOK TIMELINE  (rounded steps)
   ═══════════════════════════════════════════════════ */
.nid-stages { padding: clamp(3rem, 6vw, 5rem) 0; }
.nid-stages-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.2vw, 1.6rem);
  position: relative;
  margin-top: 1rem;
}
/* dashed connecting path behind the stepping-stones */
.nid-stages-track::before {
  content: ''; position: absolute; top: 56px; left: 8%; right: 8%; height: 0;
  border-top: 3px dashed var(--sand); z-index: 0;
}
.nid-stage {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.7rem;
}
.nid-stage-bubble {
  width: 112px; height: 112px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: transform var(--anim);
  overflow: hidden;
  border: 5px solid var(--milk);
}
.nid-stage:hover .nid-stage-bubble { transform: translateY(-6px) scale(1.04); }
.nid-stage-bubble img { width: 100%; height: 100%; object-fit: cover; }
.nid-stage:nth-child(1) .nid-stage-bubble { background: var(--blush); }
.nid-stage:nth-child(2) .nid-stage-bubble { background: var(--honey); }
.nid-stage:nth-child(3) .nid-stage-bubble { background: var(--mint); }
.nid-stage:nth-child(4) .nid-stage-bubble { background: var(--sky); }
.nid-stage-age {
  font-family: var(--ff-display); font-weight: 800;
  font-size: 1.2rem; color: var(--ink);
  background: var(--milk); padding: 0.2rem 0.95rem; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft); margin-top: -0.3rem;
}
.nid-stage-name { font-weight: 700; color: var(--ink-soft); font-size: 0.96rem; }
.nid-stage-desc { font-size: 0.86rem; color: var(--ink-mist); font-weight: 600; line-height: 1.5; max-width: 22ch; }
.nid-stage-link { font-size: 0.84rem; font-weight: 800; color: var(--blush-deep); margin-top: 0.1rem; }
.nid-stage-link:hover { color: var(--ink); }

/* ═══════════════════════════════════════════════════
   PRODUCT CARDS — rounded, soft lift
   ═══════════════════════════════════════════════════ */
.nid-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: clamp(1.2rem, 2vw, 1.8rem);
}

.nid-card {
  background: var(--milk);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--anim), box-shadow var(--anim);
  box-shadow: var(--shadow-soft);
  position: relative;
}
.nid-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lift); }
.nid-card-img-wrap {
  aspect-ratio: 1/1;
  background: var(--cream-deep);
  overflow: hidden;
  position: relative;
  margin: 9px 9px 0;
  border-radius: var(--radius-md);
}
.nid-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.nid-card:hover .nid-card-img-wrap img { transform: scale(1.06); }
.nid-card-tag {
  position: absolute; top: 11px; left: 11px;
  background: var(--mint);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
}
.nid-card-body { padding: 1.1rem 1.25rem 1.35rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.nid-card-cat {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sky-deep);
}
.nid-card-name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.22rem;
  line-height: 1.2;
  color: var(--ink);
}
.nid-card-name a { color: inherit; }
.nid-card-name a:hover { color: var(--blush-deep); }
.nid-card-short {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.55;
  flex: 1; font-weight: 500;
}
.nid-card-chips { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.1rem; }
.nid-chip {
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--cream-deep);
  color: var(--ink-soft);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
}
.nid-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 0.5rem; padding-top: 0.85rem;
  border-top: 2px dashed var(--hairline);
}
.nid-price { font-family: var(--ff-display); font-weight: 800; font-size: 1.45rem; color: var(--ink); }
.nid-price-sub { font-size: 0.74rem; color: var(--ink-mist); margin-left: 0.25rem; font-weight: 700; }

/* ═══════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════ */
.nid-section { padding: clamp(3rem, 6vw, 5rem) 0; }
.nid-section-head {
  text-align: center;
  max-width: 720px; margin: 0 auto clamp(2rem, 4vw, 3rem);
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.nid-section-head .nid-eyebrow { justify-content: center; }
.nid-section-head .nid-section-title { max-width: 22ch; }
.nid-section-lede { color: var(--ink-soft); font-size: 1.04rem; max-width: 58ch; line-height: 1.7; font-weight: 600; }

/* ── PILLARS → soft rounded "promise" cards ───────── */
.nid-pillars {
  background: var(--cream-deep);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.nid-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.1rem, 2vw, 1.6rem);
}
.nid-pillar {
  background: var(--milk);
  border-radius: var(--radius-lg);
  padding: 2.1rem 1.9rem;
  display: flex; flex-direction: column; gap: 0.7rem;
  box-shadow: var(--shadow-soft);
  transition: transform var(--anim), box-shadow var(--anim);
}
.nid-pillar:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.nid-pillar-icon {
  width: 58px; height: 58px;
  padding: 14px;
  border-radius: 46% 54% 52% 48% / 56% 48% 52% 44%;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.nid-pillar:nth-child(1) .nid-pillar-icon { background: var(--blush); }
.nid-pillar:nth-child(2) .nid-pillar-icon { background: var(--honey); }
.nid-pillar:nth-child(3) .nid-pillar-icon { background: var(--mint); }
.nid-pillar-title { font-family: var(--ff-display); font-weight: 700; font-size: 1.35rem; color: var(--ink); }
.nid-pillar-text { font-size: 0.94rem; color: var(--ink-soft); line-height: 1.65; font-weight: 500; }

/* ── FEATURED grid header ─────────────────────────── */
.nid-featured-head {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; gap: 1rem;
}
.nid-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 1.5rem;
}

/* ── EDITORIAL → rounded story panel (story + image) ─ */
.nid-editorial {
  background: var(--sky);
}
.nid-editorial-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  background: var(--milk);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-soft);
}
.nid-editorial-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/6;
  background: var(--sand);
}
.nid-editorial-img img { width: 100%; height: 100%; object-fit: cover; }
.nid-editorial-body { display: flex; flex-direction: column; gap: 1.2rem; align-items: flex-start; }
.nid-editorial-body p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.8; font-weight: 500; }
.nid-editorial-body p em { font-style: normal; color: var(--blush-deep); font-weight: 700; }

/* ── GIFT GUIDE → rounded "story chapter" cards ────── */
.nid-guide-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.nid-guide-card {
  background: var(--milk);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.7rem;
  box-shadow: var(--shadow-soft);
  transition: transform var(--anim), box-shadow var(--anim);
  position: relative; overflow: hidden;
}
.nid-guide-card::before {
  content: ''; position: absolute; top: -28px; right: -28px;
  width: 90px; height: 90px; border-radius: 50%;
  background: var(--cream-deep); z-index: 0;
}
.nid-guide-card:nth-child(3n+1)::before { background: #fbe6c9; }
.nid-guide-card:nth-child(3n+2)::before { background: #fbe0dc; }
.nid-guide-card:nth-child(3n)::before   { background: #dcefe0; }
.nid-guide-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.nid-guide-card > * { position: relative; z-index: 1; }
.nid-guide-card-num {
  font-family: var(--ff-display); font-weight: 800;
  font-size: 1.5rem; color: var(--blush-deep); line-height: 1;
}
.nid-guide-card-title { font-family: var(--ff-display); font-weight: 700; font-size: 1.28rem; color: var(--ink); line-height: 1.25; }
.nid-guide-card-text { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.6; font-weight: 500; }
.nid-guide-card-link { font-size: 0.84rem; color: var(--blush-deep); font-weight: 800; margin-top: auto; }
.nid-guide-card-link:hover { color: var(--ink); }

/* ── TESTIMONIAL → soft speech bubble ─────────────── */
.nid-testimonial {
  padding: clamp(3.5rem, 7vw, 5.5rem) var(--gutter);
  background: var(--cream);
}
.nid-testimonial-inner {
  max-width: 760px; margin: 0 auto;
  background: var(--honey);
  border-radius: var(--radius-xl);
  padding: clamp(2.2rem, 4vw, 3.4rem);
  display: flex; flex-direction: column; gap: 1.2rem; align-items: center; text-align: center;
  position: relative;
  box-shadow: var(--shadow-soft);
}
/* speech-bubble tail */
.nid-testimonial-inner::after {
  content: ''; position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 22px solid transparent; border-right: 22px solid transparent;
  border-top: 24px solid var(--honey);
}
.nid-testimonial-quote {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 1.8vw + 0.6rem, 1.95rem);
  line-height: 1.4;
  color: var(--ink);
}
.nid-testimonial-quote::before { content: '“'; font-size: 2em; line-height: 0; vertical-align: -0.4em; color: var(--milk); margin-right: 0.08em; }
.nid-testimonial-author { font-size: 0.9rem; font-weight: 800; color: var(--ink-soft); }

/* ── NEWSLETTER → rounded panel ───────────────────── */
.nid-newsletter {
  background: var(--cream);
  padding: 0 var(--gutter) clamp(3.5rem, 6vw, 5rem);
}
.nid-newsletter-inner {
  max-width: 760px; margin: 0 auto;
  background: linear-gradient(135deg, var(--mint) 0%, var(--sky) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(2.4rem, 5vw, 4rem);
  text-align: center;
  display: flex; flex-direction: column; gap: 1rem; align-items: center;
  box-shadow: var(--shadow-soft);
}
.nid-newsletter-inner .nid-eyebrow { background: var(--milk); }
.nid-newsletter-title { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.7rem, 2.5vw + 0.4rem, 2.5rem); color: var(--ink); }
.nid-newsletter-desc { color: var(--ink-soft); font-weight: 600; max-width: 50ch; }
.nid-newsletter-form {
  display: flex; width: 100%; max-width: 470px; gap: 0.55rem;
  margin-top: 0.4rem;
}
.nid-newsletter-input {
  flex: 1;
  border: 2.5px solid transparent;
  background: var(--milk);
  padding: 0.9rem 1.3rem;
  border-radius: var(--radius-pill);
  font-size: 0.96rem; font-weight: 600;
  outline: none;
  transition: border-color var(--anim);
}
.nid-newsletter-input:focus { border-color: var(--honey); }
.nid-newsletter-privacy { font-size: 0.8rem; color: var(--ink-soft); font-weight: 600; }

/* ═══════════════════════════════════════════════════
   FOOTER — soft, rounded top
   ═══════════════════════════════════════════════════ */
.nid-foot {
  background: var(--cream-deep);
  color: var(--ink-soft);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter) 1.6rem;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin-top: 1rem;
}
.nid-foot-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: clamp(1.6rem, 3vw, 3rem);
  max-width: var(--max-w); margin: 0 auto;
  padding-bottom: 2.4rem;
  border-bottom: 2px dashed var(--hairline);
}
.nid-foot-brand { font-family: var(--ff-display); font-weight: 800; font-size: 1.95rem; color: var(--ink); margin-bottom: 0.6rem; }
.nid-foot-tagline { color: var(--ink-soft); font-size: 0.94rem; line-height: 1.6; margin-bottom: 1rem; font-weight: 600; }
.nid-foot-address { font-size: 0.86rem; line-height: 1.65; color: var(--ink-mist); margin-bottom: 0.9rem; font-weight: 600; }
.nid-foot-hours { font-size: 0.82rem; line-height: 1.7; color: var(--ink-mist); font-weight: 600; }
.nid-foot-col h4 {
  font-family: var(--ff-display); font-weight: 800;
  font-size: 1.02rem;
  color: var(--ink);
  margin-bottom: 1rem;
}
.nid-foot-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.nid-foot-col a { font-size: 0.9rem; color: var(--ink-soft); transition: color var(--anim); font-weight: 600; }
.nid-foot-col a:hover { color: var(--blush-deep); }
.nid-foot-lang {
  max-width: var(--max-w); margin: 1.5rem auto 0;
  display: flex; gap: 0.4rem; align-items: center;
  flex-wrap: wrap;
}
.nid-foot-lang-label {
  font-family: var(--ff-body); font-size: 0.74rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink-mist);
  margin-right: 0.5rem;
}
.nid-lang-btn {
  font-size: 0.8rem; font-weight: 800;
  color: var(--ink-soft);
  padding: 0.42rem 0.9rem;
  border-radius: var(--radius-pill);
  background: var(--milk);
  transition: color var(--anim), background var(--anim), transform var(--anim);
}
.nid-lang-btn:hover { transform: translateY(-1px); }
.nid-lang-btn.is-active { color: var(--ink); background: var(--honey); }
.nid-foot-fine {
  max-width: var(--max-w); margin: 1.3rem auto 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.8rem; color: var(--ink-mist); font-weight: 600;
}
.nid-foot-fine-links { display: flex; gap: 1.2rem; }
.nid-foot-fine-links a { color: inherit; }

/* ═══════════════════════════════════════════════════
   PRODUCT DETAIL PAGE
   ═══════════════════════════════════════════════════ */
.nid-pdp { padding: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(3.5rem, 6vw, 5rem); }
.nid-breadcrumb {
  font-size: 0.84rem; color: var(--ink-mist); font-weight: 700;
  display: flex; gap: 0.45rem;
  padding: 0 var(--gutter);
  max-width: var(--max-w); margin: 0 auto 1.6rem;
}
.nid-breadcrumb a { color: var(--ink-mist); }
.nid-breadcrumb a:hover { color: var(--ink); }
.nid-breadcrumb-sep { color: var(--ink-mist); opacity: 0.5; }
.nid-pdp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.nid-pdp-layout > * { min-width: 0; }
.nid-pdp-gallery {
  background: var(--cream-deep);
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 1/1;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.nid-pdp-gallery img { width: 100%; height: 100%; object-fit: cover; }
.nid-pdp-info { display: flex; flex-direction: column; gap: 1.4rem; padding: 0.4rem 0; }
.nid-pdp-cat { font-size: 0.76rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; color: var(--sky-deep); }
.nid-pdp-title {
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(1.85rem, 2vw + 0.7rem, 2.7rem);
  line-height: 1.1; color: var(--ink);
}
.nid-pdp-price {
  display: flex; align-items: baseline; gap: 0.55rem;
  padding-bottom: 1.2rem; border-bottom: 2px dashed var(--hairline);
}
.nid-pdp-price-val { font-family: var(--ff-display); font-weight: 800; font-size: 2.3rem; color: var(--blush-deep); }
.nid-pdp-price-unit { font-size: 0.88rem; color: var(--ink-mist); font-weight: 700; }

.nid-pdp-notes {
  display: flex; flex-direction: column; gap: 0.55rem;
}
.nid-pdp-notes-label { font-size: 0.76rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--sky-deep); font-weight: 800; }
.nid-pdp-notes-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.nid-pdp-variants { display: flex; flex-direction: column; gap: 1rem; }
.nid-pdp-variant { display: flex; flex-direction: column; gap: 0.5rem; }
.nid-pdp-variant-label { font-size: 0.82rem; font-weight: 800; color: var(--ink); }
.nid-pdp-variant-options { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.nid-pdp-variant-opt {
  padding: 0.55rem 1.05rem;
  background: var(--milk);
  border: 2.5px solid var(--hairline);
  border-radius: var(--radius-pill);
  font-size: 0.84rem; color: var(--ink-soft); font-weight: 700;
  transition: all var(--anim);
}
.nid-pdp-variant-opt:hover { border-color: var(--honey); color: var(--ink); }
.nid-pdp-variant-opt.is-active { background: var(--honey); color: var(--ink); border-color: var(--honey); }

.nid-pdp-atc-row { display: flex; gap: 0.6rem; margin-top: 0.4rem; align-items: stretch; }
.nid-pdp-qty {
  display: inline-flex; align-items: center;
  background: var(--cream-deep);
  border-radius: var(--radius-pill);
  padding: 0 0.25rem;
}
.nid-pdp-qty button { width: 40px; height: 48px; font-size: 1.2rem; color: var(--ink); font-weight: 800; }
.nid-pdp-qty-val { padding: 0 0.85rem; min-width: 32px; text-align: center; font-weight: 800; }
.nid-pdp-atc { flex: 1; }

.nid-pdp-section {
  padding-top: 1.4rem; margin-top: 0.4rem;
  border-top: 2px dashed var(--hairline);
  display: flex; flex-direction: column; gap: 0.7rem;
}
.nid-pdp-section-title { font-family: var(--ff-display); font-weight: 700; font-size: 1.3rem; color: var(--ink); }
.nid-pdp-section p { color: var(--ink-soft); line-height: 1.75; font-weight: 500; }
.nid-pdp-specs { display: flex; flex-direction: column; gap: 0.35rem; }
.nid-pdp-spec { display: flex; gap: 0.7rem; padding: 0.5rem 0; border-bottom: 1px dashed var(--hairline); font-size: 0.92rem; }
.nid-pdp-spec-label { color: var(--ink-mist); min-width: 140px; font-weight: 700; }
.nid-pdp-spec-value { color: var(--ink); flex: 1; font-weight: 600; }

/* ── SHOP page ──────────────────────────────────── */
.nid-shop { padding: clamp(2rem, 4vw, 3.5rem) 0; }
.nid-shop-head { text-align: center; margin-bottom: 2.2rem; display: flex; flex-direction: column; align-items: center; gap: 0.9rem; }
.nid-shop-controls {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  background: var(--milk);
  border-radius: var(--radius-pill);
  padding: 0.7rem 1rem;
  box-shadow: var(--shadow-soft);
  margin-bottom: 2.2rem;
  align-items: center;
}
.nid-shop-filters { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.nid-filter {
  font-size: 0.82rem; font-weight: 800;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  color: var(--ink-soft);
  background: var(--cream-deep);
  transition: all var(--anim);
}
.nid-filter:hover { color: var(--ink); background: var(--sand); }
.nid-filter.is-active { background: var(--honey); color: var(--ink); }
.nid-shop-sort { display: flex; align-items: center; gap: 0.5rem; }
.nid-shop-sort label { font-size: 0.82rem; color: var(--ink-mist); font-weight: 700; }
.nid-shop-sort select {
  border: 2.5px solid var(--hairline);
  background: var(--milk);
  border-radius: var(--radius-pill);
  padding: 0.5rem 0.95rem;
  font-size: 0.86rem; color: var(--ink); font-weight: 700;
  outline: none;
}
.nid-shop-count { font-size: 0.82rem; color: var(--ink-mist); font-weight: 700; }

/* ── ABOUT / CONTACT / LEGAL ─────────────────────── */
.nid-page { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.nid-page-head {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  margin-bottom: clamp(2.2rem, 4vw, 3.2rem);
}
.nid-page-title {
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(2.3rem, 4vw + 0.4rem, 3.6rem);
  line-height: 1.06;
  color: var(--ink);
  max-width: 20ch;
}
.nid-page-title em { font-style: normal; color: var(--blush-deep); }
.nid-page-lede { color: var(--ink-soft); font-size: 1.1rem; line-height: 1.7; max-width: 60ch; font-weight: 600; }

.nid-prose {
  max-width: 760px; margin: 0 auto;
  padding: 0 var(--gutter);
  font-size: 1.04rem; line-height: 1.85; color: var(--ink-soft); font-weight: 500;
}
.nid-prose h2 {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 1.65rem; color: var(--ink);
  margin: 2.5rem 0 0.8rem;
}
.nid-prose h3 { font-family: var(--ff-display); font-weight: 700; font-size: 1.3rem; color: var(--ink); margin: 1.6rem 0 0.5rem; }
.nid-prose p { margin-bottom: 1rem; }
.nid-prose ul { padding-left: 1.2rem; list-style: disc; margin-bottom: 1rem; }
.nid-prose li { margin-bottom: 0.4rem; }
.nid-prose strong { color: var(--ink); font-weight: 800; }
.nid-prose a { color: var(--blush-deep); text-decoration: underline; font-weight: 700; }

.nid-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.6rem, 3vw, 2.6rem);
  max-width: 980px; margin: 0 auto;
  padding: 0 var(--gutter);
}
.nid-contact-card {
  background: var(--milk);
  border-radius: var(--radius-lg);
  padding: 1.9rem;
  display: flex; flex-direction: column; gap: 0.6rem;
  box-shadow: var(--shadow-soft);
}
.nid-contact-card h3 { font-family: var(--ff-display); font-weight: 700; font-size: 1.3rem; color: var(--ink); }
.nid-contact-card p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.65; font-weight: 500; }
.nid-contact-form { display: flex; flex-direction: column; gap: 0.85rem; }
.nid-contact-form label { font-size: 0.82rem; font-weight: 800; color: var(--ink); margin-bottom: 0.3rem; }
.nid-contact-form input,
.nid-contact-form textarea {
  border: 2.5px solid var(--hairline);
  background: var(--milk);
  padding: 0.8rem 1.05rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem; font-weight: 600;
  outline: none;
  width: 100%;
  transition: border-color var(--anim);
}
.nid-contact-form textarea { min-height: 130px; resize: vertical; }
.nid-contact-form input:focus,
.nid-contact-form textarea:focus { border-color: var(--honey); }

/* ── CART page ──────────────────────────────────── */
.nid-cart-page { padding: clamp(2rem, 4vw, 3.5rem) 0; }
.nid-cart-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(1.4rem, 3vw, 2.6rem);
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--gutter);
}
.nid-cart-grid > * { min-width: 0; }
.nid-cart-list { display: flex; flex-direction: column; gap: 1rem; }
.nid-cart-empty {
  text-align: center; padding: 4rem 0;
  color: var(--ink-mist); font-weight: 600;
  display: flex; flex-direction: column; gap: 1rem; align-items: center;
}
.nid-cart-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 1.2rem; align-items: center;
  background: var(--milk);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}
.nid-cart-row img { width: 100px; height: 100px; object-fit: cover; border-radius: var(--radius-md); }
.nid-cart-summary {
  background: var(--cream-deep);
  border-radius: var(--radius-lg);
  padding: 1.7rem;
  display: flex; flex-direction: column; gap: 0.9rem;
  height: fit-content;
}
.nid-cart-summary h3 { font-family: var(--ff-display); font-weight: 700; font-size: 1.45rem; }
.nid-cart-summary-row { display: flex; justify-content: space-between; font-size: 0.94rem; color: var(--ink-soft); font-weight: 600; }
.nid-cart-summary-total {
  display: flex; justify-content: space-between;
  padding-top: 0.85rem; border-top: 2px dashed var(--hairline);
  font-size: 1.18rem; font-weight: 800; color: var(--ink);
}
.nid-cart-summary-total span:last-child { font-family: var(--ff-display); font-weight: 800; color: var(--blush-deep); }

/* Toast notification (cart add) */
.nid-toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(40px);
  background: var(--ink); color: var(--cream);
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem; font-weight: 700;
  box-shadow: var(--shadow-lift);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(.34,1.56,.64,1);
  z-index: 999;
}
.nid-toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE  — covers full range 320 → 1024
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nid-hero-card { grid-template-columns: 1fr; }
  .nid-hero-art { max-width: 460px; margin: 0 auto; width: 100%; }
  .nid-pillars-grid { grid-template-columns: 1fr; }
  .nid-stages-track { grid-template-columns: repeat(2, 1fr); row-gap: 2.4rem; }
  .nid-stages-track::before { display: none; }
  .nid-editorial-inner { grid-template-columns: 1fr; }
  .nid-guide-list { grid-template-columns: repeat(2, 1fr); }
  .nid-cart-grid { grid-template-columns: 1fr; }
  .nid-contact-grid { grid-template-columns: 1fr; }
  .nid-pdp-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nid-head { padding: 0.5rem var(--gutter) 0.4rem; }
  .nid-head-inner { height: 64px; gap: 0.5rem; padding: 0 0.6rem 0 0.85rem; }
  .nid-head--stuck .nid-head-inner { height: 58px; }
  .nid-nav-left, .nid-nav-right .nid-nav-link { display: none; }
  .nid-brandslot { font-size: 1.32rem; }
  .nid-brandslot-mark { width: 36px; height: 36px; font-size: 1.05rem; }
  .nid-hamburger { display: flex; }

  .nid-hero-sticker.s1 { left: 2%; }
  .nid-hero-sticker.s2 { right: 2%; }
  .nid-hero-sticker.s3 { left: 1%; }

  .nid-foot-grid { grid-template-columns: 1fr 1fr; }
  .nid-foot-grid > div:first-child { grid-column: 1 / -1; }

  .nid-guide-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .nid-hero-card { padding: 1.4rem; }
  .nid-hero-headline { font-size: clamp(2.05rem, 8vw + 0.4rem, 2.9rem); }
  .nid-hero-ctas { width: 100%; }
  .nid-hero-ctas .nid-btn { flex: 1; }

  .nid-section { padding: clamp(2.5rem, 7vw, 4rem) 0; }
  .nid-section-title { font-size: clamp(1.75rem, 7vw, 2.4rem); }

  .nid-stages-track { grid-template-columns: 1fr; }

  .nid-collection-card { flex-basis: 78%; }

  .nid-foot-grid { grid-template-columns: 1fr; }
  .nid-foot-grid > div:first-child { grid-column: auto; }

  .nid-pdp-atc-row { flex-direction: column; }

  .nid-cart-row {
    grid-template-columns: 78px 1fr;
    gap: 0.85rem;
  }
  .nid-cart-row img { width: 78px; height: 78px; }
  .nid-cart-row > div:last-child { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; padding-top: 0.4rem; border-top: 2px dashed var(--hairline); }

  .nid-newsletter-form { flex-direction: column; }
}
