/* ═══════════════════════════════════════════════════════════
   Coastal Cotton Co. — landing page styles
   Vibe: warm coastal minimal · soft serif headlines · pill UI
   ═══════════════════════════════════════════════════════════ */

:root {
  --shell:  #FBF7F1;   /* page background — warm cream        */
  --sand:   #F3EBDE;   /* alt section — warm sand             */
  --mist:   #E9F0E9;   /* alt section — sea-mist sage tint    */
  --ink:    #21403A;   /* deep eucalyptus — text & buttons    */
  --ink-70: rgba(33, 64, 58, .78);
  --ink-12: rgba(33, 64, 58, .12);
  --ink-08: rgba(33, 64, 58, .08);
  --clay:   #C96F4A;   /* terracotta accent                   */
  --clay-dk:#B75E3B;
  --butter: #F0C75E;   /* sunshine accent                     */
  --star:   #E8A93C;
  --white:  #FFFDFA;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 24px;
  --radius-lg: 32px;
  --shadow-sm: 0 2px 10px rgba(33, 64, 58, .07);
  --shadow-md: 0 14px 40px -12px rgba(33, 64, 58, .18);
  --shadow-lift: 0 18px 44px -14px rgba(33, 64, 58, .28);
  --container: 1180px;
}

/* ── Reset-ish ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--shell);
  color: var(--ink);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--butter); color: var(--ink); }
:focus-visible { outline: 3px solid var(--clay); outline-offset: 3px; border-radius: 6px; }
.sr-only { position: absolute; width: 1px; height: 1px; clip-path: inset(50%); overflow: hidden; white-space: nowrap; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 4vw, 40px); }
.container--narrow { max-width: 820px; }

section { scroll-margin-top: 96px; }

/* ── Type ── */
h1, h2, h3 { font-family: var(--font-display); font-weight: 550; line-height: 1.06; letter-spacing: -0.015em; text-wrap: balance; }
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.15rem); margin-bottom: .5em; }
h3 { font-size: 1.25rem; line-height: 1.25; }
h1 em, h2 em { font-style: italic; font-weight: 450; color: var(--clay); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-70); max-width: 34em; }
.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--clay); margin-bottom: 14px;
  background: rgba(201, 111, 74, .1); padding: 7px 14px; border-radius: 999px;
}
.micro { font-size: .86rem; color: var(--ink-70); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; font-weight: 600; white-space: nowrap;
  padding: 14px 28px; font-size: 1rem;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn:active { transform: translateY(0); }
.btn--ink   { background: var(--ink); color: var(--shell); }
.btn--ink:hover { background: #193029; }
.btn--clay  { background: var(--clay); color: var(--white); }
.btn--clay:hover { background: var(--clay-dk); }
.btn--ghost { background: transparent; box-shadow: inset 0 0 0 2px var(--ink-12); }
.btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--ink), var(--shadow-md); }
.btn--sm { padding: 10px 20px; font-size: .9rem; }
.btn--lg { padding: 17px 34px; font-size: 1.05rem; }
.btn--xl { padding: 19px 40px; font-size: 1.12rem; width: 100%; }

/* ── Marquee ── */
.marquee { background: var(--ink); color: var(--shell); overflow: hidden; padding: 9px 0; }
.marquee__track {
  display: inline-flex; align-items: center; gap: 34px; white-space: nowrap;
  animation: marquee 26s linear infinite; will-change: transform;
  font-size: .86rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
}
.marquee__track i { font-style: normal; color: var(--butter); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Header ── */
.header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--shell) 86%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.header.is-scrolled { border-color: var(--ink-08); box-shadow: 0 6px 24px -18px rgba(33,64,58,.35); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 14px; }
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo__mark { width: 34px; height: 34px; }
.logo__word { font-family: var(--font-display); font-weight: 650; font-size: 1.22rem; letter-spacing: -0.01em; }
.nav { display: flex; gap: 28px; font-weight: 500; font-size: .95rem; }
.nav a { position: relative; padding: 4px 0; }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--clay); border-radius: 2px; transition: right .22s ease;
}
.nav a:hover::after { right: 0; }
.header__actions { display: flex; align-items: center; gap: 14px; }
.cart { position: relative; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; transition: background .18s; }
.cart:hover { background: var(--ink-08); }
.cart svg { width: 22px; height: 22px; }
.cart__count {
  position: absolute; top: -2px; right: -4px; min-width: 19px; height: 19px; padding-inline: 5px;
  background: var(--clay); color: var(--white); font-size: .68rem; font-weight: 700;
  border-radius: 999px; display: grid; place-items: center;
  transition: transform .2s cubic-bezier(.34,1.56,.64,1);
}
.cart__count.is-pop { transform: scale(1.45); }

