/* ==========================================================================
   BASE.CSS — shared design system
   Identical across every site. No brand values live here; everything reads a
   custom property defined in css/brand.css and overridable at runtime by
   js/theme-init.js.

   Edit in _shared/css/ then run `node _tools/sync.js` to push to all sites.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
  --fs-display: clamp(2.75rem, 7vw, 5rem);
  --fs-h1: clamp(2.35rem, 5.6vw, 4rem);
  --fs-h2: clamp(1.9rem, 4vw, 3rem);
  --fs-h3: clamp(1.25rem, 2.2vw, 1.6rem);
  --fs-lead: clamp(1.0625rem, 1.5vw, 1.3125rem);
  --fs-sm: 0.875rem;
  --fs-xs: 0.8125rem;

  --sp-section: clamp(4rem, 9vw, 8rem);
  --sp-section-sm: clamp(2.5rem, 5vw, 4rem);
  --gutter: 20px;
}

@media (min-width: 768px) { :root { --gutter: 32px; } }

/* --------------------------------------------------------------------------
   2. Reset
   -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

/* The UA rule for [hidden] is display:none, which any author `display` beats.
   Several elements here are toggled with .hidden = true while also carrying a
   layout display, so the attribute has to win. */
[hidden] { display: none !important; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.62;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main { flex: 1; }

h1, h2, h3, h4, h5 {
  margin: 0 0 0.5em;
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  line-height: 1.05;
  letter-spacing: var(--tracking-heading);
  color: var(--color-heading);
  text-wrap: balance;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.2; }
h4 { font-size: 1.0625rem; line-height: 1.3; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--color-accent); }

img, svg, video { max-width: 100%; height: auto; display: block; }

ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
li { margin-bottom: 0.4em; }

button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }

hr { border: 0; border-top: 1px solid var(--color-border); margin: 2.5rem 0; }

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--color-accent); color: var(--color-on-accent); }

/* --------------------------------------------------------------------------
   3. Layout
   -------------------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--page-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 860px; }

.section { padding-block: var(--sp-section); }
.section--tight { padding-block: var(--sp-section-sm); }
.section--soft { background: var(--color-soft); }
.section--surface { background: var(--color-surface); }

.section-head {
  max-width: 700px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.section-head p {
  color: var(--color-muted);
  font-size: var(--fs-lead);
  margin: 0;
  text-wrap: pretty;
}
.section-head--left { text-align: left; margin-inline: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.15rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--color-accent-tint);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.skip-link { position: absolute; left: -9999px; top: 0; z-index: 200; }
.skip-link:focus {
  left: 12px; top: 12px;
  padding: 0.8rem 1.3rem;
  background: var(--color-accent);
  color: var(--color-on-accent);
  border-radius: 12px;
}

.text-muted { color: var(--color-muted); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 1.5rem; } .mt-3 { margin-top: 2.5rem; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

.no-js [data-requires-js] { display: none; }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1rem 1.75rem;
  border: 1.5px solid transparent;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  text-align: center;
  white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease,
              color 0.2s ease, transform 0.16s ease, box-shadow 0.2s ease;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-on-accent);
  box-shadow: 0 1px 2px rgba(13, 23, 19, 0.10), 0 10px 24px -10px var(--color-accent);
}
.btn--primary:hover {
  background: var(--color-accent-hover);
  color: var(--color-on-accent);
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(13, 23, 19, 0.12), 0 18px 34px -12px var(--color-accent);
}
.btn--primary:active { transform: translateY(0); }

.btn--secondary {
  background: transparent;
  border-color: var(--color-border-strong);
  color: var(--color-text);
}
.btn--secondary:hover {
  border-color: var(--color-heading);
  background: var(--color-surface);
  color: var(--color-heading);
  transform: translateY(-2px);
}

.btn--ghost { background: transparent; color: var(--color-accent); padding-inline: 0.3rem; }
.btn--ghost:hover { text-decoration: underline; text-underline-offset: 4px; }

.btn--light { background: var(--color-bg); color: var(--color-heading); }
.btn--light:hover { background: var(--color-surface); color: var(--color-heading); transform: translateY(-2px); }

.btn--block { display: flex; width: 100%; }
.btn--lg { padding: 1.15rem 2.25rem; font-size: 1.0625rem; }
.btn--sm { padding: 0.7rem 1.2rem; font-size: 0.875rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* --------------------------------------------------------------------------
   5. Header
   -------------------------------------------------------------------------- */

.announcement {
  background: var(--color-heading);
  color: var(--color-bg);
  font-size: var(--fs-xs);
  font-weight: 500;
  text-align: center;
  padding: 0.7rem var(--gutter);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
@supports (backdrop-filter: blur(1px)) {
  .site-header {
    background: color-mix(in srgb, var(--color-bg) 76%, transparent);
    backdrop-filter: saturate(180%) blur(16px);
  }
}
.site-header.is-scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: 0 1px 30px rgba(13, 23, 19, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 74px;
  padding-block: 0.85rem;
}

.header-logo { flex-shrink: 0; margin-right: auto; }
.header-logo img { width: var(--logo-width, 152px); height: auto; }

.header-nav { display: none; }
@media (min-width: 980px) {
  .header-nav { display: flex; align-items: center; gap: 2rem; margin-inline: auto; }
  .header-logo { margin-right: 0; }
}
.header-nav > a, .nav-trigger {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  padding-block: 0.3rem;
}
.header-nav > a::after, .nav-trigger::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}
.header-nav > a:hover::after,
.header-nav > a[aria-current="page"]::after,
.nav-item.is-open .nav-trigger::after { transform: scaleX(1); }
.header-nav > a:hover, .nav-trigger:hover { color: var(--color-accent); }

.header-actions { display: flex; align-items: center; gap: 0.5rem; }
.header-actions .btn { display: none; }
@media (min-width: 980px) { .header-actions .btn { display: inline-flex; } }

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: 0;
  border-radius: 14px;
  color: var(--color-text);
  position: relative;
  transition: background-color 0.18s ease, color 0.18s ease;
}
.icon-btn:hover { background: var(--color-surface); color: var(--color-accent); }
.icon-btn svg { width: 21px; height: 21px; }

.cart-count {
  position: absolute;
  top: 5px; right: 4px;
  min-width: 17px; height: 17px;
  padding: 0 4px;
  border-radius: 9px;
  background: var(--color-accent-alt);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 17px;
  text-align: center;
}

.nav-toggle { display: inline-flex; }
@media (min-width: 980px) { .nav-toggle { display: none; } }

.mobile-nav { position: fixed; inset: 0; z-index: 150; visibility: hidden; pointer-events: none; }
.mobile-nav.is-open { visibility: visible; pointer-events: auto; }

.mobile-nav__scrim {
  position: absolute; inset: 0;
  background: rgba(13, 23, 19, 0.5);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.mobile-nav.is-open .mobile-nav__scrim { opacity: 1; }

.mobile-nav__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(88vw, 380px);
  background: var(--color-bg);
  padding: 1.25rem 1.5rem 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
}
.mobile-nav.is-open .mobile-nav__panel { transform: translateX(0); }

.mobile-nav__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.75rem;
}
.mobile-nav__links { display: flex; flex-direction: column; }
.mobile-nav__links > a {
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: var(--weight-heading);
  letter-spacing: var(--tracking-heading);
}
.mobile-nav__links > a:hover { color: var(--color-accent); }
.mobile-nav__foot { margin-top: auto; padding-top: 2rem; }

/* --------------------------------------------------------------------------
   6. Header dropdown / mega menu
   -------------------------------------------------------------------------- */

.nav-item { position: relative; display: flex; align-items: center; }

.nav-trigger { display: inline-flex; align-items: center; gap: 0.35rem; background: none; border: 0; }
.nav-trigger svg { width: 13px; height: 13px; opacity: 0.65; transition: transform 0.22s ease; }
.nav-item.is-open .nav-trigger svg { transform: rotate(180deg); }
.nav-item.is-open .nav-trigger { color: var(--color-accent); }

.nav-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 120;
  width: min(92vw, 460px);
  padding: 0.85rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(13, 23, 19, 0.04), 0 24px 60px -20px rgba(13, 23, 19, 0.3);
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, -8px);
  transition: opacity 0.2s ease, transform 0.24s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.24s;
}
.nav-item.is-open .nav-menu { visibility: visible; opacity: 1; transform: translate(-50%, 0); }
.nav-menu::before { content: ""; position: absolute; top: -20px; left: 0; right: 0; height: 20px; }

.nav-menu--mega { width: min(94vw, 800px); padding: 1.15rem; }

.nav-mega { display: grid; grid-template-columns: 244px 1fr; gap: 1.4rem; }

.nav-mega__cats {
  display: flex; flex-direction: column; gap: 2px;
  padding-right: 1.4rem;
  border-right: 1px solid var(--color-border);
}

.nav-mega__cat {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.6rem 0.7rem;
  border-radius: 14px;
  transition: background-color 0.16s ease;
}
.nav-mega__cat:hover, .nav-mega__cat.is-active {
  background: var(--color-accent-tint);
  color: var(--color-accent);
}

.nav-mega__cat-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 11px;
  background: var(--color-soft);
  color: var(--color-accent);
}
.nav-mega__cat.is-active .nav-mega__cat-icon { background: var(--color-bg); }
.nav-mega__cat-icon svg { width: 16px; height: 16px; }

.nav-mega__cat-text { min-width: 0; flex: 1; }
.nav-mega__cat-name {
  display: block; font-size: 0.875rem; font-weight: 600; line-height: 1.3;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nav-mega__cat-count { font-size: var(--fs-xs); color: var(--color-muted); }
.nav-mega__cat.is-active .nav-mega__cat-count { color: inherit; opacity: 0.75; }

.nav-mega__all, .nav-menu__all {
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.8rem 0.7rem 0.25rem;
  border-top: 1px solid var(--color-border);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--color-accent);
}

.nav-mega__panel { display: flex; flex-direction: column; }
.nav-mega__panel-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.nav-mega__panel-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: var(--weight-heading);
  letter-spacing: var(--tracking-heading);
  margin: 0;
}
.nav-mega__panel-link { font-size: var(--fs-xs); font-weight: 700; color: var(--color-accent); }

.nav-mega__products { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.7rem; }

.nav-mini {
  display: flex; flex-direction: column; gap: 0.45rem;
  padding: 0.55rem;
  border-radius: 16px;
  transition: background-color 0.16s ease, transform 0.16s ease;
}
.nav-mini:hover { background: var(--color-soft); color: var(--color-text); transform: translateY(-2px); }
.nav-mini__media { aspect-ratio: 1/1; border-radius: 12px; overflow: hidden; background: var(--color-surface); }
.nav-mini__media img { width: 100%; height: 100%; object-fit: cover; }
.nav-mini__name {
  font-size: var(--fs-xs); font-weight: 600; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.nav-mini__price { font-size: var(--fs-xs); color: var(--color-muted); font-weight: 600; }
.nav-mini__price s { opacity: 0.6; margin-left: 0.25rem; font-weight: 400; }

@media (max-width: 1149px) {
  .nav-menu--mega { width: min(94vw, 470px); }
  .nav-mega { grid-template-columns: 1fr; }
  .nav-mega__cats { padding-right: 0; border-right: 0; }
  .nav-mega__panel { display: none; }
}

.mobile-nav__row { display: flex; align-items: center; border-bottom: 1px solid var(--color-border); }
.mobile-nav__row > a { flex: 1; border-bottom: 0 !important; }
.mobile-nav__sub-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; flex-shrink: 0;
  background: none; border: 0; color: var(--color-muted);
}
.mobile-nav__sub-toggle svg { width: 15px; height: 15px; transition: transform 0.22s ease; }
.mobile-nav__sub-toggle[aria-expanded="true"] { color: var(--color-accent); }
.mobile-nav__sub-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.mobile-nav__sub {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav__sub.is-open { grid-template-rows: 1fr; }
.mobile-nav__sub > div { overflow: hidden; }
.mobile-nav__sub a {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  padding: 0.75rem 0 0.75rem 1rem;
  border-bottom: 0 !important;
  font-family: var(--font-body) !important;
  font-size: 0.9375rem !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  color: var(--color-muted);
}
.mobile-nav__sub a:first-child { padding-top: 0.9rem; }
.mobile-nav__sub a:last-child { padding-bottom: 1.1rem; }
.mobile-nav__sub a:hover { color: var(--color-accent); }
.nav-menu__count { font-size: var(--fs-xs); color: var(--color-muted); flex-shrink: 0; }

/* --------------------------------------------------------------------------
   7. Hero — product-led, with a tinted stage instead of a flat image panel
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3rem, 6vw, 5.5rem);
  overflow: hidden;
  background: var(--color-bg);
}

/* One soft tinted shape behind the artwork, rather than a full-page wash —
   the wash made the whole section read muddy. */
.hero::before {
  content: "";
  position: absolute;
  top: -18%;
  right: -20%;
  width: min(78vw, 900px);
  aspect-ratio: 1;
  border-radius: 46% 54% 52% 48% / 48% 44% 56% 52%;
  background: linear-gradient(150deg, var(--color-accent-tint), var(--color-soft));
  pointer-events: none;
}
@media (max-width: 979px) {
  .hero::before { top: 38%; right: -34%; width: 120vw; opacity: 0.75; }
}
.hero > * { position: relative; z-index: 1; }

.hero-grid { display: grid; gap: clamp(2.5rem, 5vw, 3.5rem); align-items: center; }
@media (min-width: 980px) { .hero-grid { grid-template-columns: 1.04fr 0.96fr; } }

/* Offer badge above the headline */
.hero__offer {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  border-radius: 999px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 10px -4px rgba(15, 18, 13, 0.14);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-heading);
}
.hero__offer b {
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: var(--color-accent-alt);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero h1 { font-size: var(--fs-display); margin-bottom: 1.15rem; }
.hero h1 em {
  font-style: normal;
  color: var(--color-accent);
  position: relative;
  white-space: nowrap;
}
/* Hand-drawn underline under the emphasised word */
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -0.06em;
  height: 0.14em;
  border-radius: 999px;
  background: var(--color-accent);
  opacity: 0.28;
}

.hero__lede {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--color-muted);
  max-width: 44ch;
  margin-bottom: 2rem;
  text-wrap: pretty;
}
.hero .btn-row { margin-bottom: 2rem; }

.hero__proof {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 0.6rem 1.5rem;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-muted);
}
.hero__proof-item { display: flex; align-items: center; gap: 0.45rem; }
.hero__proof-item svg { width: 18px; height: 18px; color: var(--color-accent); flex-shrink: 0; }

/* ---- The stage: three product packs arranged on a tinted disc ---- */

.hero__stage {
  position: relative;
  aspect-ratio: 1 / 0.94;
  max-width: 620px;
  margin-inline: auto;
}

.hero__disc {
  position: absolute;
  inset: 6% 4% 10%;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--color-soft), var(--color-surface));
  box-shadow: inset 0 -20px 60px -30px rgba(15, 18, 13, 0.2);
}

.hero__pack {
  position: absolute;
  border-radius: 22px;
  overflow: hidden;
  background: var(--color-bg);
  box-shadow: 0 6px 14px rgba(15, 18, 13, 0.06), 0 30px 60px -26px rgba(15, 18, 13, 0.42);
}
.hero__pack img { width: 100%; height: 100%; object-fit: cover; }

.hero__pack--main {
  width: 52%;
  left: 24%;
  top: 4%;
  z-index: 3;
  animation: heroFloat 7s ease-in-out infinite;
}
.hero__pack--a {
  width: 36%;
  left: 1%;
  top: 40%;
  z-index: 2;
  transform: rotate(-7deg);
  animation: heroFloat 8.5s ease-in-out infinite 0.6s;
}
.hero__pack--b {
  width: 36%;
  right: 1%;
  top: 47%;
  z-index: 2;
  transform: rotate(7deg);
  animation: heroFloat 9.5s ease-in-out infinite 1.2s;
}

/* --py is written by the parallax loop; the float rides on top of it. */
@keyframes heroFloat {
  0%, 100% { translate: 0 var(--py, 0px); }
  50% { translate: 0 calc(var(--py, 0px) - 12px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__pack { animation: none !important; }
}

/* Floating chips over the stage */
.hero__chip {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  border-radius: 16px;
  background: var(--color-bg);
  box-shadow: 0 6px 14px rgba(15, 18, 13, 0.06), 0 18px 40px -18px rgba(15, 18, 13, 0.36);
  font-size: var(--fs-xs);
  font-weight: 600;
  white-space: nowrap;
}
.hero__chip svg { width: 17px; height: 17px; color: var(--color-accent); flex-shrink: 0; }
.hero__chip strong { display: block; font-size: 0.9375rem; color: var(--color-heading); line-height: 1.2; }
.hero__chip span { color: var(--color-muted); font-weight: 500; }

.hero__chip--rating { left: -2%; top: 12%; }
.hero__chip--ship { right: -2%; bottom: 6%; }

@media (max-width: 619px) {
  .hero__chip { padding: 0.55rem 0.75rem; }
  .hero__chip--rating { left: 0; top: 6%; }
  .hero__chip--ship { right: 0; bottom: 2%; }
  .hero__chip--ship span { display: none; }
}

/* --------------------------------------------------------------------------
   8. Marquee ticker
   -------------------------------------------------------------------------- */

.marquee {
  overflow: hidden;
  background: var(--color-heading);
  color: var(--color-bg);
  padding-block: 0.9rem;
  --marquee-duration: 42s;
}
.marquee__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee var(--marquee-duration) linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: var(--fs-sm);
  font-weight: 500;
  white-space: nowrap;
  opacity: 0.92;
}
.marquee__item svg { width: 16px; height: 16px; opacity: 0.75; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
}

/* --------------------------------------------------------------------------
   9. Value strip
   -------------------------------------------------------------------------- */

.strip { border-bottom: 1px solid var(--color-border); background: var(--color-bg); }
.strip__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding-block: 2rem;
}
@media (min-width: 768px) { .strip__grid { grid-template-columns: repeat(4, 1fr); } }

.strip__item { display: flex; align-items: center; gap: 0.75rem; font-size: var(--fs-sm); font-weight: 500; }
.strip__item svg { width: 24px; height: 24px; color: var(--color-accent); flex-shrink: 0; }

/* --------------------------------------------------------------------------
   10. Steps
   -------------------------------------------------------------------------- */

.steps { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.step {
  position: relative;
  padding: 2.25rem 2rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 28px;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
}
.step:hover { transform: translateY(-5px); box-shadow: 0 24px 48px -22px rgba(13, 23, 19, 0.28); }

.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  margin-bottom: 1.25rem;
  border-radius: 16px;
  background: linear-gradient(140deg, var(--color-accent-tint), var(--color-soft));
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 700;
}
.step h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.step p { color: var(--color-muted); font-size: 0.9375rem; margin: 0; }