/* ── Hero ── */
.hero { padding: clamp(44px, 7vw, 96px) 0 clamp(36px, 5vw, 72px); }
.hero__grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero__copy h1 { margin: 18px 0 20px; }
.stars { color: var(--star); letter-spacing: 2px; font-size: .95em; }
.offerline {
  display: inline-flex; align-items: center; flex-wrap: wrap; gap: 4px 10px;
  background: var(--clay); color: var(--white);
  border-radius: 16px; padding: 11px 18px;
  font-size: .98rem; line-height: 1.35; box-shadow: var(--shadow-sm);
}
.offerline strong { font-weight: 800; letter-spacing: .01em; }
.offerline span { color: rgba(255, 253, 250, .92); font-weight: 500; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 26px; }
.ticks { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: .9rem; font-weight: 500; color: var(--ink-70); }
.ticks li { display: flex; align-items: center; gap: 8px; }
.ticks li::before {
  content: "✓"; display: grid; place-items: center; width: 19px; height: 19px;
  background: var(--mist); color: var(--ink); border-radius: 50%; font-size: .68rem; font-weight: 800;
}

.hero__media { position: relative; }
.img-frame {
  overflow: hidden; border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--sand), var(--mist));
  box-shadow: var(--shadow-md);
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; }
.img-frame #productImg { transition: opacity .28s ease; }
.img-frame #productImg.is-fading { opacity: 0; }
.imgtag {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  background: var(--white); color: var(--ink);
  font-size: .82rem; font-weight: 700; padding: 8px 16px; border-radius: 999px;
  box-shadow: var(--shadow-md); border: 1px solid var(--ink-08);
}
.bundles__media .img-frame { position: relative; }
.img-frame--hero { border-radius: 200px 36px 36px 36px; aspect-ratio: 5 / 4.5; }
.img-frame--square { aspect-ratio: 1; }
.img-frame--tall { aspect-ratio: 4 / 5; }

.sticker {
  position: absolute; top: -26px; right: 8px; z-index: 2;
  width: 108px; height: 108px; border-radius: 50%;
  display: grid; place-content: center; text-align: center;
  font-family: var(--font-display); font-weight: 650; font-size: 1.5rem; line-height: 1;
  transform: rotate(9deg);
  box-shadow: var(--shadow-md);
  animation: bob 5s ease-in-out infinite;
}
.sticker b { display: block; font-size: 1.28rem; font-weight: 650; white-space: nowrap; }
.sticker small { display: block; font-family: var(--font-body); font-size: .56rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; margin-top: 5px; }
.sticker--clay { background: var(--clay); color: var(--white); }
.sticker--butter { background: var(--butter); color: var(--ink); top: auto; bottom: -22px; right: -14px; transform: rotate(-8deg); }
@keyframes bob { 0%,100% { translate: 0 0; } 50% { translate: 0 -8px; } }

.sticker-pill {
  position: absolute; bottom: 26px; left: -18px; z-index: 2;
  background: var(--white); border: 1px solid var(--ink-08);
  padding: 11px 20px; border-radius: 999px; font-weight: 600; font-size: .9rem;
  box-shadow: var(--shadow-md); transform: rotate(-4deg);
}

/* ── Stat strip ── */
.strip { border-block: 1px solid var(--ink-08); background: var(--white); }
.strip__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding-block: 26px; text-align: center; }
.strip__item strong { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; display: block; }
.strip__item span { font-size: .85rem; color: var(--ink-70); }

/* ── Sections ── */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--sand { background: var(--sand); }
.section--mist { background: var(--mist); }