/* --------------------------------------------------------------------------
   11. Product cards — colour-blocked by category
   -------------------------------------------------------------------------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 700px) { .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; } }
@media (min-width: 1050px) { .product-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.product-card {
  --tint: var(--color-surface);
  --deep: var(--color-muted);
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 26px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.3s ease, border-color 0.25s ease;
}
.card-style-elevated .product-card { border-color: transparent; box-shadow: 0 2px 8px rgba(13, 23, 19, 0.05); }
.card-style-flat .product-card { border-color: transparent; background: var(--color-surface); }

.product-card:hover {
  transform: translateY(-7px);
  border-color: transparent;
  box-shadow: 0 8px 16px rgba(13, 23, 19, 0.04), 0 32px 60px -26px rgba(13, 23, 19, 0.4);
}

.product-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  background: var(--tint);
  overflow: hidden;
}
.product-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card:hover .product-card__media img { transform: scale(1.07); }

.product-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: var(--color-heading);
  color: var(--color-bg);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-card__body {
  display: flex; flex-direction: column; flex: 1;
  padding: 1.15rem 1.15rem 1.35rem;
  gap: 0.4rem;
}
@media (min-width: 700px) { .product-card__body { padding: 1.4rem; } }

.product-card__cat {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--deep);
}
.product-card__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: var(--weight-heading);
  letter-spacing: var(--tracking-heading);
  margin: 0;
  line-height: 1.22;
}
.product-card__benefit {
  font-size: var(--fs-sm);
  color: var(--color-muted);
  margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}


.price { display: flex; align-items: baseline; gap: 0.45rem; }
.price__now {
  font-size: 1.1875rem;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: var(--tracking-heading);
  color: var(--color-heading);
}
.price__was { font-size: var(--fs-sm); color: var(--color-muted); text-decoration: line-through; }
.price__note { font-size: var(--fs-xs); color: var(--color-muted); }

/* --------------------------------------------------------------------------
   12. Stars
   -------------------------------------------------------------------------- */

.stars { display: inline-flex; align-items: center; gap: 2px; line-height: 1; }
.stars svg { width: 15px; height: 15px; color: var(--color-star); }
.stars--sm svg { width: 13px; height: 13px; }
.stars--lg svg { width: 19px; height: 19px; }

.rating-line { display: flex; align-items: center; gap: 0.5rem; font-size: var(--fs-xs); color: var(--color-muted); }

/* --------------------------------------------------------------------------
   13. New arrivals — three products at a larger size, image doing the work
   -------------------------------------------------------------------------- */

.arrivals { display: grid; gap: 1.25rem; }
@media (min-width: 760px) { .arrivals { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; } }

.arrival {
  --tint: var(--color-surface);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 26px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.25s ease;
}
.arrival:hover {
  transform: translateY(-7px);
  border-color: transparent;
  box-shadow: 0 8px 16px rgba(15, 18, 13, 0.04), 0 32px 60px -26px rgba(15, 18, 13, 0.4);
}

.arrival__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3.6;
  background: var(--tint);
  overflow: hidden;
}
.arrival__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.arrival:hover .arrival__media img { transform: scale(1.06); }

.arrival__flag {
  position: absolute;
  top: 14px; left: 14px;
  padding: 0.36rem 0.75rem;
  border-radius: 999px;
  background: var(--color-accent-alt);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.arrival__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  padding: 1.5rem;
}
.arrival__cat {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--deep, var(--color-muted));
}
.arrival__body h3 { font-size: 1.3125rem; margin: 0; }
.arrival__body > p { font-size: 0.9375rem; color: var(--color-muted); margin: 0; }

.arrival__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.25rem;
}

/* --------------------------------------------------------------------------
   14. Quality picks — an editorial list beside one large product visual
   -------------------------------------------------------------------------- */

.picks { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 960px) { .picks { grid-template-columns: 1fr 0.85fr; gap: 4rem; } }

.picks__list { display: flex; flex-direction: column; }

.pick {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 1.25rem 0.5rem;
  border-bottom: 1px solid var(--color-border);
  transition: padding-left 0.24s cubic-bezier(0.22, 1, 0.36, 1), color 0.2s ease;
}
.pick:first-child { padding-top: 0; }
.pick:last-child { border-bottom: 0; }
.pick:hover { padding-left: 1.15rem; color: var(--color-text); }

.pick__num {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--color-muted);
  width: 1.5rem;
  flex-shrink: 0;
}

.pick__thumb {
  width: 68px; height: 68px;
  flex-shrink: 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--color-surface);
}
.pick__thumb img { width: 100%; height: 100%; object-fit: cover; }

.pick__text { min-width: 0; flex: 1; }
.pick__text h3 {
  font-size: 1.125rem;
  margin: 0 0 0.15rem;
  transition: color 0.2s ease;
}
.pick:hover .pick__text h3 { color: var(--color-accent); }
.pick__text p { font-size: 0.875rem; color: var(--color-muted); margin: 0; }

.pick__price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.0625rem;
  flex-shrink: 0;
  color: var(--color-heading);
}

.picks__hero {
  position: relative;
  aspect-ratio: 1 / 1.08;
  border-radius: 32px;
  overflow: hidden;
  background: var(--color-soft);
  box-shadow: 0 4px 12px rgba(15, 18, 13, 0.04), 0 34px 70px -30px rgba(15, 18, 13, 0.4);
}
.picks__hero img { width: 100%; height: 100%; object-fit: cover; }

.picks__hero-tag {
  position: absolute;
  left: 20px; bottom: 20px; right: 20px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  border-radius: 20px;
  background: var(--color-bg);
  box-shadow: 0 10px 30px -12px rgba(15, 18, 13, 0.35);
}
.picks__hero-tag strong { display: block; font-size: 0.9375rem; color: var(--color-heading); line-height: 1.25; }
.picks__hero-tag span { font-size: var(--fs-xs); color: var(--color-muted); }
.picks__hero-tag .btn { margin-left: auto; flex-shrink: 0; }

/* --------------------------------------------------------------------------
   15. Trust badges
   -------------------------------------------------------------------------- */

.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

.trust-badge {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.8rem;
  padding: 2rem 1.25rem;
  text-align: center;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 26px;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
}
.trust-badge:hover { transform: translateY(-5px); box-shadow: 0 24px 48px -24px rgba(13, 23, 19, 0.28); }

.trust-badge__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px;
  border-radius: 19px;
  background: linear-gradient(140deg, var(--color-accent-tint), var(--color-soft));
  color: var(--color-accent);
}
.trust-badge__icon svg { width: 26px; height: 26px; }
.trust-badge h4 { margin: 0; font-size: 0.9375rem; }
.trust-badge p { margin: 0; font-size: var(--fs-xs); color: var(--color-muted); }

/* --------------------------------------------------------------------------
   16. Testimonials — split card (text left, portrait right) in a slider
   -------------------------------------------------------------------------- */

.reviews { background: var(--color-surface); }

/* Slider: scroll-snap track, no library. Arrows and dots drive scrollTo. */
.slider { position: relative; }

.slider__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 88%;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.slider__track::-webkit-scrollbar { display: none; }
.slider__track > * { scroll-snap-align: start; }

@media (min-width: 900px) { .slider__track { grid-auto-columns: calc((100% - 1.75rem) / 2); gap: 1.75rem; } }

.slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.slider__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border: 1.5px solid var(--color-border-strong);
  border-radius: 50%;
  background: var(--color-bg);
  color: var(--color-heading);
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.slider__arrow:hover:not(:disabled) {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-on-accent);
  transform: translateY(-2px);
}
.slider__arrow:disabled { opacity: 0.35; cursor: default; }
.slider__arrow svg { width: 18px; height: 18px; }

.slider__dots { display: flex; align-items: center; gap: 0.5rem; }
.slider__dot {
  width: 9px; height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--color-border-strong);
  transition: width 0.24s ease, background-color 0.24s ease;
}
.slider__dot.is-active { width: 26px; background: var(--color-accent); }

/* The card itself: copy on the left, a tall portrait filling the right. */
.testimonial {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  height: 100%;
  background: var(--color-bg);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15, 18, 13, 0.04), 0 10px 30px -18px rgba(15, 18, 13, 0.3);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
}
@media (min-width: 560px) { .testimonial { grid-template-columns: 1fr 0.62fr; } }
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(15, 18, 13, 0.05), 0 26px 50px -22px rgba(15, 18, 13, 0.35);
}

.testimonial__body {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  min-width: 0;
}
@media (min-width: 700px) { .testimonial__body { padding: 2.25rem; } }

.testimonial .stars { margin-bottom: 1rem; }
.testimonial .stars svg { width: 17px; height: 17px; }

.testimonial__quote {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--color-heading);
  margin: 0 0 auto;
  padding-bottom: 1.5rem;
}
@media (min-width: 700px) { .testimonial__quote { font-size: 1.125rem; } }

.testimonial__who { padding-top: 1.35rem; border-top: 1px solid var(--color-border); }
.testimonial__name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: var(--tracking-heading);
  line-height: 1.3;
  color: var(--color-heading);
}
.testimonial__meta { font-size: var(--fs-sm); color: var(--color-muted); }

.testimonial__photo {
  position: relative;
  background: var(--color-surface);
  min-height: 210px;
  margin: 1.25rem 1.25rem 1.25rem 0;
  border-radius: 14px;
  overflow: hidden;
}
@media (max-width: 559px) { .testimonial__photo { margin: 0 1.75rem 1.75rem; aspect-ratio: 4/3; } }
.testimonial__photo img { width: 100%; height: 100%; object-fit: cover; }

/* Promo line + aggregate score, sat under the slider. */
.reviews-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2.75rem;
  text-align: center;
}

.reviews-promo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 1rem;
  color: var(--color-text);
}
.reviews-promo__pill {
  padding: 0.28rem 0.8rem;
  border-radius: 999px;
  background: var(--color-accent-alt);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: 700;
}
.reviews-promo a { font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }
.reviews-promo a:hover { color: var(--color-accent); }

.reviews-score {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: var(--tracking-heading);
  color: var(--color-heading);
  font-size: 1.25rem;
}
.reviews-score .stars svg { width: 21px; height: 21px; }

/* Static grid, still used on the product page. */
.testimonial-grid { display: grid; gap: 1.25rem; }
@media (min-width: 900px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; } }

/* --------------------------------------------------------------------------
   17. Accordion
   -------------------------------------------------------------------------- */

.accordion { max-width: 820px; margin-inline: auto; border-top: 1px solid var(--color-border); }
.accordion--wide { max-width: none; }
.accordion__item { border-bottom: 1px solid var(--color-border); }

.accordion__trigger {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: 100%;
  padding: 1.35rem 0;
  background: none; border: 0;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: var(--weight-heading);
  letter-spacing: var(--tracking-heading);
  color: var(--color-heading);
  transition: color 0.18s ease;
}
.accordion__trigger:hover { color: var(--color-accent); }