/* ── Benefits ── */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 46px; }
.benefit {
  background: var(--white); border: 1px solid var(--ink-08); border-radius: var(--radius);
  padding: 30px 28px; transition: transform .22s ease, box-shadow .22s ease;
}
.benefit:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.benefit__icon {
  width: 54px; height: 54px; border-radius: 18px; background: var(--mist);
  display: grid; place-items: center; margin-bottom: 18px;
}
.benefit__icon svg { width: 28px; height: 28px; fill: none; stroke: var(--ink); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.benefit:nth-child(2) .benefit__icon { background: rgba(201,111,74,.13); }
.benefit:nth-child(3) .benefit__icon { background: rgba(240,199,94,.22); }
.benefit:nth-child(5) .benefit__icon { background: rgba(240,199,94,.22); }
.benefit:nth-child(6) .benefit__icon { background: rgba(201,111,74,.13); }
.benefit h3 { margin-bottom: 8px; }
.benefit p { font-size: .98rem; color: var(--ink-70); }

/* ── Split / What is muslin ── */
.split { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.checklist { list-style: none; margin-top: 26px; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: baseline; font-weight: 500; }
.checklist li::before {
  content: "✓"; flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%;
  background: var(--white); box-shadow: inset 0 0 0 1.5px var(--ink-12);
  display: grid; place-items: center; font-size: .7rem; font-weight: 800; color: var(--clay);
  transform: translateY(3px);
}

/* ── Wash timeline ── */
.washline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 46px; position: relative; }
.wash {
  background: var(--white); border: 1px solid var(--ink-08); border-radius: var(--radius);
  padding: 30px 28px; position: relative;
}
.wash::after {
  content: "→"; position: absolute; top: 50%; right: -19px; translate: 0 -50%;
  font-size: 1.3rem; color: var(--clay); z-index: 1;
}
.wash:last-child::after { content: none; }
.wash__num {
  display: inline-block; font-family: var(--font-display); font-style: italic; font-size: 1.35rem;
  color: var(--clay); margin-bottom: 10px;
}
.wash p { font-size: .95rem; color: var(--ink-70); }

/* ── Comparison table ── */
.table-wrap { overflow-x: auto; margin-top: 40px; border-radius: var(--radius); }
.compare {
  width: 100%; min-width: 640px; border-collapse: separate; border-spacing: 0;
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--ink-08);
}
.compare th, .compare td { padding: 16px 20px; text-align: left; font-size: .95rem; border-bottom: 1px solid var(--ink-08); }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }
.compare thead th { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; padding-block: 20px; }
.compare tbody th { font-weight: 600; color: var(--ink-70); }
.compare td { color: var(--ink-70); }
.compare__us {
  background: var(--ink); font-weight: 700; color: var(--shell) !important;
  border-bottom-color: rgba(251, 247, 241, .14) !important;
}
.compare thead th.compare__us { border-radius: 14px 14px 0 0; }
.compare tbody tr:last-child .compare__us { border-radius: 0 0 14px 14px; }
.compare td.compare__us { font-size: .95rem; white-space: nowrap; }

/* ── Lifestyle break ── */
.break { position: relative; }
.break__media { height: clamp(340px, 56vw, 560px); }
.break__media img { width: 100%; height: 100%; object-fit: cover; }
.break__quote {
  position: absolute; inset-inline: 0; bottom: clamp(28px, 6vw, 64px);
  width: fit-content; margin-inline: auto;
  background: var(--shell); color: var(--ink);
  font-family: var(--font-display); font-style: italic; font-weight: 550;
  font-size: clamp(1.2rem, 2.6vw, 1.75rem);
  padding: 16px 34px; border-radius: 999px; box-shadow: var(--shadow-lift);
  transform: rotate(-1.5deg);
}

/* ── Bundles ── */
.bundles__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.bundles__media { position: relative; position: sticky; top: 110px; }
.bundles__panel h2 { margin-bottom: .35em; }
.bundles__panel > p { color: var(--ink-70); max-width: 30em; }

.opt { margin-top: 28px; }
.opt__label { font-weight: 700; font-size: 1rem; margin-bottom: 10px; }
.opt__hint { font-size: .92rem; color: var(--ink-70); margin: -4px 0 14px; }