.accordion__icon {
  position: relative; flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--color-soft);
  transition: background-color 0.2s ease;
}
.accordion__trigger:hover .accordion__icon { background: var(--color-accent-tint); }
.accordion__icon::before, .accordion__icon::after {
  content: "";
  position: absolute; top: 50%; left: 50%;
  width: 13px; height: 2px;
  background: var(--color-accent);
  transform: translate(-50%, -50%);
  transition: transform 0.24s ease;
  border-radius: 2px;
}
.accordion__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.accordion__trigger[aria-expanded="true"] .accordion__icon::after { transform: translate(-50%, -50%) rotate(0deg); }

.accordion__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease; }
.accordion__panel > div { overflow: hidden; }
.accordion__item.is-open .accordion__panel { grid-template-rows: 1fr; }
.accordion__panel p {
  padding-bottom: 1.5rem;
  color: var(--color-muted);
  font-size: 0.9375rem;
  margin: 0;
  max-width: 68ch;
}

/* --------------------------------------------------------------------------
   18. CTA banner
   -------------------------------------------------------------------------- */

.cta-banner {
  position: relative;
  overflow: hidden;
  /* Deepened for the same contrast reason as .bento__cell--accent. */
  background: linear-gradient(135deg, var(--color-accent-deep) 0%, var(--color-accent-deeper) 100%);
  color: var(--color-on-accent);
  border-radius: 40px;
  padding: clamp(2.75rem, 7vw, 5rem);
  text-align: center;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -45%; right: -8%;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: var(--color-on-accent);
  opacity: 0.07;
}
.cta-banner::after {
  content: "";
  position: absolute;
  bottom: -55%; left: -6%;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: var(--color-on-accent);
  opacity: 0.05;
}
.cta-banner > * { position: relative; z-index: 1; }

/* Three packs peeking along the base, so the banner is not a bare rectangle. */
.cta-banner__packs {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
.cta-banner__pack {
  width: clamp(84px, 15vw, 132px);
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  background: var(--color-bg);
  box-shadow: 0 14px 34px -14px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.cta-banner__pack img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner__pack:nth-child(1) { transform: rotate(-6deg) translateY(10px); }
.cta-banner__pack:nth-child(3) { transform: rotate(6deg) translateY(10px); }
.cta-banner__pack:hover { transform: translateY(-6px) rotate(0deg); }
.cta-banner h2 { color: var(--color-on-accent); margin-bottom: 0.85rem; }
.cta-banner p {
  color: var(--color-on-accent);
  opacity: 0.92;
  max-width: 52ch;
  margin: 0 auto 2rem;
  font-size: var(--fs-lead);
}
.cta-banner .btn-row { justify-content: center; }

/* --------------------------------------------------------------------------
   19. Category tiles
   -------------------------------------------------------------------------- */

.category-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.85rem; }
@media (min-width: 700px) { .category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; } }
@media (min-width: 1000px) { .category-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); } }

.category-tile {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.75rem;
  padding: 1.9rem 0.9rem;
  text-align: center;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  transition: border-color 0.2s ease, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
}
.category-tile:hover {
  border-color: transparent;
  transform: translateY(-5px);
  box-shadow: 0 24px 44px -22px rgba(13, 23, 19, 0.3);
  color: var(--color-text);
}

.category-tile__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 19px;
  background: linear-gradient(140deg, var(--color-accent-tint), var(--color-soft));
  color: var(--color-accent);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.category-tile:hover .category-tile__icon { transform: scale(1.1) rotate(-5deg); }
.category-tile__icon svg { width: 23px; height: 23px; }

.category-tile__name {
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  font-size: 0.9375rem;
  line-height: 1.25;
  letter-spacing: var(--tracking-heading);
}
.category-tile__count { font-size: var(--fs-xs); color: var(--color-muted); }

/* --------------------------------------------------------------------------
   20. Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding-block: clamp(3rem, 6vw, 5rem) 1.75rem;
  margin-top: auto;
}
.site-footer a { color: var(--color-footer-text); }
.site-footer a:hover { color: var(--color-bg); }

.footer-grid { display: grid; gap: 2.5rem; padding-bottom: 3rem; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }

.footer-brand img { width: var(--logo-width, 152px); height: auto; margin-bottom: 1.15rem; }
.footer-brand p { font-size: var(--fs-sm); opacity: 0.72; max-width: 34ch; }

.footer-col h4 {
  font-size: 0.6875rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
  opacity: 0.55;
  color: var(--color-footer-text);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.7rem; }
.footer-col a { font-size: 0.9375rem; opacity: 0.85; }

.footer-disclaimer {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: var(--fs-xs);
  line-height: 1.65;
  opacity: 0.55;
  max-width: 92ch;
}

.footer-bottom {
  display: flex; flex-direction: column; gap: 0.85rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: var(--fs-xs);
  opacity: 0.65;
}
@media (min-width: 700px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 1.35rem; list-style: none; padding: 0; margin: 0; }
.footer-bottom li { margin: 0; }

/* --------------------------------------------------------------------------
   21. Page head + breadcrumbs
   -------------------------------------------------------------------------- */

.page-head {
  background:
    radial-gradient(760px 400px at 6% -30%, var(--color-accent-tint) 0%, transparent 62%),
    var(--color-soft);
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  border-bottom: 1px solid var(--color-border);
}
.page-head h1 { margin-bottom: 0.65rem; }
.page-head p { color: var(--color-muted); max-width: 62ch; margin: 0; font-size: var(--fs-lead); }

.breadcrumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.45rem;
  font-size: var(--fs-xs);
  color: var(--color-muted);
  margin-bottom: 1rem;
}
.breadcrumbs a:hover { color: var(--color-accent); }
.breadcrumbs span[aria-hidden] { opacity: 0.45; }

/* --------------------------------------------------------------------------
   22. Shop filters
   -------------------------------------------------------------------------- */

.shop-layout { display: grid; gap: 2rem; }
@media (min-width: 980px) { .shop-layout { grid-template-columns: 248px 1fr; gap: 3.5rem; align-items: start; } }

.filters {
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 1.5rem;
  background: var(--color-bg);
}
@media (min-width: 980px) { .filters { position: sticky; top: 106px; } }

.filters__group + .filters__group { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border); }
.filters__group h4 {
  font-size: 0.6875rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.filter-option {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.4rem 0;
  font-size: 0.9375rem;
  cursor: pointer;
}
.filter-option input { accent-color: var(--color-accent); width: 17px; height: 17px; cursor: pointer; }
.filter-option__count { margin-left: auto; font-size: var(--fs-xs); color: var(--color-muted); }

.shop-toolbar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.85rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--color-border);
}
.shop-toolbar__count { font-size: var(--fs-sm); color: var(--color-muted); margin-right: auto; font-weight: 500; }

.select {
  padding: 0.65rem 2.25rem 0.65rem 1rem;
  border: 1px solid var(--color-border-strong);
  border-radius: 999px;
  background: var(--color-bg);
  font-size: var(--fs-sm);
  font-weight: 500;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.filters-toggle { display: inline-flex; }
@media (min-width: 980px) { .filters-toggle { display: none; } }
@media (max-width: 979px) {
  .filters { display: none; }
  .filters.is-open { display: block; }
}

.active-filters { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; }
.filter-chip {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.4rem 0.55rem 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--color-accent-tint);
  color: var(--color-accent);
  font-size: var(--fs-xs);
  font-weight: 700;
}
.filter-chip button {
  display: inline-flex; align-items: center; justify-content: center;
  width: 19px; height: 19px; padding: 0;
  border: 0; border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-on-accent);
  font-size: 0.75rem; line-height: 1;
}

.empty-state {
  padding: 4.5rem 1rem;
  text-align: center;
  color: var(--color-muted);
  border: 1px dashed var(--color-border-strong);
  border-radius: 28px;
}

/* --------------------------------------------------------------------------
   23. Product detail
   -------------------------------------------------------------------------- */

.pdp { display: grid; gap: 2.5rem; }
@media (min-width: 980px) { .pdp { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; } }

.pdp__gallery { display: grid; gap: 0.85rem; }
@media (min-width: 980px) { .pdp__gallery { position: sticky; top: 106px; } }

.pdp__main-image { aspect-ratio: 1/1; background: var(--color-surface); border-radius: 32px; overflow: hidden; }
.pdp__main-image img { width: 100%; height: 100%; object-fit: cover; }

.pdp__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.85rem; }
.pdp__thumb {
  aspect-ratio: 1/1;
  border: 2px solid transparent;
  border-radius: 18px;
  overflow: hidden;
  background: var(--color-surface);
  padding: 0;
  cursor: pointer;
  transition: border-color 0.18s ease;
}
.pdp__thumb.is-active { border-color: var(--color-accent); }
.pdp__thumb img { width: 100%; height: 100%; object-fit: cover; }

.pdp__info h1 { margin-bottom: 0.85rem; }
.pdp__lede { font-size: var(--fs-lead); color: var(--color-muted); }

.pdp__price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 0.7rem; margin-block: 1.5rem; }
.pdp__price .price__now { font-size: 2rem; }
.pdp__price .price__was { font-size: 1.125rem; }
.pdp__save {
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--color-accent-alt-tint);
  color: var(--color-accent-alt);
  font-size: var(--fs-xs);
  font-weight: 700;
}