/* Per-blanket colour picker — one labelled row per blanket */
.picker {
  background: var(--white); border: 1px solid var(--ink-08); border-radius: 18px;
  padding: 14px 16px 10px; margin-bottom: 12px;
}
.picker__label { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: .97rem; margin-bottom: 10px; }
.picker__free {
  background: var(--butter); color: var(--ink); font-size: .68rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; padding: 3px 10px; border-radius: 999px;
}
.picker__chosen { margin-left: auto; font-weight: 600; font-size: .9rem; color: var(--ink-70); }
.picker__swatches { display: flex; flex-wrap: wrap; gap: 4px; }
.swatch {
  display: grid; justify-items: center; gap: 6px; padding: 8px 6px 7px;
  border-radius: 14px; min-width: 66px; transition: background .15s ease;
}
.swatch:hover { background: var(--ink-08); }
.swatch__dot {
  width: 42px; height: 42px; border-radius: 50%; background: var(--c);
  box-shadow: inset 0 0 0 1.5px rgba(33,64,58,.22);
  display: grid; place-items: center; transition: transform .15s ease;
}
.swatch:hover .swatch__dot { transform: scale(1.08); }
.swatch.is-active .swatch__dot { box-shadow: inset 0 0 0 2px var(--white), 0 0 0 2.5px var(--ink); }
.swatch.is-active .swatch__dot::after {
  content: "✓"; font-size: .95rem; font-weight: 800; color: var(--ink);
  text-shadow: 0 1px 3px rgba(255,255,255,.9);
}
.swatch__name { font-size: .76rem; font-weight: 600; color: var(--ink-70); }
.swatch.is-active .swatch__name { color: var(--ink); font-weight: 700; }

.sizes { display: flex; flex-wrap: wrap; gap: 10px; padding-top: 8px; }
.size {
  position: relative;
  border: 1.5px solid var(--ink-12); border-radius: 16px; padding: 10px 18px;
  font-weight: 600; font-size: .92rem; background: var(--white);
  transition: border-color .16s, background .16s, transform .16s;
  display: grid; text-align: center;
}
.size__flag {
  position: absolute; top: -11px; left: 50%; translate: -50% 0;
  background: var(--clay); color: var(--white); font-style: normal;
  font-size: .6rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 999px; white-space: nowrap;
}
.size span { font-weight: 400; font-size: .78rem; color: var(--ink-70); }
.size:hover { transform: translateY(-2px); }
.size.is-active { border-color: var(--ink); background: var(--ink); color: var(--shell); }
.size.is-active span { color: rgba(251,247,241,.75); }

.bundle-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px; }
.bundle {
  position: relative; text-align: left; background: var(--white);
  border: 2px solid var(--ink-12); border-radius: var(--radius);
  padding: 26px 22px 20px; display: grid; gap: 6px;
  transition: border-color .16s ease, transform .16s ease, box-shadow .16s ease;
}
.bundle:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.bundle.is-active { border-color: var(--ink); box-shadow: var(--shadow-md); }
.bundle.is-active::after {
  content: "✓"; position: absolute; top: 14px; right: 14px;
  width: 26px; height: 26px; border-radius: 50%; background: var(--ink); color: var(--shell);
  display: grid; place-items: center; font-size: .78rem; font-weight: 800;
}
.bundle__flag {
  position: absolute; top: -12px; left: 18px;
  background: var(--clay); color: var(--white);
  font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.bundle__flag--butter { background: var(--butter); color: var(--ink); }
.bundle__title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-top: 4px; }
.bundle__title em { color: var(--clay); }
.bundle__meta { font-size: .95rem; color: var(--ink-70); }
.bundle__meta s { opacity: .55; margin-right: 4px; }
.bundle__meta strong { color: var(--ink); font-size: 1.15rem; }
.bundle__per { font-size: .8rem; font-weight: 600; color: var(--clay); }

#addBtn { margin-top: 26px; }
.bundles__panel .micro { margin-top: 12px; text-align: center; }
.assure {
  list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px;
  margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--ink-08);
  font-size: .88rem; font-weight: 500; color: var(--ink-70);
}

/* ── Reviews ── */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 46px; }
.review.review--photo {
  grid-row: span 2; padding: 0; overflow: hidden; border: 0; min-height: 300px;
  background: linear-gradient(145deg, var(--sand), var(--mist));
}
.review.review--photo img { width: 100%; height: 100%; object-fit: cover; }
.review {
  background: var(--white); border: 1px solid var(--ink-08); border-radius: var(--radius);
  padding: 26px 24px; display: grid; gap: 14px; align-content: start;
}
.review .stars { font-size: .9rem; }
.review p { font-size: .97rem; }
.review footer { font-size: .85rem; color: var(--ink-70); }
.verified {
  display: inline-block; margin-left: 6px; background: var(--mist); color: var(--ink);
  font-size: .68rem; font-weight: 700; padding: 3px 9px; border-radius: 999px;
}

/* ── Guarantee ── */
.guarantee {
  background: var(--ink); color: var(--shell); border-radius: var(--radius-lg);
  padding: clamp(44px, 6vw, 76px); text-align: center;
  display: grid; justify-items: center; gap: 18px;
  background-image: radial-gradient(80% 120% at 50% -20%, rgba(240,199,94,.14), transparent 60%);
}
.guarantee__wave { width: 120px; color: var(--butter); }
.guarantee h2 { color: var(--shell); margin: 0; }
.guarantee h2 em { color: var(--butter); }
.guarantee p { max-width: 44em; color: rgba(251,247,241,.82); }
.guarantee .btn--ink { background: var(--shell); color: var(--ink); }
.guarantee .btn--ink:hover { background: var(--white); }

/* ── FAQ ── */
.faqs { display: grid; gap: 14px; margin-top: 40px; }
.faqitem {
  background: var(--white); border: 1px solid var(--ink-08); border-radius: 20px;
  padding: 6px 26px;
}
.faqitem summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-weight: 600; font-size: 1.02rem; padding-block: 18px;
}
.faqitem summary::-webkit-details-marker { display: none; }
.faqitem__icon { position: relative; flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; background: var(--mist); }
.faqitem__icon::before, .faqitem__icon::after {
  content: ""; position: absolute; inset: 0; margin: auto; background: var(--ink); border-radius: 2px;
  transition: transform .22s ease;
}
.faqitem__icon::before { width: 11px; height: 2px; }
.faqitem__icon::after { width: 2px; height: 11px; }
.faqitem[open] .faqitem__icon::after { transform: rotate(90deg); }
.faqitem p { padding-bottom: 22px; color: var(--ink-70); max-width: 60em; }

/* ── Finale ── */
.finale { padding: clamp(72px, 10vw, 130px) 0; text-align: center; background:
  radial-gradient(60% 90% at 50% 110%, rgba(201,111,74,.1), transparent 70%), var(--shell); }
.finale h2 { font-size: clamp(2.3rem, 5.4vw, 3.9rem); margin-bottom: 30px; }
.finale .btn { margin-bottom: 18px; width: auto; }

/* ── Footer ── */
.footer { background: var(--ink); color: rgba(251,247,241,.82); }
.footer a:hover { color: var(--butter); }
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
  padding-block: clamp(48px, 6vw, 72px) 40px;
}
.footer__brand p { font-size: .92rem; margin: 16px 0 22px; max-width: 26em; }
.logo--light { color: var(--shell); }
.newsletter { display: flex; gap: 10px; max-width: 380px; }
.newsletter input {
  flex: 1; min-width: 0; border: 1px solid rgba(251,247,241,.25); background: rgba(251,247,241,.07);
  border-radius: 999px; padding: 11px 18px; color: var(--shell); font: inherit; font-size: .88rem;
}
.newsletter input::placeholder { color: rgba(251,247,241,.5); }
.footer__col { display: grid; gap: 10px; align-content: start; font-size: .92rem; }
.footer__col h4 {
  font-size: .75rem; text-transform: uppercase; letter-spacing: .16em;
  color: rgba(251,247,241,.5); margin-bottom: 6px; font-weight: 700;
}
.footer__base {
  display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(251,247,241,.14); padding-block: 26px 34px; font-size: .78rem;
}
.paybadges { display: flex; flex-wrap: wrap; gap: 8px; }
.paybadges span {
  border: 1px solid rgba(251,247,241,.22); border-radius: 8px; padding: 4px 10px;
  font-size: .72rem; font-weight: 600;
}