.pdp__options { margin-bottom: 1.75rem; }
.pdp__options h4 { font-size: var(--fs-xs); letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-muted); margin-bottom: 0.75rem; }
.option-pills { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.option-pill {
  padding: 0.7rem 1.25rem;
  border: 1.5px solid var(--color-border-strong);
  border-radius: 999px;
  background: var(--color-bg);
  font-size: var(--fs-sm);
  font-weight: 500;
  transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}
.option-pill.is-active {
  border-color: var(--color-accent);
  background: var(--color-accent-tint);
  color: var(--color-accent);
  font-weight: 700;
}

.pdp__buy { display: grid; gap: 0.85rem; margin-bottom: 1.5rem; }
.pdp__reassure {
  display: flex; flex-direction: column; gap: 0.6rem;
  padding: 1.25rem 1.4rem;
  background: var(--color-soft);
  border-radius: 20px;
  font-size: var(--fs-sm);
  margin-bottom: 2rem;
}
.pdp__reassure div { display: flex; align-items: center; gap: 0.6rem; }
.pdp__reassure svg { width: 18px; height: 18px; color: var(--color-accent); flex-shrink: 0; }

.benefit-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.8rem; }
.benefit-list li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.9375rem; margin: 0; }
.benefit-list svg { width: 20px; height: 20px; color: var(--color-accent); flex-shrink: 0; margin-top: 2px; }

.info-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .info-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
.info-card {
  padding: 2rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 28px;
}
.info-card h3 { font-size: 1.25rem; }

.sticky-buy {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: flex; align-items: center; gap: 0.9rem;
  padding: 0.85rem var(--gutter) calc(0.85rem + env(safe-area-inset-bottom));
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -6px 30px rgba(13, 23, 19, 0.10);
  transform: translateY(110%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.sticky-buy.is-visible { transform: translateY(0); }
.sticky-buy__info { min-width: 0; flex: 1; }
.sticky-buy__name { font-size: var(--fs-sm); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-buy__price { font-size: var(--fs-xs); color: var(--color-muted); }
.sticky-buy .btn { flex-shrink: 0; }
@media (min-width: 980px) { .sticky-buy { display: none; } }

/* --------------------------------------------------------------------------
   24. Forms
   -------------------------------------------------------------------------- */

.form { display: grid; gap: 1.25rem; }
.field { display: grid; gap: 0.45rem; }
.field label { font-size: var(--fs-sm); font-weight: 600; }
.field .hint { font-size: var(--fs-xs); color: var(--color-muted); }

.input, .textarea, .field select {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid var(--color-border-strong);
  border-radius: 16px;
  background: var(--color-bg);
  font-size: 1rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.input:focus, .textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px var(--color-accent-tint);
}
.textarea { min-height: 152px; resize: vertical; }

.field--error .input, .field--error .textarea { border-color: var(--color-error); }
.field__error { font-size: var(--fs-xs); color: var(--color-error); }

.form-note { padding: 1.15rem 1.35rem; border-radius: 18px; font-size: var(--fs-sm); }
.form-note--ok { background: var(--color-accent-tint); color: var(--color-accent); }

.contact-layout { display: grid; gap: 2.5rem; }
@media (min-width: 980px) { .contact-layout { grid-template-columns: 1.35fr 1fr; gap: 4rem; align-items: start; } }

.contact-card { padding: 2rem; background: var(--color-soft); border-radius: 28px; }
.contact-card dl { margin: 0; display: grid; gap: 1.25rem; }
.contact-card dt { font-size: 0.6875rem; letter-spacing: 0.11em; text-transform: uppercase; color: var(--color-muted); margin-bottom: 0.25rem; }
.contact-card dd { margin: 0; font-size: 0.9375rem; }

/* --------------------------------------------------------------------------
   25. Long-form + legal
   -------------------------------------------------------------------------- */

.prose { max-width: 74ch; }
.prose h2 { font-size: 1.5rem; margin-top: 2.75rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.125rem; margin-top: 1.85rem; }
.prose p, .prose li { color: var(--color-text); font-size: 0.9375rem; line-height: 1.78; }
.prose ul { padding-left: 1.15em; }

.placeholder-note {
  display: flex; gap: 0.9rem;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.75rem;
  border: 1px solid var(--color-warn-border);
  border-left: 4px solid var(--color-warn);
  border-radius: 18px;
  background: var(--color-warn-bg);
  font-size: var(--fs-sm);
  line-height: 1.6;
}
.placeholder-note svg { width: 21px; height: 21px; color: var(--color-warn); flex-shrink: 0; margin-top: 2px; }
.placeholder-note strong { display: block; margin-bottom: 0.25rem; }

body.show-placeholders .is-placeholder { outline: 2px dashed var(--color-warn); outline-offset: 3px; }

/* --------------------------------------------------------------------------
   26. About page
   -------------------------------------------------------------------------- */

.split { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 980px) { .split { grid-template-columns: 1fr 1fr; gap: 4.5rem; } }
.split--reverse .split__media { order: -1; }
@media (min-width: 980px) { .split--reverse .split__media { order: 1; } }

.split__media { aspect-ratio: 4/3; background: var(--color-surface); border-radius: 32px; overflow: hidden; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }

.stat-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (min-width: 768px) { .stat-row { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; }
.stat__num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: var(--tracking-heading);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat__label { font-size: var(--fs-xs); color: var(--color-muted); }

/* --------------------------------------------------------------------------
   27. Scroll motion — reveal, stagger, parallax, progress
   All of it is opt-in per element and switched off wholesale for visitors
   who prefer reduced motion.
   -------------------------------------------------------------------------- */

/* --- Reveal on enter --- */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.js [data-reveal].is-revealed { opacity: 1; transform: none; will-change: auto; }

/* --- Staggered children (cards animating in one after another) --- */

.js [data-stagger] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--i, 0) * 70ms);
}
.js [data-stagger].is-revealed > * { opacity: 1; transform: none; }

/* --- Parallax --- */

[data-parallax] { translate: 0 var(--py, 0px); }
/* The hero packs animate `translate` themselves, so they read --py from the
   keyframes instead — see heroFloat. */
.hero__pack[data-parallax] { translate: unset; }

/* --- Scroll progress bar --- */

.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 200;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-alt));
  pointer-events: none;
}

/* --- Image reveal on scroll, where the browser supports it natively --- */

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .spotlight__media img,
    .split__media img {
      animation: scrollZoom linear both;
      animation-timeline: view();
      animation-range: entry 10% cover 70%;
    }
    @keyframes scrollZoom {
      from { scale: 1.12; }
      to { scale: 1; }
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal],
  .js [data-stagger] > * { opacity: 1; transform: none; transition: none; }
  [data-parallax] { translate: none; }
  .scroll-progress { display: none; }
}

/* --------------------------------------------------------------------------
   28. Promo / offer banner — full-width contrasting strip
   -------------------------------------------------------------------------- */

.promo {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--color-heading) 0%, #1d2318 100%);
  color: #fff;
}
.promo::before {
  content: "";
  position: absolute;
  top: -60%; right: -4%;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.22;
}
.promo__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: flex-start;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}
@media (min-width: 820px) {
  .promo__inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 3rem; }
}
.promo__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--color-accent-alt);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.promo h2 { color: #fff; margin-bottom: 0.6rem; max-width: 18ch; }
.promo p { color: rgba(255, 255, 255, 0.78); max-width: 46ch; margin: 0; font-size: var(--fs-lead); }
.promo__code {
  display: inline-block;
  margin-top: 1.15rem;
  padding: 0.55rem 1rem;
  border: 1.5px dashed rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
}

/* --------------------------------------------------------------------------
   29. Shop by goal
   -------------------------------------------------------------------------- */

.goals { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
@media (min-width: 900px) { .goals { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; } }

.goal {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 2rem 1.6rem;
  border-radius: 24px;
  background: var(--goal-tint, var(--color-soft));
  border: 1px solid transparent;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
}
.goal:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 46px -22px rgba(15, 18, 13, 0.35);
  color: var(--color-text);
}

.goal__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  margin-bottom: 0.4rem;
  border-radius: 17px;
  background: var(--color-bg);
  color: var(--goal-deep, var(--color-accent));
}
.goal__icon svg { width: 24px; height: 24px; }

.goal h3 { font-size: 1.125rem; margin: 0; }
.goal p { font-size: var(--fs-sm); color: var(--color-muted); margin: 0; flex: 1; }
.goal__link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  margin-top: 0.5rem;
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--goal-deep, var(--color-accent));
  transition: gap 0.2s ease;
}
.goal:hover .goal__link { gap: 0.6rem; }

/* --------------------------------------------------------------------------
   30. Best-seller spotlight
   -------------------------------------------------------------------------- */

.spotlight {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 36px;
  background: var(--spot-tint, var(--color-soft));
}
@media (min-width: 900px) { .spotlight { grid-template-columns: 1fr 1fr; gap: 4rem; padding: 3.5rem; } }

.spotlight__media {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 28px;
  overflow: hidden;
  background: var(--color-bg);
}
.spotlight__media img { width: 100%; height: 100%; object-fit: cover; }

.spotlight__flag {
  position: absolute;
  top: 16px; left: 16px;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--color-accent-alt);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spotlight__body h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); margin-bottom: 0.75rem; }
.spotlight__lede { color: var(--color-muted); font-size: var(--fs-lead); margin-bottom: 1.25rem; }
.spotlight__specs { list-style: none; padding: 0; margin: 0 0 1.75rem; display: grid; gap: 0.7rem; }
.spotlight__specs li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.9375rem; margin: 0; }
.spotlight__specs svg { width: 19px; height: 19px; color: var(--color-accent); flex-shrink: 0; margin-top: 2px; }

/* --------------------------------------------------------------------------
   31. Sale badge on product cards
   -------------------------------------------------------------------------- */

.product-card__save {
  position: absolute;
  top: 14px; right: 14px;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: var(--color-accent-alt);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

/* --------------------------------------------------------------------------
   32. Newsletter (footer)
   -------------------------------------------------------------------------- */

.newsletter {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 3rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
}
@media (min-width: 820px) { .newsletter { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; } }

.newsletter h3 { color: var(--color-bg); font-size: 1.375rem; margin-bottom: 0.4rem; }
.newsletter p { font-size: var(--fs-sm); opacity: 0.72; margin: 0; }

.newsletter__form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}
.newsletter__form .btn { flex: 0 0 auto; }
.newsletter__form input {
  flex: 1 1 200px;
  min-width: 0;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-bg);
  font-size: var(--fs-sm);
}
.newsletter__form input::placeholder { color: rgba(255, 255, 255, 0.45); }
.newsletter__form input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(76, 140, 27, 0.25);
}
.newsletter__note {
  font-size: var(--fs-xs);
  opacity: 0.55;
  margin-top: 0.85rem;
  line-height: 1.5;
  max-width: 46ch;
}