/* ── Sticky mobile bar ── */
.stickybar {
  position: fixed; inset-inline: 12px; bottom: 12px; z-index: 60;
  background: var(--white); border: 1px solid var(--ink-08); border-radius: 20px;
  box-shadow: var(--shadow-lift); padding: 12px 14px 12px 20px;
  display: none; align-items: center; justify-content: space-between; gap: 14px;
  translate: 0 130%; transition: translate .3s ease;
}
.stickybar.is-visible { translate: 0 0; }
.stickybar__info { display: grid; line-height: 1.25; }
.stickybar__info strong { font-family: var(--font-display); font-size: 1.15rem; }
.stickybar__info span { font-size: .75rem; color: var(--ink-70); }

/* ── Cart drawer ── */
.cartoverlay {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(33, 64, 58, .4); backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.cartoverlay.is-open { opacity: 1; pointer-events: auto; }
.cartdrawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 90;
  width: min(440px, 100vw);
  background: var(--shell); box-shadow: -24px 0 60px -30px rgba(33, 64, 58, .45);
  display: flex; flex-direction: column;
  transform: translateX(105%); transition: transform .38s cubic-bezier(.22, 1, .36, 1);
}
.cartdrawer.is-open { transform: translateX(0); }
.cartdrawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px; border-bottom: 1px solid var(--ink-08); flex: 0 0 auto;
}
.cartdrawer__head h3 { font-size: 1.5rem; display: flex; align-items: center; gap: 10px; }
.cartdrawer__count {
  min-width: 26px; height: 26px; padding-inline: 8px; border-radius: 999px;
  background: var(--clay); color: var(--white);
  font-family: var(--font-body); font-size: .8rem; font-weight: 700;
  display: inline-grid; place-items: center;
}
.cartdrawer__close {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  transition: background .15s ease;
}
.cartdrawer__close:hover { background: var(--ink-08); }
.cartdrawer__close svg { width: 20px; height: 20px; }
.cartdrawer__body { flex: 1 1 auto; overflow-y: auto; overflow-x: hidden; padding: 22px 26px; display: grid; gap: 16px; align-content: start; }

.citem {
  display: grid; grid-template-columns: 92px 1fr auto; gap: 16px;
  background: var(--white); border: 1px solid var(--ink-08); border-radius: 18px; padding: 16px;
}
.citem__thumb {
  width: 92px; height: 108px; object-fit: cover; border-radius: 12px;
  background: linear-gradient(145deg, var(--sand), var(--mist));
}
.citem__info { display: grid; gap: 6px; align-content: start; }
.citem__info strong { font-size: .95rem; line-height: 1.3; }
.citem__meta { font-size: .8rem; color: var(--ink-70); }
.citem__colours { list-style: none; display: grid; gap: 4px; margin-top: 2px; }
.citem__colours li {
  font-size: .78rem; color: var(--ink-70); display: flex; align-items: center; gap: 7px;
}
.citem__dot { width: 12px; height: 12px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(33,64,58,.2); flex: 0 0 auto; }
.citem__colours em {
  font-style: normal; background: var(--butter); color: var(--ink);
  font-size: .62rem; font-weight: 800; letter-spacing: .08em; padding: 2px 8px; border-radius: 999px;
}
.citem__row { display: flex; align-items: center; gap: 14px; margin-top: 8px; }
.stepper {
  display: inline-flex; align-items: center; border: 1.5px solid var(--ink-12); border-radius: 999px;
}
.stepper button {
  width: 30px; height: 30px; display: grid; place-items: center;
  font-size: 1rem; font-weight: 600; border-radius: 50%;
}
.stepper button:hover { background: var(--ink-08); }
.stepper span { min-width: 26px; text-align: center; font-size: .88rem; font-weight: 700; }
.citem__remove {
  font-size: .78rem; font-weight: 600; color: var(--ink-70);
  text-decoration: underline; text-underline-offset: 3px;
}
.citem__remove:hover { color: var(--clay); }
.citem__price { display: grid; gap: 2px; align-content: start; text-align: right; }
.citem__price s { font-size: .78rem; color: var(--ink-70); opacity: .7; }
.citem__price strong { font-size: 1rem; }