/* Below the two-column breakpoint the heading and form stack, so the note
   needs the full width rather than half of it. */
@media (max-width: 819px) {
  .newsletter__note { max-width: none; }
}

/* --------------------------------------------------------------------------
   33. Awards strip — the numbers directly under the hero
   -------------------------------------------------------------------------- */

.awards {
  border-block: 1px solid var(--color-border);
  background: var(--color-bg);
}
.awards__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem;
  padding-block: 2rem;
  text-align: center;
}
@media (min-width: 820px) { .awards__grid { grid-template-columns: repeat(4, 1fr); } }

.award__value {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: var(--tracking-heading);
  color: var(--color-heading);
}
.award__label {
  display: block;
  margin-top: 0.4rem;
  font-size: var(--fs-xs);
  color: var(--color-muted);
}
.awards .stars { margin-bottom: 0.35rem; }

/* --------------------------------------------------------------------------
   34. Press strip — wordmarks, muted until hovered
   -------------------------------------------------------------------------- */

.press {
  padding-block: 2.25rem;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}
.press__label {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 1.35rem;
}
.press__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.75rem;
}
.press__logo {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--color-heading);
  opacity: 0.32;
  transition: opacity 0.22s ease;
}
.press__logo:hover { opacity: 0.7; }

/* --------------------------------------------------------------------------
   35. The collection band — the brand statement, with the colours on show
   -------------------------------------------------------------------------- */

.collection {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem);
  background:
    radial-gradient(60rem 30rem at 12% -20%, var(--color-accent-tint) 0%, transparent 62%),
    var(--color-soft);
  text-align: center;
}

.collection__eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 1rem;
}
.collection h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.85rem;
}
.collection__lede {
  max-width: 52ch;
  margin: 0 auto 2.5rem;
  color: var(--color-muted);
  font-size: var(--fs-lead);
  text-wrap: pretty;
}

/* The collection row: the actual product in every colour it comes in.
   This was a row of plain coloured circles, which read as a colour picker
   rather than a shop — you could not see what you were buying. */
.collection__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2.75rem;
}
@media (min-width: 620px) { .collection__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.25rem; } }
@media (min-width: 1080px) { .collection__grid { grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 0.9rem; } }

.colour-tile {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: center;
}

.colour-tile__media {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  background: var(--tile-tint, var(--color-surface));
  box-shadow: 0 1px 2px rgb(17 26 46 / 0.05), 0 10px 22px -14px rgb(17 26 46 / 0.4);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease;
}
.colour-tile:hover .colour-tile__media {
  transform: translateY(-6px);
  box-shadow: 0 4px 8px rgb(17 26 46 / 0.06), 0 22px 40px -18px rgb(17 26 46 / 0.5);
}
.colour-tile__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.colour-tile:hover .colour-tile__media img { transform: scale(1.07); }

/* A small ring of the actual silk, so the colour still reads at tile size. */
.colour-tile__chip {
  position: absolute;
  right: 8px; bottom: 8px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--swatch, transparent);
  box-shadow: 0 0 0 2px var(--color-bg), inset 0 0 0 1px rgb(17 26 46 / 0.14);
}

.colour-tile__name {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: var(--weight-heading);
  letter-spacing: var(--tracking-heading);
  line-height: 1.2;
  color: var(--color-heading);
  transition: color 0.2s ease;
}
.colour-tile:hover .colour-tile__name { color: var(--color-accent); }

.colour-tile__price { font-size: var(--fs-xs); color: var(--color-muted); }
.colour-tile__price s { opacity: 0.6; margin-left: 0.3rem; }

/* --------------------------------------------------------------------------
   36. Colour dot on product cards
   -------------------------------------------------------------------------- */

.product-card__colour {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--deep, var(--color-muted));
}
.product-card__colour i {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--swatch, var(--color-border));
  box-shadow: inset 0 0 0 1px rgb(17 26 46 / 0.14);
}

/* --------------------------------------------------------------------------
   37. Feature split — a product shot beside the reasons to buy
   Replaces the four floating icon cards, which had almost no visual weight
   and left a large dead gap under them.
   -------------------------------------------------------------------------- */

.feature-split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 960px) {
  .feature-split { grid-template-columns: 0.92fr 1.08fr; gap: clamp(3rem, 6vw, 5rem); }
}

.feature-split__media {
  position: relative;
  aspect-ratio: 1 / 1.05;
  border-radius: 30px;
  overflow: hidden;
  background: var(--feature-tint, var(--color-soft));
  box-shadow: 0 4px 12px rgb(17 26 46 / 0.04), 0 34px 70px -30px rgb(17 26 46 / 0.38);
}
.feature-split__media img { width: 100%; height: 100%; object-fit: cover; }

/* The colour chips sitting over the corner of the image. */
.feature-split__chips {
  position: absolute;
  left: 18px; bottom: 18px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: var(--color-bg);
  box-shadow: 0 8px 26px -10px rgb(17 26 46 / 0.4);
}
.feature-split__chips i {
  width: 20px; height: 20px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgb(17 26 46 / 0.12);
}
.feature-split__chips span {
  margin-left: 0.3rem;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--color-heading);
  white-space: nowrap;
}

.feature-list { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: 0; }

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--color-border);
  margin: 0;
}
.feature-item:first-child { padding-top: 0; }
.feature-item:last-child { border-bottom: 0; }

.feature-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 15px;
  background: var(--color-accent-tint);
  color: var(--color-accent);
  transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}
.feature-item:hover .feature-item__icon { transform: scale(1.08) rotate(-5deg); }
.feature-item__icon svg { width: 21px; height: 21px; }

.feature-item h3 { font-size: 1.125rem; margin: 0 0 0.2rem; }
.feature-item p { font-size: 0.9375rem; color: var(--color-muted); margin: 0; }

/* --------------------------------------------------------------------------
   38. Quantity stepper — used on the product page and in the basket
   -------------------------------------------------------------------------- */

.qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--color-border-strong);
  border-radius: 999px;
  overflow: hidden;
  background: var(--color-bg);
}
.qty__btn {
  width: 40px; height: 44px;
  border: 0;
  background: transparent;
  font-size: 1.125rem;
  line-height: 1;
  color: var(--color-heading);
  transition: background-color 0.16s ease;
}
.qty__btn:hover { background: var(--color-soft); }
.qty__input {
  width: 46px;
  height: 44px;
  border: 0;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 600;
  background: transparent;
  -moz-appearance: textfield;
}
.qty__input::-webkit-outer-spin-button,
.qty__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty__input:focus { outline: none; }
.qty--sm .qty__btn { width: 32px; height: 36px; font-size: 1rem; }
.qty--sm .qty__input { width: 38px; height: 36px; font-size: 0.875rem; }

/* --------------------------------------------------------------------------
   39. Basket
   -------------------------------------------------------------------------- */

.cart-layout { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 900px) { .cart-layout { grid-template-columns: 1fr 380px; gap: 3.5rem; } }

.cart-lines { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--color-border); }

.cart-line {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1.15rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
  margin: 0;
}
@media (min-width: 620px) { .cart-line { grid-template-columns: 116px 1fr auto; gap: 1.5rem; align-items: center; } }

.cart-line__media {
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
  background: var(--tint, var(--color-surface));
}
.cart-line__media img { width: 100%; height: 100%; object-fit: cover; }

.cart-line__body { min-width: 0; }
.cart-line__name {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: var(--weight-heading);
  letter-spacing: var(--tracking-heading);
  line-height: 1.25;
  margin: 0 0 0.25rem;
}
.cart-line__meta { font-size: var(--fs-sm); color: var(--color-muted); margin: 0 0 0.85rem; }
.cart-line__controls { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

.cart-line__remove {
  border: 0;
  background: none;
  padding: 0;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--color-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cart-line__remove:hover { color: var(--color-accent-alt); }

.cart-line__price {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-heading);
  white-space: nowrap;
}
@media (max-width: 619px) { .cart-line__price { grid-column: 2; } }

/* Order summary, sticky beside the lines on a wide screen. */
.summary {
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 1.75rem;
  background: var(--color-bg);
}
@media (min-width: 900px) { .summary { position: sticky; top: 106px; } }

.summary h2 { font-size: 1.25rem; margin-bottom: 1.25rem; }
.summary__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  font-size: 0.9375rem;
}
.summary__row span:last-child { font-weight: 600; color: var(--color-heading); }
.summary__row--total {
  margin-top: 0.6rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--color-border);
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--color-heading);
}
.summary .btn { margin-top: 1.35rem; }
.summary__note { margin-top: 1rem; font-size: var(--fs-xs); color: var(--color-muted); text-align: center; }