.cart-empty { text-align: center; display: grid; gap: 16px; justify-items: center; padding: 56px 10px; }
.cart-empty svg { width: 64px; color: var(--clay); }
.cart-empty p { font-family: var(--font-display); font-size: 1.4rem; }
.cart-empty span { font-size: .9rem; color: var(--ink-70); margin-top: -10px; }

.cartdrawer__foot { flex: 0 0 auto; border-top: 1px solid var(--ink-08); padding: 20px 26px 24px; display: grid; gap: 12px; background: var(--white); }
.savingsbar {
  background: var(--mist); color: var(--ink); border-radius: 12px;
  font-size: .85rem; font-weight: 700; text-align: center; padding: 10px 14px;
}
.footrow { display: flex; justify-content: space-between; font-size: .95rem; color: var(--ink-70); }
.footrow--total { color: var(--ink); font-weight: 700; font-size: 1.15rem; align-items: baseline; }
.footrow--total small { font-weight: 500; font-size: .78rem; color: var(--ink-70); }
.checkoutbtn {
  background: var(--ink); color: var(--shell); border-radius: 999px;
  font-weight: 700; font-size: 1.08rem; padding: 18px; text-align: center; width: 100%;
  transition: transform .16s ease, background .16s ease, box-shadow .16s ease;
}
.checkoutbtn:hover { background: #193029; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.securerow {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: .78rem; font-weight: 600; color: var(--ink-70);
}
.securerow svg { width: 14px; height: 14px; }
.stripe-note {
  background: var(--sand); border: 1px solid var(--ink-08); border-radius: 12px;
  font-size: .82rem; color: var(--ink); padding: 12px 14px; text-align: center; line-height: 1.45;
  display: none;
}
.stripe-note.is-visible { display: block; }

body.cart-open { overflow: hidden; }

@media (max-width: 480px) {
  .cartdrawer { width: 100vw; }
  .citem { grid-template-columns: 76px 1fr; }
  .citem__thumb { width: 76px; height: 90px; grid-row: span 2; }
  .citem__price {
    grid-column: 2; display: flex; gap: 10px; align-items: baseline;
    text-align: left; margin-top: 2px;
  }
}

/* ── Toast ── */
.toast {
  position: fixed; left: 50%; bottom: 28px; z-index: 70; translate: -50% 200%;
  background: var(--ink); color: var(--shell); padding: 14px 26px; border-radius: 999px;
  font-weight: 500; font-size: .92rem; box-shadow: var(--shadow-lift);
  transition: translate .35s cubic-bezier(.34,1.4,.64,1); max-width: min(92vw, 480px); text-align: center;
}
.toast.is-visible { translate: -50% 0; }