/* Progress toward free delivery. */
.ship-meter { margin-bottom: 1.5rem; }
.ship-meter__text { font-size: var(--fs-xs); color: var(--color-muted); margin-bottom: 0.5rem; }
.ship-meter__text b { color: var(--color-heading); }
.ship-meter__track {
  height: 6px;
  border-radius: 999px;
  background: var(--color-soft);
  overflow: hidden;
}
.ship-meter__fill {
  height: 100%;
  border-radius: 999px;
  background: var(--color-accent);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cart-empty { text-align: center; padding: 4rem 1rem; }
.cart-empty h2 { margin-bottom: 0.5rem; }
.cart-empty p { color: var(--color-muted); margin-bottom: 1.75rem; }

/* --------------------------------------------------------------------------
   40. Checkout

   A dedicated page with its own chrome: the form on the left, the order
   pinned beside it on the right, and no site navigation anywhere. Everything
   here is scoped to .co-* so it cannot leak into the rest of the site.
   -------------------------------------------------------------------------- */

/* --- the slim header and footer used only by this page ------------------- */

.co-header {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
}
.co-header__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding: 1rem var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.co-header__proof {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  font-size: var(--fs-xs);
  color: var(--color-muted);
}
.co-header__proof-stars { color: var(--color-star); letter-spacing: 0.06em; }
.co-header__logo { justify-self: center; display: block; }
.co-header__logo img { display: block; height: 34px; width: auto; }
.co-header__cart { justify-self: end; }

/* On a phone there is no room for three columns — the logo takes the left. */
@media (max-width: 719px) {
  .co-header__inner { grid-template-columns: 1fr auto; }
  .co-header__proof { display: none; }
  .co-header__logo { justify-self: start; }
}

.co-footer {
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
}
.co-footer__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding: 1.5rem var(--gutter);
}
.co-footer__inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.35rem;
  font-size: var(--fs-xs);
}
.co-footer__inner a { color: var(--color-muted); }
.co-footer__inner a:hover { color: var(--color-accent); }

/* --- the two-column shell ------------------------------------------------ */

.co-page { display: grid; align-items: start; }
/* The form pane keeps the page background whatever the summary does. */
.co-page__form { background: var(--color-bg); }

@media (min-width: 1000px) {
  .co-page { grid-template-columns: 1fr 1fr; align-items: stretch; }
  /* The summary's wash runs to the edge of the window, which is what makes
     the two halves read as separate panes rather than one wide form. */
  .co-page__summary {
    background: var(--color-surface);
    border-left: 1px solid var(--color-border);
  }
}

.co-form-inner {
  width: 100%;
  max-width: 34rem;
  margin-inline: auto;
  padding: 2.25rem var(--gutter) 4rem;
}
@media (min-width: 1000px) {
  .co-form-inner { margin-right: 0; padding-right: 3rem; }
}

.co-summary-inner {
  width: 100%;
  max-width: 30rem;
  margin-inline: auto;
  padding: 2.25rem var(--gutter) 3rem;
}
@media (min-width: 1000px) {
  .co-summary-inner {
    margin-left: 0;
    padding-left: 3rem;
    position: sticky;
    top: 0;
  }
}

/* On narrow screens the summary becomes a drawer above the form, so the
   first thing on screen is the form rather than a screen of line items. */
@media (max-width: 999px) {
  .co-page__summary {
    order: -1;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
  }
  .co-summary-inner { padding-block: 0; }
  .co-summary__body { display: none; padding-bottom: 1.75rem; }
  .co-summary__body.is-open { display: block; }
}
@media (min-width: 1000px) {
  .co-summary__toggle { display: none; }
}

.co-summary__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.1rem 0;
  border: 0;
  background: none;
  font: inherit;
  color: var(--color-accent);
  cursor: pointer;
}
.co-summary__toggle-label { display: inline-flex; align-items: center; gap: 0.5rem; }
.co-summary__toggle svg { width: 17px; height: 17px; }
.co-summary__chev { transition: transform 0.2s ease; }
.co-summary__toggle[aria-expanded="true"] .co-summary__chev { transform: rotate(180deg); }
.co-summary__toggle strong { color: var(--color-heading); font-size: 1.0625rem; }

/* --- blocks -------------------------------------------------------------- */

.co-block { margin-bottom: 2rem; }
.co-block__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.co-block__title {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0;
  margin: 0 0 0.9rem;
}
.co-block__head .co-block__title { margin-bottom: 0; }
.co-block__head + .field { margin-top: 0.9rem; }
.co-block__sub { font-size: var(--fs-sm); color: var(--color-muted); margin: -0.5rem 0 0.9rem; }
.co-block__link { font-size: var(--fs-sm); }

.co-row { display: grid; gap: 0.75rem; }
@media (min-width: 480px) { .co-row--2 { grid-template-columns: 1fr 1fr; } }

/* The hold-your-basket note. */
.co-urgent {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.75rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--color-ok-border);
  border-radius: 10px;
  background: var(--color-ok-bg);
  color: var(--color-ok);
  font-size: var(--fs-sm);
  line-height: 1.45;
}
.co-urgent svg { width: 18px; height: 18px; flex-shrink: 0; }

/* --- express wallets ----------------------------------------------------- */

.co-block--express { margin-bottom: 1.75rem; }

.co-express {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 0.6rem;
}
.co-wallet {
  height: 48px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.15s ease;
}
.co-wallet:hover { filter: brightness(1.08); }
.co-wallet:active { transform: translateY(1px); }
/* Each wallet's own colour, so the row is recognisable at a glance. */
.co-wallet--shoppay { background: #5a31f4; color: #ffffff; }
.co-wallet--paypal { background: #ffc439; color: #12235e; }
.co-wallet--gpay { background: #1f1f1f; color: #ffffff; }

.co-or {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0 0;
  font-size: var(--fs-xs);
  color: var(--color-muted);
}
.co-or::before,
.co-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

/* --- floating-label fields ------------------------------------------------
   The label sits inside the input and lifts once the field has something in
   it. :placeholder-shown is what does the work, which means browser autofill
   moves the label too — a JS-driven version would miss it.
   ------------------------------------------------------------------------ */

.field--float { position: relative; }

.field--float .input,
.field--float select {
  width: 100%;
  height: 3.25rem;
  padding: 1.35rem 0.85rem 0.4rem;
  border: 1px solid var(--color-border-strong);
  border-radius: 6px;
  background: var(--color-bg);
  font: inherit;
  font-size: 0.9375rem;
  color: var(--color-text);
}
.field--float .input:focus,
.field--float select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px var(--color-accent);
}

.field--float > label {
  position: absolute;
  left: 0.9rem;
  top: 1.62rem;
  transform: translateY(-50%);
  max-width: calc(100% - 1.8rem);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 0.9375rem;
  color: var(--color-muted);
  pointer-events: none;
  transition: top 0.14s ease, font-size 0.14s ease;
}
.field--float:focus-within > label,
.field--float:has(.input:not(:placeholder-shown)) > label,
.field--select > label {
  top: 0.95rem;
  font-size: 0.6875rem;
}

/* A select always holds a value, so its label is permanently lifted. */
.field--select select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7488' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 15px;
}

.co-form-inner .field { margin-bottom: 0.75rem; }
.co-form-inner .co-row .field { margin-bottom: 0; }
.co-form-inner .co-row { margin-bottom: 0.75rem; }
.co-form-inner .field__error:empty { display: none; }
.co-form-inner .field--error .input,
.co-form-inner .field--error select { border-color: var(--color-warn); }

.co-check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.85rem;
  font-size: var(--fs-sm);
  color: var(--color-text);
  cursor: pointer;
}
.co-check input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--color-accent);
  cursor: pointer;
}

/* --- radio rows: shipping methods and payment methods -------------------- */

.co-choices {
  border: 1px solid var(--color-border-strong);
  border-radius: 8px;
  overflow: hidden;
}
.co-choice + .co-choice { border-top: 1px solid var(--color-border-strong); }
.co-choice.is-selected { background: var(--color-accent-tint); }

.co-choice__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.7rem;
  padding: 0.95rem 1rem;
  font-size: var(--fs-sm);
  cursor: pointer;
}
.co-choice__head input[type="radio"] {
  order: 1;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  accent-color: var(--color-accent);
  cursor: pointer;
}
.co-choice__label { order: 2; flex: 1; font-weight: 500; color: var(--color-heading); }
.co-choice__price { order: 3; font-weight: 600; color: var(--color-heading); white-space: nowrap; }
.card-brands { order: 3; }
/* A full-basis item wraps onto its own line, aligned under the label. */
.co-choice__note {
  order: 4;
  flex-basis: 100%;
  padding-left: 1.95rem;
  font-size: var(--fs-xs);
  color: var(--color-muted);
}

.co-choice__panel { display: none; }
.co-choice.is-selected .co-choice__panel {
  display: block;
  padding: 1.1rem 1rem 1.25rem;
  border-top: 1px solid var(--color-border);
  background: var(--color-soft);
}
.co-choice__redirect {
  margin: 0;
  padding: 0.5rem 0;
  font-size: var(--fs-sm);
  color: var(--color-muted);
  text-align: center;
}
.co-billing { margin-top: 0.85rem; }

.co-pay { margin-top: 1.75rem; }
.co-lock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 1rem 0 0;
  font-size: var(--fs-xs);
  color: var(--color-muted);
}
.co-lock svg { width: 13px; height: 13px; flex-shrink: 0; }

/* --- order summary ------------------------------------------------------- */

/* The mini line items in the checkout summary. */
.summary-lines { list-style: none; padding: 0; margin: 0 0 1.25rem; display: grid; gap: 1rem; }
.summary-line { display: flex; align-items: center; gap: 0.85rem; margin: 0; }
.summary-line__media {
  position: relative;
  width: 64px; height: 64px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: visible;
  border: 1px solid var(--color-border);
  background: var(--tint, var(--color-bg));
}
.summary-line__media img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.summary-line__qty {
  position: absolute;
  top: -8px; right: -8px;
  min-width: 21px; height: 21px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--color-muted);
  color: var(--color-bg);
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 21px;
  text-align: center;
}
.summary-line__body { min-width: 0; flex: 1; }
.summary-line__name {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-heading);
}
.summary-line__opt { font-size: var(--fs-xs); color: var(--color-muted); }
.summary-line__price { font-size: var(--fs-sm); font-weight: 600; white-space: nowrap; }

.co-discount {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
  align-items: start;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
}
.co-discount .field { margin: 0; }
.co-discount .btn {
  height: 3.25rem;
  padding-inline: 1.35rem;
  border: 1px solid var(--color-border-strong);
  border-radius: 6px;
  background: var(--color-soft);
  color: var(--color-heading);
}
.co-discount .btn:hover { background: var(--color-border); text-decoration: none; }
.co-discount__msg {
  margin: 0.6rem 0 0;
  font-size: var(--fs-xs);
  color: var(--color-ok);
}
.co-discount__msg.is-bad { color: var(--color-warn); }