/* ══════════ PRODUCT PAGE (the-blanket) ══════════ */
.buybox { padding: clamp(20px, 3.5vw, 52px) 0 clamp(40px, 5vw, 72px); }
.buybox__grid {
  display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: clamp(28px, 4vw, 64px); align-items: start;
}
.gallery { position: sticky; top: 96px; display: grid; gap: 14px; }
.img-frame--pdp { aspect-ratio: 4 / 4.6; border-radius: 28px; position: relative; }
.thumbs { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
.thumbs::-webkit-scrollbar { display: none; }
.thumb {
  flex: 0 0 auto; width: 74px; height: 74px; border-radius: 14px; overflow: hidden;
  border: 2px solid var(--ink-12); padding: 0; background: var(--white);
  transition: border-color .16s ease, transform .16s ease;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb:hover { transform: translateY(-2px); }
.thumb.is-active { border-color: var(--ink); }

.buypanel { display: grid; gap: 14px; align-content: start; }
.buypanel h1 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); line-height: 1.05; }
.buypanel__sub { color: var(--ink-70); max-width: 32em; }
.buyprice { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-top: 4px; }
.buyprice strong { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.9rem, 3.2vw, 2.4rem); letter-spacing: -0.01em; }
.buyprice s { color: var(--ink-70); opacity: .6; font-size: 1.15rem; }
.savebadge {
  background: var(--butter); color: var(--ink);
  font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.buyprice__per { font-size: .9rem; font-weight: 600; color: var(--clay); margin-top: -6px; }
.ticks--stack { display: grid; gap: 8px; margin-top: 4px; }
.bundle-cards--pdp { margin-top: 0; }
.buypanel .opt { margin-top: 10px; }
.buypanel #addBtn { margin-top: 16px; }
.buypanel .micro { text-align: center; }
.buypanel .assure { margin-top: 14px; padding-top: 18px; }
.picker-hint { font-size: .85rem; color: var(--ink-70); margin: -6px 0 10px; }
.pdp-details { margin-top: 18px; display: grid; gap: 10px; }
.pdp-details .faqitem { padding: 2px 20px; border-radius: 16px; }
.pdp-details .faqitem summary { padding-block: 14px; font-size: .95rem; }
.pdp-details .faqitem p { padding-bottom: 16px; font-size: .92rem; }
.benefits--four { grid-template-columns: repeat(4, 1fr); }
.footer__base--slim { border-top: 0; display: grid; justify-items: center; gap: 14px; text-align: center; padding-block: 36px; }

@media (max-width: 1020px) {
  .benefits--four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .buybox__grid { grid-template-columns: 1fr; }
  .gallery { position: static; }
  .img-frame--pdp { aspect-ratio: 4 / 4.2; border-radius: 22px; }
}
@media (max-width: 780px) {
  .benefits--four { grid-template-columns: 1fr; }
  .buybox { padding-top: 10px; }
  .thumb { width: 64px; height: 64px; }
}

/* ── Reveal animations ── */
.reveal { opacity: 0; translate: 0 26px; transition: opacity .7s ease, translate .7s ease; }
.reveal.is-in { opacity: 1; translate: 0 0; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; translate: none; transition: none; }
  .marquee__track { animation: none; }
  .sticker { animation: none; }
  * { transition-duration: .01ms !important; }
}

/* ── Responsive ── */
@media (max-width: 1020px) {
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: repeat(2, 1fr); }
  .review--photo { min-height: 240px; }
  .bundles__grid { grid-template-columns: 1fr; }
  .bundles__media { position: static; max-width: 520px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .nav { display: none; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .img-frame--hero { border-radius: 120px 28px 28px 28px; aspect-ratio: 4/3.4; }
  .strip__row { grid-template-columns: 1fr 1fr; gap: 20px 12px; }
  .split { grid-template-columns: 1fr; }
  .washline { grid-template-columns: 1fr; }
  .wash::after { content: "↓"; top: auto; bottom: -30px; right: 50%; translate: 50% 0; }
  .benefits { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .bundle-cards { grid-template-columns: 1fr; }
  .stickybar { display: flex; }
  .header .btn { display: none; }
  .btn--xl { padding: 18px 32px; }
  .picker { padding: 12px 12px 8px; }
  .picker__swatches { justify-content: space-between; gap: 0; }
  .swatch { min-width: 56px; padding: 6px 2px 5px; }
  .swatch__dot { width: 42px; height: 42px; }
  .swatch__name { font-size: .7rem; }
  .picker__chosen { display: none; }
  .sizes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .size { padding: 10px 8px; }
  .size span { font-size: .72rem; }
  .size__flag { font-size: .56rem; padding: 3px 7px; }

  /* Centered, edge-safe text on small screens */
  .hero__copy { text-align: center; }
  .offerline { justify-content: center; text-align: center; }
  .hero__copy .lead { margin-inline: auto; }
  .hero__cta { justify-content: center; }
  .ticks { justify-content: center; gap: 8px 16px; }
  .section h2 { text-align: center; }
  .section .eyebrow { display: table; margin-inline: auto; }
  .bundles__panel > p { text-align: center; }
  .benefit { text-align: center; }
  .benefit__icon { margin-inline: auto; }
  .wash { text-align: center; }
  .split__copy { text-align: center; }
  .checklist { max-width: 420px; margin-inline: auto; text-align: left; }
  .finale h2 { text-align: center; }
  .sticker { width: 92px; height: 92px; font-size: 1.3rem; top: -18px; }
  .sticker-pill { left: 8px; bottom: 16px; }
}