.co-totals {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--color-border);
}
.co-totals__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  font-size: var(--fs-sm);
}
.co-totals__tag {
  display: inline-block;
  margin-left: 0.3rem;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: var(--color-accent-tint);
  color: var(--color-accent);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.co-totals__row--total {
  margin-top: 0.35rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-heading);
}
.co-totals__grand { display: inline-flex; align-items: baseline; gap: 0.4rem; }
.co-totals__cur { font-size: var(--fs-xs); font-weight: 400; color: var(--color-muted); }
.co-totals__row--total strong { font-size: 1.375rem; }

/* --- the reassurance rail ------------------------------------------------ */

.co-trust {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 1.25rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 0.75rem;
  text-align: center;
}
.co-trust li {
  display: grid;
  justify-items: center;
  gap: 0.4rem;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-muted);
}
.co-trust svg { width: 19px; height: 19px; color: var(--color-accent); }

.co-featured { margin-top: 1.5rem; text-align: center; }
.co-featured__label {
  margin: 0 0 0.75rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.co-featured__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.35rem;
}
.co-featured__list li {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  opacity: 0.65;
}

.co-guarantees { display: grid; gap: 0.7rem; margin-top: 1.5rem; }
.co-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-bg);
}
.co-guarantee__icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--color-accent); margin-top: 1px; }
.co-guarantee strong {
  display: block;
  font-size: var(--fs-sm);
  color: var(--color-heading);
  margin-bottom: 0.15rem;
}
.co-guarantee span { font-size: var(--fs-xs); color: var(--color-muted); line-height: 1.5; }

.co-summary__edit { margin: 1.5rem 0 0; font-size: var(--fs-sm); text-align: center; }

@media (prefers-reduced-motion: reduce) {
  .co-summary__chev,
  .field--float > label,
  .co-wallet { transition: none; }
}

/* --------------------------------------------------------------------------
   41. Card entry
   The fields are real and validated, but the form deliberately goes nowhere —
   there is no server behind it. See checkout.js -> submit.
   -------------------------------------------------------------------------- */

.card-brands {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}
.card-brands__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  min-width: 36px;
  padding: 0 6px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: var(--color-bg);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--color-muted);
  opacity: 0.55;
  transition: opacity 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.card-brands__mark.is-active {
  opacity: 1;
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.card-grid { display: grid; gap: 1.25rem; }
@media (min-width: 560px) { .card-grid--split { grid-template-columns: 1fr 1fr; } }

/* The input that carries a detected brand badge on its right. */
.card-input { position: relative; display: block; }
.card-input .input { padding-right: 4.25rem; font-variant-numeric: tabular-nums; letter-spacing: 0.06em; }
.card-input__brand {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  height: 22px;
  min-width: 34px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: var(--color-soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--color-muted);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.card-input__brand.is-shown { opacity: 1; background: var(--color-accent-tint); color: var(--color-accent); }

/* The notice the form shows instead of placing an order. */
.form-stop {
  display: flex;
  gap: 0.9rem;
  margin-top: 1.5rem;
  padding: 1.25rem 1.4rem;
  border: 1px solid var(--color-warn-border);
  border-left: 4px solid var(--color-warn);
  border-radius: 18px;
  background: var(--color-warn-bg);
  font-size: var(--fs-sm);
  line-height: 1.6;
}
.form-stop svg { width: 21px; height: 21px; color: var(--color-warn); flex-shrink: 0; margin-top: 2px; }
.form-stop strong { display: block; margin-bottom: 0.25rem; }
.form-stop code {
  padding: 0.1em 0.35em;
  border-radius: 5px;
  background: rgb(17 26 46 / 0.06);
  font-size: 0.9em;
}

/* --------------------------------------------------------------------------
   42. Collections
   A collection is a hand-picked set of products that may cut across
   categories. Made in admin.html, served by collection.html?c=<slug>.
   -------------------------------------------------------------------------- */

/* --- in the mega menu --- */

.nav-mega__collections {
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  padding-right: 1.4rem;
  border-top: 1px solid var(--color-border);
}
.nav-mega__label {
  margin: 0 0 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.nav-menu__links { display: flex; flex-direction: column; gap: 1px; }
.nav-menu__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.4rem 0.55rem;
  border-radius: 7px;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-text);
}
.nav-menu__links a:hover { background: var(--color-soft); color: var(--color-accent); }

/* --- the home-page row --- */

.collection-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.collection-tile {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: var(--color-bg);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.collection-tile:hover {
  border-color: var(--color-border-strong);
  transform: translateY(-2px);
  text-decoration: none;
}
.collection-tile__media {
  width: 76px; height: 76px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--tint, var(--color-soft));
}
.collection-tile__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.collection-tile__body { min-width: 0; display: grid; gap: 0.15rem; }
.collection-tile__name {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-heading);
  line-height: 1.25;
}
.collection-tile__blurb {
  font-size: var(--fs-xs);
  color: var(--color-muted);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.collection-tile__count { font-size: var(--fs-xs); font-weight: 600; color: var(--color-accent); }

/* --- the index of collections, at collection.html with no ?c= --- */

.collection-index {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}
.collection-card {
  display: grid;
  gap: 0.6rem;
  padding: 1.1rem;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: var(--color-bg);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.collection-card:hover {
  border-color: var(--color-border-strong);
  transform: translateY(-3px);
  text-decoration: none;
}
/* Three shots fanned out, so a collection reads as a group at a glance. */
.collection-card__shots { display: flex; gap: 0.4rem; }
.collection-card__shot {
  flex: 1;
  aspect-ratio: 1;
  min-width: 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--tint, var(--color-soft));
}
.collection-card__shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.collection-card__name {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-heading);
}
.collection-card__count { font-size: var(--fs-xs); color: var(--color-muted); }

@media (prefers-reduced-motion: reduce) {
  .collection-tile,
  .collection-card { transition: none; }
  .collection-tile:hover,
  .collection-card:hover { transform: none; }
}


/* --------------------------------------------------------------------------
   38. Product card, second pass
   A framed photo on a quiet white card. Every card has the same rows in the
   same order (label + rating, title, price, button), so a grid lines up
   whether or not a product is on sale. The second photo fades in on hover.
   -------------------------------------------------------------------------- */

.product-card {
  position: relative;
  padding: 10px;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  background: var(--color-bg);
  box-shadow: none;
  transition: border-color 0.25s ease, box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-border-strong);
  box-shadow: 0 18px 40px -22px rgb(17 26 46 / 0.35);
}

.product-card__media {
  border-radius: 15px;
  aspect-ratio: 1 / 1;
  isolation: isolate;
}
.product-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.45s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card__img--alt { opacity: 0; }
.product-card:hover .product-card__media img { transform: scale(1.04); }
.product-card.has-alt:hover .product-card__img--alt { opacity: 1; }
.product-card.has-alt:hover .product-card__img:not(.product-card__img--alt) { opacity: 0; }

.product-card__badge,
.product-card__save {
  top: 10px;
  z-index: 1;
  padding: 0.32rem 0.62rem;
  font-size: 0.625rem;
  letter-spacing: 0.06em;
}
.product-card__badge {
  left: 10px;
  background: rgb(255 255 255 / 0.92);
  color: var(--color-heading);
  backdrop-filter: blur(6px);
}
.product-card__save { right: 10px; }

.product-card__body {
  padding: 0.95rem 0.45rem 0.35rem;
  gap: 0.45rem;
}
@media (min-width: 700px) { .product-card__body { padding: 1rem 0.55rem 0.4rem; } }

.product-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-height: 1.1rem;
}
.product-card__colour,
.product-card__cat { font-size: 0.65rem; letter-spacing: 0.1em; color: var(--color-muted); }
.product-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--color-muted);
  white-space: nowrap;
}
.product-card__rating svg { width: 13px; height: 13px; color: var(--color-star); }
.product-card__rating b { font-weight: 600; color: var(--color-heading); }

.product-card__title {
  font-size: 1.0625rem;
  line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-card__title a { color: inherit; text-decoration: none; }
.product-card__title a:hover { text-decoration: underline; text-underline-offset: 3px; }

.product-card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.2rem 0.5rem;
  margin-top: auto;
  padding-top: 0.35rem;
}
.product-card__price .price__now { font-size: 1.125rem; }
.product-card__saving {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-accent-alt);
}

.product-card__add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 44px;
  margin-top: 0.7rem;
  border: 1.5px solid var(--color-accent);
  border-radius: 999px;
  background: transparent;
  color: var(--color-accent);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.product-card__add svg { width: 17px; height: 17px; }
.product-card:hover .product-card__add,
.product-card__add:focus-visible { background: var(--color-accent); color: var(--color-on-accent, #fff); }
.product-card__add:active { transform: scale(0.98); }

/* Two columns on a phone: less frame, smaller type, a shorter button. */
@media (max-width: 699px) {
  .product-card { padding: 6px; border-radius: 16px; }
  .product-card__media { border-radius: 11px; }
  .product-card__body { padding: 0.7rem 0.3rem 0.2rem; gap: 0.35rem; }
  .product-card__top { flex-direction: column; align-items: flex-start; gap: 0.3rem; }
  .product-card__title { font-size: 0.95rem; }
  .product-card__price .price__now { font-size: 1rem; }
  .product-card__saving { display: none; }
  .product-card__add { height: 38px; font-size: 0.8rem; }
  .product-card__add svg { display: none; }
  .product-card__badge, .product-card__save { top: 8px; font-size: 0.58rem; padding: 0.26rem 0.48rem; }
  .product-card__badge { left: 8px; }
  .product-card__save { right: 8px; }
}

@media (hover: none) {
  .product-card.has-alt:hover .product-card__img--alt { opacity: 0; }
  .product-card.has-alt:hover .product-card__img:not(.product-card__img--alt) { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .product-card, .product-card__img { transition: none; }
  .product-card:hover { transform: none; }
}
