/* ─────────────────────────────────────────────────────────────
   Storefront V3 kit (ThemeV3.md A1).

   The primitives every V3 section is built from, so that a page
   of sections placed next to each other shares one page width,
   one gutter, one rhythm, one type scale and one set of image
   ratios - the thing that makes a Dawn or Horizon page read as
   designed rather than assembled.

   Colours, fonts, radii and sizes all come from the theme's own
   --st-* tokens (shared/_theme_style.html.erb), so the same
   markup is right on every theme and every colour scheme band.
   Nothing here names a literal colour.

   Every class is st-*, which only storefront pages use.
   ───────────────────────────────────────────────────────────── */

:root {
  /* Page width and gutter. Wide enough for a 4-5 column product
     row, with a gutter that grows from phone to desktop. */
  --st-page-width: 82rem;
  --st-gutter: clamp(1rem, 4vw, 3rem);
  /* Gap between cards in a grid or rail. */
  --st-grid-gap: clamp(0.75rem, 1.6vw, 1.5rem);
  /* The space between a section's heading row and its content. */
  --st-head-gap: clamp(1.25rem, 2.4vw, 2rem);
}

/* ── Page container ──────────────────────────────────────── */
.st-page {
  width: 100%;
  max-width: calc(var(--st-page-width) + 2 * var(--st-gutter));
  margin-inline: auto;
  padding-inline: var(--st-gutter);
}
.st-page--narrow { max-width: calc(48rem + 2 * var(--st-gutter)); }
.st-page--full { max-width: none; padding-inline: 0; }

/* ── Section rhythm ──────────────────────────────────────────
   One vertical rhythm for every V3 section. A section that sits
   on the page ground uses margin; one on its own colour band
   (data-scheme) uses padding so the band has room inside it. */
.st-v3 { margin-block: var(--st-section-y); }
[data-scheme] > .st-v3,
.st-v3[data-band] { margin-block: 0; padding-block: var(--st-section-y); }
.st-v3--flush { margin-block: 0; }

/* ── Type ────────────────────────────────────────────────── */
.st-h1, .st-h2, .st-h3, .st-h4 {
  font-family: var(--st-heading-font, inherit);
  font-weight: var(--st-heading-weight, 600);
  color: var(--st-ink);
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-wrap: balance;
  margin: 0;
}
.st-h1 { font-size: var(--st-h1); line-height: 1.02; letter-spacing: -0.025em; }
.st-h2 { font-size: var(--st-h2); }
.st-h3 { font-size: var(--st-h3); line-height: 1.15; }
.st-h4 { font-size: var(--st-h4); line-height: 1.25; letter-spacing: 0; }
.st-display { font-size: clamp(2.75rem, 7.5vw, 6rem); line-height: 0.98; letter-spacing: -0.03em; }
.st-body-lg { font-size: var(--st-body-lg); line-height: 1.6; color: var(--st-ink); }
.st-body    { font-size: var(--st-body); line-height: 1.65; color: var(--st-ink); }
.st-body-sm { font-size: var(--st-body-sm); line-height: 1.55; }
.st-lede { font-size: var(--st-body-lg); line-height: 1.6; color: var(--st-muted); max-width: 42rem; text-wrap: pretty; }

/* ── Section heading row: title left, "View all" right ─────── */
.st-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 2rem;
  flex-wrap: wrap;
  margin-bottom: var(--st-head-gap);
}
.st-section-head--center { flex-direction: column; align-items: center; text-align: center; }
.st-section-head--center .st-lede { margin-inline: auto; }
.st-section-head__text { display: grid; gap: 0.6rem; max-width: 44rem; }

/* A text link with an arrow that slides on hover. */
.st-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--st-ink);
  font-size: var(--st-body-sm);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, currentColor 35%, transparent);
  text-underline-offset: 0.3em;
  white-space: nowrap;
}
.st-link-arrow::after { content: "→"; transition: transform 0.25s var(--st-ease); }
.st-link-arrow:hover { text-decoration-color: currentColor; }
.st-link-arrow:hover::after { transform: translateX(3px); }

/* ── Image ratios ────────────────────────────────────────────
   A box of a fixed shape with the image covering it. "natural"
   lets the image keep its own shape. */
.st-ratio { display: block; position: relative; overflow: hidden; width: 100%; background: var(--st-media-bg, color-mix(in srgb, var(--st-ink) 5%, var(--st-bg))); }
.st-ratio > img, .st-ratio > video, .st-ratio > picture > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.st-ratio--portrait  { aspect-ratio: 3 / 4; }
.st-ratio--tall      { aspect-ratio: 2 / 3; }
.st-ratio--square    { aspect-ratio: 1 / 1; }
.st-ratio--landscape { aspect-ratio: 4 / 3; }
.st-ratio--wide      { aspect-ratio: 16 / 9; }
.st-ratio--banner    { aspect-ratio: 21 / 9; }
.st-ratio--natural   { aspect-ratio: auto; }
.st-ratio--natural > img { position: static; height: auto; }
.st-ratio--contain > img { object-fit: contain; padding: 8%; }

/* ── Grid and rail ───────────────────────────────────────────
   .st-grid lays cards out in --cols columns (2 on phones).
   .st-rail is the same row as a swipe carousel on phones and a
   grid from tablet up - what every reference store does with a
   featured collection. */
.st-grid {
  display: grid;
  gap: var(--st-grid-gap);
  grid-template-columns: repeat(var(--cols-mobile, 2), minmax(0, 1fr));
}
@media (min-width: 750px) {
  .st-grid { grid-template-columns: repeat(min(var(--cols, 4), 3), minmax(0, 1fr)); }
}
@media (min-width: 990px) {
  .st-grid { grid-template-columns: repeat(var(--cols, 4), minmax(0, 1fr)); }
}

.st-rail {
  display: grid;
  gap: var(--st-grid-gap);
  grid-auto-flow: column;
  grid-auto-columns: var(--rail-item, 72%);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--st-gutter);
  padding-inline: var(--st-gutter);
  margin-inline: calc(-1 * var(--st-gutter));
  padding-bottom: 0.5rem;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}
.st-rail::-webkit-scrollbar { display: none; }
.st-rail > * { scroll-snap-align: start; min-width: 0; }
@media (min-width: 750px) {
  .st-rail { --rail-item: 40%; }
}
@media (min-width: 990px) {
  .st-rail:not(.st-rail--always) {
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: repeat(var(--cols, 4), minmax(0, 1fr));
    overflow: visible;
    padding-inline: 0;
    margin-inline: 0;
    scroll-snap-type: none;
  }
  .st-rail--always { --rail-item: calc((100% - (var(--cols, 4) - 1) * var(--st-grid-gap)) / var(--cols, 4)); padding-inline: 0; margin-inline: 0; }
}

/* ── Image tile with a label over it (collections, promos) ─── */
.st-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--st-card-radius);
  color: var(--st-tile-ink, #fff);
  text-decoration: none;
  isolation: isolate;
}
.st-tile .st-ratio { border-radius: inherit; }
.st-tile__shade {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, transparent 40%, rgb(0 0 0 / var(--st-tile-shade, 0.55)) 100%);
}
.st-tile__body {
  position: absolute; z-index: 2; inset: auto 0 0 0;
  padding: clamp(1rem, 2.4vw, 1.75rem);
  display: grid; gap: 0.35rem;
}
.st-tile__title {
  font-family: var(--st-heading-font, inherit);
  font-weight: var(--st-heading-weight, 600);
  font-size: var(--st-h4);
  line-height: 1.15;
  color: inherit;
  text-wrap: balance;
}
.st-tile--center .st-tile__body { inset: 0; align-content: center; justify-items: center; text-align: center; }
.st-tile--center .st-tile__shade { background: rgb(0 0 0 / calc(var(--st-tile-shade, 0.55) * 0.6)); }

/* ── Motion: image zoom on hover (A5 builds on this) ────────── */
.st-zoom img { transition: transform 0.9s var(--st-ease), opacity 0.5s var(--st-ease); }
.st-zoom:hover img, .st-zoom:focus-visible img { transform: scale(1.05); }

/* ── Buttons on a photo ───────────────────────────────────── */
.st-btn-on-media {
  background: #fff;
  color: #111;
  border: 1px solid #fff;
}
.st-btn-on-media-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgb(255 255 255 / 0.85);
}

/* ── Product card V3 (themes/shared/_product_card_minimal) ─── */
.st-card-v3__media { border-radius: var(--st-card-radius); }
.st-card-v3__alt { opacity: 0; transition: opacity 0.5s var(--st-ease); }
@media (hover: hover) {
  .st-card-v3.has-alt:hover .st-card-v3__alt { opacity: 1; }
  .st-card-v3:hover .product-card-img { transform: scale(1.03); }
}
.st-card-v3 .product-card-img { transition: transform 0.9s var(--st-ease); }
/* Panel mode (G1): a section that gives its cards a shadow or border
   sets --st-card-panel-bg/-pad (SectionStyle). The photo then runs to
   the panel's edges and the text is inset to match; without it the
   name sat flush on the panel edge while the photo was inset. */
.st-card-v3 {
  display: flex; flex-direction: column;
  /* Fill the grid or rail cell, so every panel in a row is the same
     height whatever its name length or rating row. */
  height: 100%;
  background: var(--st-card-panel-bg, transparent);
  overflow: hidden;
}
.st-card-v3 .st-card-v3__media { border-radius: var(--st-card-panel-media-radius, var(--st-card-radius)); }
.st-card-v3__body {
  display: flex; flex-direction: column; flex: 1;
  padding: var(--st-card-panel-pad, 0);
  padding-top: max(0.8rem, var(--st-card-panel-pad, 0px));
}
.st-card-v3__name {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.005em;
  color: var(--st-ink);
  text-wrap: pretty;
}
.st-card-v3__price { margin-top: 0.35rem; }
.st-card-v3__body > a { display: flex; flex-direction: column; flex: 1; }
.st-card-v3__price .font-semibold { font-weight: 600; letter-spacing: 0.01em; }

/* Card looks (the shop's card style). */
.st-card-v3--bold .st-card-v3__name { text-transform: uppercase; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; line-height: 1.45; }
.st-card-v3--editorial { --st-card-panel-media-radius: 0; background: var(--st-card-panel-bg, var(--st-bg)); }
.st-card-v3--editorial .st-card-v3__body { padding: var(--st-card-panel-pad, 0.9rem); border-top: 1px solid var(--st-border); }
.st-card-v3--editorial .st-card-badge--tag {
  background: var(--st-bg); border-radius: 0;
  border-block: 1px solid var(--st-ink); padding: 0.25rem 0.35rem;
}

/* One small square badge, top left. */
.st-card-badge {
  position: absolute; top: 0.65rem; left: 0.65rem; z-index: 20;
  max-width: calc(100% - 4rem);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  pointer-events: none;
  padding: 0.28rem 0.5rem;
  border-radius: 3px;
  font-size: 0.6875rem; font-weight: 600; line-height: 1;
  letter-spacing: 0.04em;
  background: var(--st-surface, #fff); color: var(--st-ink);
}
.st-card-badge--sale { background: var(--st-sale, #c8102e); color: #fff; }
/* Nearly gone (J6.5): the page's ink, not the sale red. */
.st-card-badge--low { background: var(--st-ink); color: var(--st-bg); }
.st-card-badge--muted { background: var(--st-ink); color: var(--st-bg); }
.st-card-badge--tag { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.625rem; }

/* The heart: smaller, no shadow, and on a mouse only while hovering
   (a touchscreen can't hover, so there it stays). */
.st-card-v3 .tile-wishlist-btn {
  top: 0.5rem !important; right: 0.5rem !important;
  width: 2.1rem !important; height: 2.1rem !important;
  box-shadow: none !important;
  background: color-mix(in srgb, var(--st-surface, #fff) 92%, transparent) !important;
}
.st-card-v3 .tile-wishlist-btn svg { width: 16px; height: 16px; }
@media (hover: hover) and (pointer: fine) {
  .st-card-v3 .tile-wishlist-btn:not(.is-liked) { opacity: 0; transition: opacity 0.2s var(--st-ease); }
  .st-card-v3:hover .tile-wishlist-btn, .st-card-v3:focus-within .tile-wishlist-btn { opacity: 1; }
}

/* Quick add: a quiet bar that slides up over the photo on hover; a
   small round "+" in the corner on touch. */
.st-quick-add { position: absolute; z-index: 20; right: 0.5rem; bottom: 0.5rem; }
.st-quick-add form { margin: 0; }
.st-quick-add__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  width: 2.25rem; height: 2.25rem; border-radius: 999px; border: 0; cursor: pointer;
  background: color-mix(in srgb, var(--st-surface, #fff) 94%, transparent); color: var(--st-ink);
  font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.01em;
  box-shadow: 0 1px 2px color-mix(in srgb, var(--st-ink) 14%, transparent);
  transition: background-color 0.2s var(--st-ease), color 0.2s var(--st-ease);
}
.st-quick-add__label { display: none; }
@media (hover: hover) and (pointer: fine) {
  .st-quick-add {
    left: 0.6rem; right: 0.6rem; bottom: 0.6rem;
    opacity: 0; transform: translateY(0.5rem); pointer-events: none;
    transition: opacity 0.25s var(--st-ease), transform 0.35s var(--st-ease);
  }
  .st-card-v3:hover .st-quick-add, .st-card-v3:focus-within .st-quick-add { opacity: 1; transform: none; pointer-events: auto; }
  .st-quick-add__btn { width: 100%; height: 2.6rem; border-radius: var(--st-btn-radius, 4px); }
  .st-quick-add__btn:hover { background: var(--st-ink); color: var(--st-bg); }
  .st-quick-add__label { display: inline; }
}
.st-swatches { display: flex; align-items: center; gap: 0.35rem; margin: 0.55rem 0 0; padding: 0; list-style: none; }
.st-swatch {
  width: 0.95rem; height: 0.95rem; border-radius: 999px;
  background: var(--swatch);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--st-ink) 18%, transparent);
}
.st-swatch-more { font-size: var(--st-caption); color: var(--st-muted); }

/* ── Header V3 (themes/shared/_storefront_slim_header) ─────── */
.st-header-v3 {
  transition: transform 0.35s var(--st-ease), box-shadow 0.25s var(--st-ease), background-color 0.25s var(--st-ease);
}
.st-header-v3.is-scrolled { box-shadow: 0 1px 0 var(--st-border), 0 8px 24px -18px color-mix(in srgb, var(--st-ink) 40%, transparent); }
.st-header-v3.is-tucked { transform: translateY(-100%); }

/* Header height (G2): the seller's compact / regular / tall. The row,
   the logo and the wordmark all scale from these, so a tall header is
   a bigger brand moment and a compact one gets out of the way. */
.st-header-v3,
.st-header-v3[data-height="regular"] { --st-header-row: 4.25rem; --st-logo-h: 2.5rem; --st-brand-size: 1.5rem; }
.st-header-v3[data-height="compact"] { --st-header-row: 3.5rem;  --st-logo-h: 2rem;   --st-brand-size: 1.25rem; }
.st-header-v3[data-height="tall"]    { --st-header-row: 5.25rem; --st-logo-h: 3.25rem; --st-brand-size: 1.875rem; }
.st-hdesk--row { min-height: var(--st-header-row); padding-block: 0.5rem; }
.st-header-v3 .st-brand-logo { height: var(--st-logo-h); }
@media (min-width: 640px) {
  .st-header-v3 .st-brand-name { font-size: var(--st-brand-size); }
}
/* Nav: small and even, like the references (13px, a touch of tracking). */
.st-header-v3 .st-nav { font-size: 0.8125rem; letter-spacing: 0.02em; gap: 1.75rem; }
.st-header-v3 .st-nav a { color: var(--st-ink); opacity: 0.82; transition: opacity 0.2s var(--st-ease); }
.st-header-v3 .st-nav a:hover { opacity: 1; }
/* The announcement bar: thin, centred when it has no icons beside it. */
.storefront-topbar { font-size: 0.75rem; letter-spacing: 0.02em; }
.storefront-topbar .st-topbar--center { justify-content: center; text-align: center; }

/* Phone bar: menu + search | shop name | wishlist + bag. */
.st-hmob { display: none; }
@media (max-width: 767px) {
  .st-hdesk { display: none !important; }
  .st-hmob {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.5rem;
  }
  .st-hmob__side { display: flex; align-items: center; gap: 0; }
  .st-hmob__side--end { justify-content: flex-end; }
  .st-hmob__brand { min-width: 0; max-width: 58vw; display: flex; justify-content: center; text-align: center; }
  .st-hmob__brand img { height: 2.25rem; max-width: 46vw; }
}

/* Mega menu under "All" - photo tiles for the categories. */
.st-mega { position: static; }
.st-mega__panel {
  position: absolute; inset-inline: 0; top: 100%;
  background: var(--st-bg);
  border-block: 1px solid var(--st-border);
  box-shadow: 0 24px 40px -28px color-mix(in srgb, var(--st-ink) 45%, transparent);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.2s var(--st-ease), transform 0.25s var(--st-ease), visibility 0s linear 0.2s;
  pointer-events: none;
}
.st-mega:hover .st-mega__panel,
.st-mega:focus-within .st-mega__panel {
  opacity: 1; visibility: visible; transform: none; pointer-events: auto;
  transition-delay: 0.08s, 0.08s, 0s;
}
.st-mega__inner {
  display: grid; grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--st-grid-gap); padding-block: 1.75rem 1.5rem; align-items: start;
}
.st-mega__tile { display: grid; gap: 0.6rem; color: var(--st-ink); text-decoration: none; }
.st-mega__tile .st-ratio { border-radius: var(--st-card-radius); }
.st-mega__name { font-size: var(--st-body-sm); font-weight: 600; }
.st-mega__all { justify-self: start; }

/* Announcement bar: the whole line on wide screens, one message at a
   time below that. */
.st-ann { display: none; position: relative; height: 1.4em; overflow: hidden; }
.st-ann__item {
  position: absolute; inset: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  opacity: 0; transform: translateY(40%);
  transition: opacity 0.45s var(--st-ease), transform 0.45s var(--st-ease);
}
.st-ann__item.is-active { opacity: 1; transform: none; }
/* Phones: one centred line. The contact icons move out (WhatsApp
   and social already float on the page) instead of wrapping the
   bar onto a second row. */
@media (max-width: 767px) {
  .storefront-topbar .justify-between { justify-content: center; }
  .storefront-topbar .shrink-0 { display: none; }
  .storefront-topbar .truncate, .storefront-topbar .st-ann { text-align: center; }
}
@media (max-width: 1023px) {
  .st-ann-full { display: none; }
  .st-ann { display: block; flex: 1 1 auto; min-width: 0; }
}

/* ── Cart drawer (themes/shared/_cart_drawer) ────────────── */
.st-drawer-backdrop {
  position: fixed; inset: 0; z-index: 70;
  background: color-mix(in srgb, var(--st-ink) 45%, transparent);
  opacity: 0; pointer-events: none; transition: opacity 0.3s var(--st-ease);
}
.st-drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }
.st-drawer {
  position: fixed; top: 0; bottom: 0; inset-inline-end: 0; z-index: 71;
  width: min(26rem, 100vw);
  background: var(--st-bg); color: var(--st-ink);
  box-shadow: -24px 0 48px -24px color-mix(in srgb, var(--st-ink) 50%, transparent);
  transform: translateX(100%); visibility: hidden;
  transition: transform 0.4s var(--st-ease), visibility 0s linear 0.4s;
  display: flex; flex-direction: column; outline: none;
}
[dir="rtl"] .st-drawer { transform: translateX(-100%); }
.st-drawer.is-open { transform: none; visibility: visible; transition: transform 0.4s var(--st-ease); }
.st-drawer[aria-busy] .st-drawer__body { opacity: 0.55; pointer-events: none; }
.st-drawer__body { display: flex; flex-direction: column; min-height: 100%; overflow-y: auto; transition: opacity 0.2s; }
.st-drawer__head {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--st-border);
  position: sticky; top: 0; background: var(--st-bg); z-index: 1;
}
.st-drawer__count {
  display: inline-flex; align-items: center; justify-content: center; min-width: 1.5rem; height: 1.5rem; margin-inline-start: 0.4rem;
  border-radius: 999px; font-size: var(--st-meta); font-family: var(--st-body-font, inherit); font-weight: 600; background: color-mix(in srgb, var(--st-ink) 8%, transparent); vertical-align: middle;
}
.st-drawer__close { width: 2.5rem; height: 2.5rem; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; }
.st-drawer__close:hover { background: color-mix(in srgb, var(--st-ink) 6%, transparent); }
.st-drawer__note { margin: 1rem 1.5rem 0; padding: 0.65rem 0.9rem; border-radius: var(--st-radius-md); font-size: var(--st-body-sm);
  background: color-mix(in srgb, var(--st-success, var(--st-accent)) 12%, transparent); }
.st-drawer__note--alert { background: color-mix(in srgb, var(--st-danger, #dc2626) 12%, transparent); }
.st-drawer__free { padding: 1rem 1.5rem 0; display: grid; gap: 0.5rem; font-size: var(--st-body-sm); }
.st-drawer__bar { height: 0.35rem; border-radius: 999px; background: color-mix(in srgb, var(--st-ink) 10%, transparent); overflow: hidden; }
.st-drawer__bar span { display: block; height: 100%; border-radius: inherit; background: var(--st-accent); transition: width 0.6s var(--st-ease); }
.st-drawer__lines { list-style: none; margin: 0; padding: 0.5rem 1.5rem; display: grid; flex: 1 0 auto; align-content: start; }
.st-drawer__line { display: grid; grid-template-columns: 5rem 1fr auto; gap: 1rem; padding-block: 1rem; border-bottom: 1px solid var(--st-border); align-items: start; }
.st-drawer__thumb { display: block; aspect-ratio: 3 / 4; border-radius: var(--st-radius-md); overflow: hidden; background: var(--st-surface); }
.st-drawer__thumb img { width: 100%; height: 100%; object-fit: cover; }
.st-drawer__info { display: grid; gap: 0.3rem; min-width: 0; }
.st-drawer__name { font-weight: 600; font-size: var(--st-body-sm); color: var(--st-ink); text-decoration: none; }
.st-drawer__meta { font-size: var(--st-meta); color: var(--st-muted); }
.st-drawer__row { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.35rem; flex-wrap: wrap; }
.st-drawer__remove { font-size: var(--st-meta); color: var(--st-muted); text-decoration: underline; text-underline-offset: 3px; background: none; border: 0; cursor: pointer; padding: 0; }
.st-drawer__total { font-weight: 600; font-size: var(--st-body-sm); }
.st-drawer__foot { position: sticky; bottom: 0; background: var(--st-bg); border-top: 1px solid var(--st-border); padding: 1.25rem 1.5rem calc(1.25rem + env(safe-area-inset-bottom, 0px)); display: grid; gap: 0.75rem; }
.st-drawer__subtotal { display: flex; justify-content: space-between; font-weight: 600; font-size: var(--st-body); }
.st-drawer__small { font-size: var(--st-meta); color: var(--st-muted); margin: -0.35rem 0 0; }
.st-drawer__view { text-align: center; font-size: var(--st-body-sm); color: var(--st-ink); text-decoration: underline; text-underline-offset: 3px; }
.st-drawer__empty { padding: 3rem 1.5rem; display: grid; gap: 1.25rem; justify-items: start; }

/* ── Hero V3, immersive (sections/_hero_immersive) ────────── */
.st-hero-v3 {
  position: relative;
  min-height: var(--hero-h, 80vh);
  display: grid;
  overflow: hidden;
  isolation: isolate;
  color: var(--st-ink);
  background: var(--st-surface);
}
.st-hero-v3.has-image { color: #fff; background: #111; }
.st-hero-v3__media { position: absolute; inset: 0; z-index: -2; }
.st-hero-v3__img { width: 100%; height: 100%; object-fit: cover; object-position: var(--hero-focal, center); display: block; }
.st-hero-v3__img--mobile { display: none; }
@media (max-width: 749px) {
  .st-hero-v3__media.has-mobile .st-hero-v3__img--main { display: none; }
  .st-hero-v3__media.has-mobile .st-hero-v3__img--mobile { display: block; }
}
.st-hero-v3__shade {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgb(0 0 0 / calc(var(--hero-shade) * 0.35)) 0%, transparent 35%),
    linear-gradient(0deg, rgb(0 0 0 / calc(var(--hero-shade) * 1.1)) 0%, rgb(0 0 0 / calc(var(--hero-shade) * 0.5)) 45%, rgb(0 0 0 / calc(var(--hero-shade) * 0.25)) 100%);
}
.st-hero-v3--v-top .st-hero-v3__shade {
  background: linear-gradient(180deg, rgb(0 0 0 / calc(var(--hero-shade) * 1.1)) 0%, rgb(0 0 0 / calc(var(--hero-shade) * 0.3)) 60%, rgb(0 0 0 / calc(var(--hero-shade) * 0.2)) 100%);
}
.st-hero-v3--v-middle .st-hero-v3__shade { background: rgb(0 0 0 / calc(var(--hero-shade) * 0.8)); }
.st-hero-v3__inner {
  display: flex; flex-direction: column;
  padding-block: clamp(2.5rem, 7vw, 6rem);
}
.st-hero-v3--overlay .st-hero-v3__inner { padding-top: calc(var(--st-header-h, 4rem) + clamp(2rem, 5vw, 4rem)); }
.st-hero-v3--v-top    .st-hero-v3__inner { justify-content: flex-start; }
.st-hero-v3--v-middle .st-hero-v3__inner { justify-content: center; }
.st-hero-v3--v-bottom .st-hero-v3__inner { justify-content: flex-end; }
.st-hero-v3--h-left   .st-hero-v3__content { align-self: flex-start; text-align: start; }
.st-hero-v3--h-center .st-hero-v3__content { align-self: center; text-align: center; }
.st-hero-v3--h-right  .st-hero-v3__content { align-self: flex-end; text-align: end; }
.st-hero-v3__content { max-width: 42rem; display: grid; gap: 1rem; }
.st-hero-v3--h-center .st-hero-v3__content { justify-items: center; }
.st-hero-v3--h-right  .st-hero-v3__content { justify-items: end; }
.st-hero-v3__content--box {
  background: var(--st-bg); color: var(--st-ink);
  padding: clamp(1.5rem, 3.5vw, 2.75rem); border-radius: var(--st-card-radius);
  box-shadow: 0 24px 60px -30px rgb(0 0 0 / 0.5);
}
.st-hero-v3__eyebrow {
  margin: 0; font-size: var(--st-eyebrow); letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
  opacity: 0.9;
}
.st-hero-v3__title {
  margin: 0;
  font-family: var(--st-heading-font, inherit);
  font-weight: var(--st-heading-weight, 600);
  font-size: clamp(2.25rem, 4.8vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.022em;
  text-wrap: balance;
  color: inherit;
}
.st-hero-v3.has-image .st-hero-v3__title { text-shadow: 0 2px 30px rgb(0 0 0 / 0.18); }
.st-hero-v3__sub { margin: 0; font-size: var(--st-body-lg); line-height: 1.55; max-width: 34rem; opacity: 0.92; text-wrap: pretty; }
.st-hero-v3__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.5rem; }
.st-hero-v3--h-center .st-hero-v3__actions { justify-content: center; }
.st-hero-v3--h-right  .st-hero-v3__actions { justify-content: flex-end; }
.st-hero-v3.has-image .st-hero-v3__content:not(.st-hero-v3__content--box) .st-hero-v3__btn { background: #fff; color: #111; border-color: #fff; }
.st-hero-v3.has-image .st-hero-v3__content:not(.st-hero-v3__content--box) .st-hero-v3__btn--ghost {
  background: transparent; color: #fff; border: 1px solid rgb(255 255 255 / 0.8);
}
.st-hero-v3__btn--ghost { background: transparent; color: var(--st-ink); border: 1px solid currentColor; }
/* Slow settle of the photo on load - the Horizon opening. */
@media (prefers-reduced-motion: no-preference) {
  .st-hero-v3.has-image .st-hero-v3__img { animation: st-hero-settle 2.4s var(--st-ease) both; }
  .st-hero-v3__content { animation: st-hero-rise 1s var(--st-ease) 0.15s both; }
}
@keyframes st-hero-settle { from { transform: scale(1.08); } to { transform: none; } }
@keyframes st-hero-rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@media (max-width: 749px) {
  .st-hero-v3__title { font-size: clamp(2.1rem, 9.5vw, 2.85rem); }
  .st-hero-v3__actions .st-btn { flex: 1 1 auto; justify-content: center; }
}

/* Header over the hero: transparent with light text until the page
   scrolls, then the normal solid header. The hero is pulled up under
   it by the header's own measured height. */
.st-header-v3.is-overlay:not(.is-scrolled) {
  background: transparent !important; border-bottom-color: transparent !important;
  color: #fff !important; backdrop-filter: none !important; box-shadow: none;
}
.st-header-v3.is-overlay:not(.is-scrolled) .st-shop-name,
.st-header-v3.is-overlay:not(.is-scrolled) button,
.st-header-v3.is-overlay:not(.is-scrolled) svg,
.st-header-v3.is-overlay:not(.is-scrolled) a,
.st-header-v3.is-overlay:not(.is-scrolled) span[style*="--st-muted"] { color: #fff !important; }
.st-header-v3.is-overlay:not(.is-scrolled) a[style*="border-bottom"] { border-bottom-color: transparent !important; }
body:has(.st-header-v3.is-overlay) .st-hero-v3--overlay { margin-top: calc(-1 * var(--st-header-h, 4.5rem)); }

/* ── Slideshow V3, crossfade (sections/_hero_carousel_fade) ── */
.st-slides { position: relative; min-height: var(--slides-h, 74vh); display: grid; overflow: hidden; background: #111; color: #fff; isolation: isolate; }
.st-slide {
  grid-area: 1 / 1; position: relative; display: grid; min-height: var(--slides-h, 74vh);
  opacity: 0; visibility: hidden;
  transition: opacity 1.1s var(--st-ease), visibility 0s linear 1.1s;
}
.st-slide.is-active { opacity: 1; visibility: visible; transition: opacity 1.1s var(--st-ease); z-index: 1; }
.st-slide__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.st-slide__img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.08); transition: transform 7s linear; }
.st-slide.is-active .st-slide__img { transform: scale(1); }
.st-slide__shade {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(0deg, rgb(0 0 0 / 0.55) 0%, rgb(0 0 0 / 0.2) 50%, rgb(0 0 0 / 0.12) 100%);
}
.st-slide.st-hero-v3--v-middle .st-slide__shade { background: rgb(0 0 0 / 0.35); }
.st-slide.st-hero-v3--v-top .st-slide__shade { background: linear-gradient(180deg, rgb(0 0 0 / 0.5) 0%, rgb(0 0 0 / 0.1) 60%); }
.st-slide__inner { display: flex; flex-direction: column; padding-block: clamp(2.5rem, 7vw, 6rem) clamp(5rem, 9vw, 7rem); }
.st-slide.st-hero-v3--v-top .st-slide__inner { justify-content: flex-start; }
.st-slide.st-hero-v3--v-middle .st-slide__inner { justify-content: center; }
.st-slide.st-hero-v3--v-bottom .st-slide__inner { justify-content: flex-end; }
.st-slide .st-hero-v3__content { transform: translateY(16px); opacity: 0; transition: transform 0.9s var(--st-ease) 0.35s, opacity 0.9s var(--st-ease) 0.35s; }
.st-slide.is-active .st-hero-v3__content { transform: none; opacity: 1; }
.st-slides .st-slide__btn { background: #fff; color: #111; border-color: #fff; }
.st-slides__controls {
  position: absolute; inset-inline: 0; bottom: clamp(1.25rem, 3vw, 2rem); z-index: 2;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-inline: auto;
}
.st-slides__dots { display: flex; gap: 0.5rem; align-items: center; }
.st-slides__dot { width: 2.25rem; height: 1.75rem; display: inline-flex; align-items: center; cursor: pointer; background: none; border: 0; padding: 0; }
.st-slides__dot span { position: relative; display: block; width: 100%; height: 2px; background: rgb(255 255 255 / 0.4); border-radius: 2px; overflow: hidden; }
.st-slides__dot span::after { content: ""; position: absolute; inset: 0; background: #fff; transform: scaleX(0); transform-origin: left; }
.st-slides__dot.is-active span::after { transform: scaleX(1); }
.st-slides.is-playing .st-slides__dot.is-active span::after { animation: st-slide-progress var(--slides-interval, 6500ms) linear both; }
.st-slides.is-paused .st-slides__dot.is-active span::after { animation-play-state: paused; }
@keyframes st-slide-progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.st-slides__arrows { display: flex; gap: 0.5rem; }
.st-slides__arrow {
  width: 2.75rem; height: 2.75rem; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center;
  color: #fff; border: 1px solid rgb(255 255 255 / 0.55); background: rgb(0 0 0 / 0.12); backdrop-filter: blur(6px); cursor: pointer;
  transition: background 0.2s;
}
.st-slides__arrow:hover { background: rgb(255 255 255 / 0.2); }
.st-slides__arrow svg { width: 1.1rem; height: 1.1rem; }
.st-slides__dot:focus-visible, .st-slides__arrow:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
@media (max-width: 749px) { .st-slides__arrows { display: none; } .st-slides__controls { justify-content: center; } }
@media (prefers-reduced-motion: reduce) {
  .st-slide, .st-slide__img, .st-slide .st-hero-v3__content { transition: none; }
  .st-slide__img { transform: none; }
}

/* ── Collection tiles V3 (sections/_category_grid, tiles/cards) ── */
.st-collections__cta {
  font-size: var(--st-body-sm); font-weight: 600; opacity: 0.92;
  display: inline-flex; gap: 0.35rem; align-items: center;
}
.st-collections__cta::after { content: "→"; transition: transform 0.25s var(--st-ease); }
.st-tile:hover .st-collections__cta::after { transform: translateX(3px); }
.st-collections__card { display: grid; gap: 0.75rem; color: var(--st-ink); text-decoration: none; }
.st-collections__card .st-ratio { border-radius: var(--st-card-radius); }
.st-collections__name { font-family: var(--st-heading-font, inherit); font-weight: var(--st-heading-weight, 600); font-size: var(--st-h4); line-height: 1.2; }

/* ── Image with text V3 (sections/_editorial_split_v3) ─────── */
.st-iwt__text { display: grid; gap: 1.1rem; align-content: center; justify-items: start; }
.st-iwt__text--center { justify-items: center; text-align: center; }
.st-iwt__body { color: var(--st-muted); max-width: 36rem; }
.st-iwt__body p { margin: 0 0 0.75em; }
.st-iwt__body p:last-child { margin-bottom: 0; }
.st-iwt__photo { overflow: hidden; }
.st-iwt__photo .st-ratio { border-radius: var(--st-card-radius); }

/* overlap: a photo across 8 of 12 columns, a card over its corner. */
.st-iwt__overlap { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); align-items: center; }
.st-iwt__overlap .st-iwt__photo { grid-column: 1 / span 8; grid-row: 1; }
.st-iwt__card {
  grid-column: 7 / -1; grid-row: 1; z-index: 1;
  display: grid; gap: 1.1rem; justify-items: start;
  background: var(--st-bg); color: var(--st-ink);
  padding: clamp(1.75rem, 4vw, 3.25rem);
  border-radius: var(--st-card-radius);
  box-shadow: 0 30px 70px -40px color-mix(in srgb, var(--st-ink) 55%, transparent);
}
.st-iwt--right .st-iwt__overlap .st-iwt__photo { grid-column: 5 / -1; }
.st-iwt--right .st-iwt__card { grid-column: 1 / span 6; }

/* bleed: the photo half runs to the viewport edge. */
.st-iwt__bleed { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: min(80vh, 46rem); }
.st-iwt__bleed .st-iwt__photo, .st-iwt__bleed .st-ratio { height: 100%; }
.st-iwt__bleed .st-ratio { aspect-ratio: auto; border-radius: 0; }
.st-iwt__bleed .st-iwt__text {
  padding: clamp(2rem, 6vw, 6rem) max(var(--st-gutter), calc((100vw - var(--st-page-width)) / 2));
  padding-inline-start: clamp(2rem, 6vw, 6rem);
}
.st-iwt--right .st-iwt__bleed .st-iwt__photo { order: 2; }
.st-iwt--right .st-iwt__bleed .st-iwt__text {
  padding-inline-start: max(var(--st-gutter), calc((100vw - var(--st-page-width)) / 2));
  padding-inline-end: clamp(2rem, 6vw, 6rem);
}
.st-iwt--bleed { margin-block: var(--st-section-y); }
.st-iwt--bleed[data-band] { margin-block: 0; padding-block: 0; }

@media (max-width: 749px) {
  .st-iwt__overlap { display: block; }
  .st-iwt__card { margin: -3rem 1rem 0; position: relative; }
  .st-iwt__bleed { grid-template-columns: 1fr; min-height: 0; }
  .st-iwt__bleed .st-ratio { aspect-ratio: 4 / 5; height: auto; }
  .st-iwt--right .st-iwt__bleed .st-iwt__photo { order: 0; }
  .st-iwt__bleed .st-iwt__text, .st-iwt--right .st-iwt__bleed .st-iwt__text { padding: 2rem var(--st-gutter) 2.5rem; }
}

/* ── Benefits V3 (sections/_feature_grid_benefits) ─────────── */
.st-benefits__list {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: clamp(1.75rem, 3vw, 2.5rem) var(--st-grid-gap);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 990px) { .st-benefits__list { grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr)); } }
.st-benefits__item { display: grid; gap: 0.6rem; justify-items: center; text-align: center; align-content: start; }
.st-benefits__mark {
  width: 3.5rem; height: 3.5rem; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--st-accent) 12%, var(--st-bg)); color: var(--st-accent-text, var(--st-accent));
  margin-bottom: 0.35rem;
}
.st-benefits__title { font-size: var(--st-body-lg); }
.st-benefits__text { margin: 0; color: var(--st-muted); font-size: var(--st-body-sm); line-height: 1.55; max-width: 26ch; }
.st-benefits--cards .st-benefits__item { justify-items: start; text-align: start; }
.st-benefits--cards .st-benefits__text { max-width: none; }
.st-benefits__photo { border-radius: var(--st-card-radius); margin-bottom: 0.5rem; }
@media (max-width: 749px) { .st-benefits--cards .st-benefits__list { grid-template-columns: 1fr; } }

/* ── Collage V3 (sections/_collage) ─────────────────────────── */
.st-collage__grid { display: grid; gap: var(--st-grid-gap); grid-template-columns: 1.35fr 1fr; grid-template-rows: 1fr 1fr; }
.st-collage__tile { display: block; position: relative; min-height: 0; }
.st-collage__tile .st-ratio { height: 100%; aspect-ratio: auto; min-height: 16rem; border-radius: var(--st-card-radius); }
.st-collage__tile.is-big { grid-row: 1 / span 2; }
.st-collage__tile.is-big .st-ratio { min-height: 34rem; }
.st-collage--right .st-collage__grid { grid-template-columns: 1fr 1.35fr; }
.st-collage--right .st-collage__tile.is-big { grid-column: 2; }
.st-collage--n1 .st-collage__grid { grid-template-columns: 1fr; grid-template-rows: auto; }
.st-collage--n2 .st-collage__grid { grid-template-rows: auto; }
.st-collage--n2 .st-collage__tile.is-big { grid-row: auto; }
.st-collage__product { display: grid; grid-template-rows: 1fr auto; gap: 0.75rem; color: var(--st-ink); text-decoration: none; }
.st-collage__product .st-ratio { min-height: 12rem; }
.st-collage__meta { display: flex; justify-content: space-between; gap: 1rem; font-size: var(--st-body-sm); }
.st-collage__name { font-weight: 600; }
.st-collage__text { font-size: var(--st-body-sm); opacity: 0.9; }
@media (max-width: 749px) {
  .st-collage__grid, .st-collage--right .st-collage__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .st-collage__tile.is-big, .st-collage--right .st-collage__tile.is-big { grid-column: 1 / -1; grid-row: auto; }
  .st-collage__tile.is-big .st-ratio { min-height: 22rem; }
  .st-collage__tile .st-ratio { min-height: 12rem; }
}

/* ── Promo tiles V3 (sections/_promo_tiles) ────────────────────── */
.st-promos__grid { display: grid; gap: var(--st-grid-gap); grid-template-columns: 1fr; }
@media (min-width: 750px) {
  .st-promos__grid--n2 { grid-template-columns: 1fr 1fr; }
  .st-promos__grid--n3 { grid-template-columns: 1.4fr 1fr 1fr; }
}
.st-promo .st-ratio { height: 100%; min-height: 20rem; aspect-ratio: auto; }
.st-promo__body { gap: 0.3rem; }
.st-promo__eyebrow { font-size: var(--st-eyebrow); letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; opacity: 0.9; }
.st-promo__badge {
  font-family: var(--st-heading-font, inherit); font-weight: 700;
  font-size: clamp(2.75rem, 6vw, 4.5rem); line-height: 0.95; letter-spacing: -0.03em;
}

/* ── Shop the look V3 (sections/_lookbook_v3) ─────────────────── */
.st-look__layout { display: grid; gap: clamp(1.5rem, 3vw, 3rem); align-items: start; }
.st-look--split .st-look__layout { grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); }
.st-look__scene { position: relative; }
.st-look__photo { border-radius: var(--st-card-radius); }
.st-look__photo img { width: 100%; display: block; }
.st-look__spot { position: absolute; transform: translate(-50%, -50%); z-index: 2; }
.st-look__spot:hover, .st-look__spot:focus-within { z-index: 3; }
.st-look__dot {
  width: 2.1rem; height: 2.1rem; border-radius: 999px; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; color: #111; font-size: var(--st-meta); font-weight: 700; text-decoration: none;
  box-shadow: 0 0 0 6px rgb(255 255 255 / 0.35), 0 6px 18px rgb(0 0 0 / 0.25);
  transition: transform 0.25s var(--st-ease), box-shadow 0.25s var(--st-ease);
}
.st-look__dot:hover, .st-look__spot:focus-within .st-look__dot { transform: scale(1.1); box-shadow: 0 0 0 9px rgb(255 255 255 / 0.4), 0 8px 22px rgb(0 0 0 / 0.3); }
@media (prefers-reduced-motion: no-preference) {
  .st-look__dot { animation: st-look-pulse 2.6s ease-in-out infinite; }
  .st-look__spot:hover .st-look__dot, .st-look__spot:focus-within .st-look__dot { animation: none; }
}
@keyframes st-look-pulse { 50% { box-shadow: 0 0 0 11px rgb(255 255 255 / 0.18), 0 6px 18px rgb(0 0 0 / 0.25); } }
.st-look__pop {
  position: absolute; left: 50%; top: calc(100% + 0.75rem); width: 16rem;
  display: flex; gap: 0.75rem; align-items: center; padding: 0.75rem;
  background: var(--st-bg); color: var(--st-ink); border-radius: var(--st-radius-lg);
  box-shadow: 0 20px 50px -20px rgb(0 0 0 / 0.45);
  opacity: 0; visibility: hidden; transform: translate(-50%, 6px);
  transition: opacity 0.2s var(--st-ease), transform 0.25s var(--st-ease), visibility 0s linear 0.2s;
}
.st-look__spot.is-right .st-look__pop { left: auto; right: -0.5rem; transform: translate(0, 6px); }
.st-look__spot.is-low .st-look__pop { top: auto; bottom: calc(100% + 0.75rem); }
.st-look__spot:hover .st-look__pop, .st-look__spot:focus-within .st-look__pop {
  opacity: 1; visibility: visible; transform: translate(-50%, 0); transition-delay: 0s;
}
.st-look__spot.is-right:hover .st-look__pop, .st-look__spot.is-right:focus-within .st-look__pop { transform: none; }
.st-look__thumb { flex: 0 0 4rem; width: 4rem; aspect-ratio: 3 / 4; border-radius: var(--st-radius-md); overflow: hidden; background: var(--st-surface); }
.st-look__thumb img { width: 100%; height: 100%; object-fit: cover; }
.st-look__info { display: grid; gap: 0.2rem; min-width: 0; }
.st-look__name { font-weight: 600; font-size: var(--st-body-sm); color: var(--st-ink); text-decoration: none; }
.st-look__price { font-size: var(--st-body-sm); color: var(--st-muted); }
.st-look__add button { background: none; border: 0; padding: 0; cursor: pointer; font: inherit; }
.st-look__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.25rem; }
.st-look__row { display: flex; gap: 1rem; align-items: center; padding: 0.75rem; border-radius: var(--st-radius-lg); color: var(--st-ink); text-decoration: none; }
.st-look__row:hover { background: color-mix(in srgb, var(--st-ink) 5%, transparent); }
.st-look__num {
  flex: 0 0 1.75rem; height: 1.75rem; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--st-border); font-size: var(--st-meta); font-weight: 700;
}
@media (max-width: 749px) {
  .st-look--split .st-look__layout { grid-template-columns: 1fr; }
  .st-look__pop { width: 13.5rem; }
}

/* ── Reviews V3 (sections/_reviews, carousel) ──────────────── */
.st-reviews__layout { display: grid; gap: clamp(1.5rem, 3vw, 3rem); align-items: center; }
@media (min-width: 990px) { .st-reviews__layout { grid-template-columns: minmax(0, 1fr) minmax(0, 2.6fr); } }
.st-reviews__summary { display: grid; gap: 0.9rem; align-content: start; }
.st-reviews__score { display: flex; align-items: center; gap: 1rem; margin-top: 0.4rem; }
.st-reviews__average { font-family: var(--st-heading-font, inherit); font-weight: 700; font-size: clamp(3rem, 6vw, 4.5rem); line-height: 1; letter-spacing: -0.03em; }
.st-reviews__of { display: grid; gap: 0.3rem; font-size: var(--st-meta); color: var(--st-muted); }
.st-reviews__rail { --rail-item: 82%; }
@media (min-width: 750px) { .st-reviews__rail { --rail-item: 46%; } }
.st-review {
  margin: 0; display: grid; gap: 0.85rem; align-content: start;
  padding: clamp(1.25rem, 2.4vw, 1.75rem); border-radius: var(--st-card-radius);
  background: var(--st-surface); border: 1px solid var(--st-border); min-height: 100%;
}
.st-review__quote { margin: 0; font-size: var(--st-body); line-height: 1.6; color: var(--st-ink); }
.st-review__by { display: flex; flex-wrap: wrap; gap: 0.4rem 0.75rem; align-items: center; font-size: var(--st-meta); }
.st-review__name { font-weight: 600; }
.st-review__verified { color: var(--st-success, var(--st-muted)); }
.st-review__verified::before { content: "✓ "; }
.st-review__product { display: flex; align-items: center; gap: 0.6rem; padding-top: 0.85rem; border-top: 1px solid var(--st-border); font-size: var(--st-meta); color: var(--st-muted); text-decoration: none; }
.st-review__thumb { width: 2.5rem; height: 2.5rem; border-radius: var(--st-radius-md); overflow: hidden; flex: none; }
.st-review__thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ── Press V3 (sections/_press_strip_v3) ──────────────────────── */
.st-press__heading { text-align: center; margin: 0 0 var(--st-head-gap); color: var(--st-muted); }
.st-press__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1.5rem clamp(2rem, 5vw, 4.5rem);
}
.st-press--quotes .st-press__list { display: grid; grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr)); gap: clamp(1.5rem, 3vw, 3rem); align-items: start; }
.st-press__item { display: grid; gap: 1rem; justify-items: center; text-align: center; }
.st-press__item--dup { display: none; }
@media (max-width: 749px) { .st-press--many .st-press__item--dup { display: grid; } }
.st-press__mark { display: inline-flex; align-items: center; color: var(--st-ink); text-decoration: none; opacity: 0.72; transition: opacity 0.2s; }
.st-press__mark:hover { opacity: 1; }
.st-press__logo { height: 1.9rem; width: auto; filter: grayscale(1); }
.st-press__mark:hover .st-press__logo { filter: none; }
.st-press__wordmark {
  font-family: var(--st-heading-font, inherit); font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.5rem); letter-spacing: 0.04em; text-transform: uppercase; white-space: nowrap;
}
.st-press__quote { margin: 0; font-size: var(--st-body); line-height: 1.55; color: var(--st-ink); max-width: 28ch; text-wrap: balance; }
@media (max-width: 749px) {
  .st-press--quotes .st-press__list { grid-template-columns: 1fr; }
  .st-press--many .st-press__list { flex-wrap: nowrap; justify-content: flex-start; width: max-content; }
  .st-press--many .st-page { overflow: hidden; }
}
@media (max-width: 749px) and (prefers-reduced-motion: no-preference) {
  .st-press--many .st-press__list { animation: st-press-scroll 22s linear infinite; }
}
@keyframes st-press-scroll { to { transform: translateX(-50%); } }

/* ── Tabbed collection V3 (sections/_product_tabs) ────────────── */
.st-tabs__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1rem 2rem; margin-bottom: var(--st-head-gap); }
.st-tabs__head .st-section-head { margin-bottom: 0; }
.st-tabs__list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
@media (max-width: 749px) {
  .st-tabs__list { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; margin-inline: calc(-1 * var(--st-gutter)); padding-inline: var(--st-gutter); width: calc(100% + 2 * var(--st-gutter)); }
  .st-tabs__list::-webkit-scrollbar { display: none; }
  .st-tabs__list .product-tab-button { flex: none; }
}

/* ── Countdown band V3 (sections/_countdown_banner) ───────────── */
.st-countdown { position: relative; overflow: hidden; isolation: isolate; }
.st-countdown__photo { position: absolute; inset: 0; z-index: -1; }
.st-countdown__photo img { width: 100%; height: 100%; object-fit: cover; }
.st-countdown.has-photo { background: #111; color: #fff; }
.st-countdown.has-photo a { background: #fff !important; color: #111 !important; }
.st-countdown.has-photo::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgb(0 0 0 / 0.5); }
.st-countdown__inner { text-align: center; display: grid; justify-items: center; }
.st-countdown__unit { display: grid; justify-items: center; gap: 0.4rem; }
.st-countdown__digit {
  min-width: clamp(3.75rem, 11vw, 5.5rem); padding: 0.65rem 0.5rem; border-radius: var(--st-radius-lg);
  font-family: var(--st-heading-font, inherit); font-weight: 700; font-size: clamp(1.9rem, 5vw, 3rem); line-height: 1;
  background: color-mix(in srgb, currentColor 12%, transparent); border: 1px solid color-mix(in srgb, currentColor 22%, transparent);
}
.st-countdown__label { font-size: var(--st-caption); letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.75; }

/* ── Blog posts V3 (sections/_blog_posts) ───────────────────────── */
.st-post { display: grid; gap: 0.6rem; align-content: start; color: var(--st-ink); text-decoration: none; }
.st-post .st-ratio { border-radius: var(--st-card-radius); margin-bottom: 0.4rem; }
.st-post__date { font-size: var(--st-meta); color: var(--st-muted); }
.st-post__summary { font-size: var(--st-body-sm); color: var(--st-muted); line-height: 1.55; }
.st-post:hover .st-post__title { text-decoration: underline; text-underline-offset: 0.2em; }

/* ── Newsletter band V3 (sections/_newsletter, band) ────────────── */
.st-news__inner { display: grid; gap: 1.5rem 3rem; align-items: center; }
@media (min-width: 990px) { .st-news__inner { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); } }
.st-news__text { display: grid; gap: 0.75rem; }
.st-news__sub { margin: 0; color: color-mix(in srgb, var(--st-ink) 78%, transparent); font-size: var(--st-body-lg); max-width: 36rem; }
.st-news__form {
  display: flex; gap: 0.5rem; padding: 0.4rem; border-radius: var(--st-btn-radius, 999px);
  background: var(--st-bg); border: 1px solid color-mix(in srgb, var(--st-ink) 18%, transparent);
}
.st-news__input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; color: var(--st-ink); font: inherit; padding: 0.65rem 1rem; }
.st-news__form:focus-within { box-shadow: 0 0 0 2px var(--st-ink); }
.st-news__button { flex: none; }
@media (max-width: 479px) { .st-news__form { flex-direction: column; border-radius: var(--st-radius-lg); } }

/* ── Footer V3 (themes/shared/_footer_premium) ──────────────────── */
.st-foot { border-top: 1px solid var(--st-border); padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem; font-size: var(--st-body-sm); }
.st-foot__grid { display: grid; gap: 2.25rem 2rem; grid-template-columns: 1fr 1fr; }
@media (min-width: 990px) { .st-foot__grid { grid-template-columns: 1.6fr repeat(3, minmax(0, 1fr)); } }
.st-foot__brand { grid-column: 1 / -1; display: grid; gap: 0.75rem; align-content: start; }
@media (min-width: 990px) { .st-foot__brand { grid-column: auto; } }
.st-foot__name { font-size: var(--st-h3); line-height: 1.1; }
.st-foot__tagline { margin: 0; color: var(--st-muted); max-width: 26rem; line-height: 1.6; }
.st-foot__social { margin-inline-start: -0.5rem; }
.st-foot__title { margin: 0 0 1rem; font-size: var(--st-eyebrow); letter-spacing: 0.18em; text-transform: uppercase; color: var(--st-muted); font-weight: 600; }
.st-foot__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.st-foot__col a { color: var(--st-ink); text-decoration: none; }
.st-foot__col a:hover { text-decoration: underline; text-underline-offset: 0.2em; }
.st-foot__label { color: var(--st-muted); font-size: var(--st-meta); }
.st-foot__value { font-weight: 500; color: var(--st-ink); }
.st-foot__payments { list-style: none; margin: 2.5rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.st-foot__payments li {
  padding: 0.35rem 0.75rem; border-radius: var(--st-radius-md); border: 1px solid var(--st-border);
  font-size: var(--st-meta); font-weight: 600; color: var(--st-ink); background: var(--st-surface);
}
.st-foot__bottom {
  margin-top: 1.75rem; padding-top: 1.25rem; border-top: 1px solid var(--st-border);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.75rem 1.5rem;
  font-size: var(--st-meta); color: var(--st-muted);
}

/* ── Statement V3 (sections/_rich_text, statement) ──────────────── */
.st-statement h2, .st-statement h3 {
  font-size: clamp(2rem, 4.8vw, 3.75rem) !important; line-height: 1.05 !important; letter-spacing: -0.025em; text-wrap: balance;
}
.st-statement p { font-size: var(--st-body-lg); color: var(--st-muted); max-width: 40rem; line-height: 1.6; text-wrap: pretty; }

/* ── UGC mosaic V3 (sections/_instagram_grid, mosaic) ─────────────── */
.st-mosaic > :first-child { grid-column: span 2; grid-row: span 2; }

/* ── Category banner V3 (storefront/shops/category) ─────────────── */
.st-cat-banner { display: grid; gap: 1.5rem; }
.st-cat-banner__photo { border-radius: var(--st-card-radius); }
@media (min-width: 900px) {
  .st-cat-banner { grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); align-items: end; gap: 3rem; }
  .st-cat-banner__photo { order: 2; aspect-ratio: 16 / 9; }
}

/* ── Motion V3 (ThemeV3.md A5) ─────────────────────────────
   A section's photos settle from a slight zoom as it scrolls in -
   scroll_reveal_controller marks the section pending while hidden
   and revealed once shown. Only photos in V3 ratio boxes and hero
   media move; nothing is hidden by this rule, only scaled. */
.st-reveal-pending .st-ratio img,
.st-reveal-pending .st-hero-v3__media img { transform: scale(1.07); }
.st-revealed .st-ratio img,
.st-revealed .st-hero-v3__media img { transition: transform 1.6s var(--st-ease); }

/* Marquee strips pause while a pointer rests on them. */
.st-marquee-track:hover { animation-play-state: paused; }

/* ── Accessibility helpers ───────────────────────────────── */
.st-visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

@media (prefers-reduced-motion: reduce) {
  .st-zoom img, .st-link-arrow::after, .st-card-v3__alt, .st-card-v3 .product-card-img { transition: none; }
  .st-card-v3:hover .product-card-img { transform: none; }
  .st-header-v3, .st-mega__panel, .st-ann__item, .st-drawer, .st-drawer-backdrop, .st-drawer__bar span { transition: none; }
  .st-header-v3.is-tucked { transform: none; }
  .st-reveal-pending .st-ratio img, .st-reveal-pending .st-hero-v3__media img { transform: none; }
  .st-zoom:hover img { transform: none; }
}

/* ── Collection page (ThemeV3.md G3/G7) ───────────────────────
   A plain title and count, then one quiet toolbar: text-style filter
   dropdowns on the left, the sort on the right, a hairline under it. */
.st-page-title {
  margin: 0;
  font-family: var(--st-heading-font, inherit);
  font-weight: var(--st-heading-weight, 600);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--st-ink);
  text-wrap: balance;
}
.st-collection-head { margin-bottom: 1.25rem; }
.st-collection-head__count { margin: 0.4rem 0 0; font-size: var(--st-meta); color: var(--st-muted); }
.st-collection-toolbar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.5rem 1.5rem;
  padding-block: 0.4rem; margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--st-border);
}
.st-collection-toolbar__filters { flex: 1 1 auto; min-width: 0; }
.st-collection-toolbar .st-filters { margin-bottom: 0; }
.st-collection-toolbar .st-filters__chips { margin-top: 0.5rem; margin-bottom: 0.4rem; }
.st-collection-toolbar .st-filters__label { font-size: var(--st-meta); }
.st-collection-toolbar .st-filters__button {
  border: 0; border-radius: 0; padding: 0.45rem 0.5rem;
  font-size: var(--st-meta); letter-spacing: 0.01em;
}
.st-collection-toolbar .st-filters__button:hover { text-decoration: underline; text-underline-offset: 0.3em; }
.st-collection-toolbar .st-filters__button.is-active { text-decoration: underline; text-underline-offset: 0.3em; }
.st-collection-toolbar__sort { display: flex; align-items: center; gap: 0.5rem; font-size: var(--st-meta); color: var(--st-muted); }
.st-collection-toolbar__sort select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  border: 0; background: transparent; color: var(--st-ink); font: inherit;
  padding: 0.45rem 1.4rem 0.45rem 0.25rem;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 0.6rem) 55%, calc(100% - 0.3rem) 55%;
  background-size: 0.3rem 0.3rem; background-repeat: no-repeat;
}
.st-collection-grid { gap: var(--st-grid-gap); row-gap: clamp(1.5rem, 2.6vw, 2.25rem); }

/* ── Product page buy box (ThemeV3.md G5) ─────────────────────
   Quantity and Add to cart on one row; Buy now and WhatsApp as quiet
   secondary buttons; then stock and delivery as a short list. */
.st-pdp-buy { display: flex; gap: 0.6rem; align-items: stretch; }
.st-pdp-qty { border-radius: var(--st-btn-radius, 4px); border-color: var(--st-border); flex-shrink: 0; }
.st-pdp-qty button { width: 2.5rem; height: 3rem; }
.st-pdp-qty input { width: 2.25rem; }
.st-pdp-atc {
  flex: 1 1 auto; min-height: 3rem; padding-inline: 1.25rem;
  border-radius: var(--st-btn-radius, 4px);
  font-size: 0.9375rem; letter-spacing: 0.02em;
}
.st-pdp-secondary {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%; min-height: 3rem; margin-top: 0.6rem;
  border-radius: var(--st-btn-radius, 4px);
  border: 1px solid var(--st-ink); background: transparent; color: var(--st-ink);
  font-size: 0.9375rem; font-weight: 500; text-decoration: none;
  transition: background-color 0.2s var(--st-ease), color 0.2s var(--st-ease);
}
.st-pdp-secondary:hover { background: var(--st-ink); color: var(--st-bg); }
/* WhatsApp keeps its green, as an outline - it's the channel most
   shoppers here use, but it shouldn't outshout Add to cart. */
.st-pdp-wa { border-color: #25D366; color: #128C4A; }
.st-pdp-wa svg { color: #25D366; }
.st-pdp-wa:hover { background: #25D366; color: #fff; }
.st-pdp-wa:hover svg { color: #fff; }

.st-pdp-assure { display: grid; gap: 0.6rem; margin-top: 1.25rem; font-size: 0.875rem; }
.st-pdp-assure__strip { display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem 1.1rem; }
.st-pdp-assure__row { display: flex; align-items: flex-start; gap: 0.6rem; }
.st-pdp-assure__row svg { width: 1.15rem; height: 1.15rem; margin-top: 0.1rem; }

/* Size (and other text) options: compact squares. */
.st-pdp-size {
  min-width: 3rem; height: 2.75rem; padding-inline: 0.85rem;
  border-radius: var(--st-btn-radius, 4px); border-color: var(--st-border);
  font-size: 0.875rem; font-weight: 500;
}

/* ── Phone product gallery (ThemeV3.md G6) ─────────────────────
   A full-bleed swipe row with a peek of the next photo and dots; it
   replaces the inset main image and thumbnail strip on phones. */
.pdp-swipe { margin-inline: calc(-1 * var(--pdp-gutter, 1rem)); }
.pdp-swipe__track {
  display: grid; grid-auto-flow: column; grid-auto-columns: 86%; gap: 0.5rem;
  overflow-x: auto; scroll-snap-type: x mandatory; overscroll-behavior-x: contain;
  padding-inline: var(--pdp-gutter, 1rem); scroll-padding-inline: var(--pdp-gutter, 1rem);
  scrollbar-width: none;
}
.pdp-swipe__track::-webkit-scrollbar { display: none; }
.pdp-swipe__slide {
  scroll-snap-align: start; aspect-ratio: 4 / 5; overflow: hidden;
  border-radius: var(--st-card-radius, 0.5rem);
  background: var(--st-media-bg, color-mix(in srgb, var(--st-ink) 4%, var(--st-bg)));
}
.pdp-swipe__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp-swipe__dots { display: flex; justify-content: center; gap: 0.4rem; padding-top: 0.75rem; }
.pdp-swipe__dots span {
  width: 0.4rem; height: 0.4rem; border-radius: 999px;
  background: color-mix(in srgb, var(--st-ink) 22%, transparent);
  transition: width 0.25s var(--st-ease), background-color 0.25s var(--st-ease);
}
.pdp-swipe__dots span.is-active { width: 1.1rem; background: var(--st-ink); }
@media (max-width: 767px) {
  .pdp-gallery.has-swipe .pdp-main-image,
  .pdp-gallery.has-swipe .pdp-thumbs-horizontal { display: none !important; }
}
.st-sticky-atc { transition: transform 0.3s var(--st-ease), opacity 0.3s var(--st-ease); }
.st-sticky-atc.is-hidden { transform: translateY(110%); opacity: 0; pointer-events: none; }
@media (prefers-reduced-motion: reduce) { .st-sticky-atc { transition: none; } }

/* ── Category names, no photos (sections/_category_names, G8) ── */
.st-catnames__grid {
  display: grid; gap: var(--st-grid-gap); margin: 0; padding: 0; list-style: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 750px) { .st-catnames__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 990px) { .st-catnames__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.st-catnames__tile {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 0.75rem;
  min-height: 6.5rem; height: 100%; padding: 1rem 1.1rem;
  border-radius: var(--st-card-radius, 0.5rem);
  background: var(--st-media-bg, color-mix(in srgb, var(--st-ink) 4%, var(--st-bg)));
  color: var(--st-ink); text-decoration: none;
  transition: background-color 0.25s var(--st-ease);
}
.st-catnames__tile:hover { background: color-mix(in srgb, var(--st-ink) 8%, var(--st-bg)); }
.st-catnames__name {
  font-family: var(--st-heading-font, inherit); font-weight: var(--st-heading-weight, 600);
  font-size: 1.0625rem; line-height: 1.25; text-wrap: balance;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.st-catnames__arrow { flex-shrink: 0; transition: transform 0.25s var(--st-ease); }
.st-catnames__tile:hover .st-catnames__arrow { transform: translateX(3px); }

/* ── Category circles (category_grid / category_carousel, G8) ──
   The Expanse / Enterprise circles: large photos on a light well, the
   name under them. They were 88px everywhere. */
.st-cat-circle {
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem; flex-shrink: 0;
  width: clamp(6.5rem, 15vw, 10.5rem); color: var(--st-ink);
}
.st-cat-circle__photo {
  display: flex; align-items: center; justify-content: center;
  width: 100%; aspect-ratio: 1; border-radius: 999px; overflow: hidden;
  background: var(--st-media-bg, color-mix(in srgb, var(--st-ink) 4%, var(--st-bg)));
}
.st-cat-circle__photo img { transition: transform 0.6s var(--st-ease); }
.st-cat-circle:hover .st-cat-circle__photo img { transform: scale(1.05); }
.st-cat-circle__photo--more { box-shadow: inset 0 0 0 1px var(--st-border); font-size: 1.25rem; }
.st-cat-circle__name { font-size: 0.875rem; font-weight: 500; text-align: center; line-height: 1.3; }
@media (prefers-reduced-motion: reduce) { .st-cat-circle__photo img { transition: none; } }

/* ── Trust bar (trust_strip layout "bar", G8) ─────────────────
   One thin line of real promises, the review average first; it swipes
   sideways on a phone rather than wrapping into a block. */
.st-trustbar {
  border-block: 1px solid var(--st-border);
  background: var(--st-media-bg, color-mix(in srgb, var(--st-ink) 3%, var(--st-bg)));
}
.st-trustbar__list {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem 2rem;
  margin: 0 auto; padding: 0.6rem var(--st-gutter); list-style: none;
  max-width: calc(var(--st-page-width) + 2 * var(--st-gutter));
  overflow-x: auto; scrollbar-width: none; white-space: nowrap;
}
.st-trustbar__list::-webkit-scrollbar { display: none; }
@media (max-width: 749px) { .st-trustbar__list { justify-content: flex-start; } }
.st-trustbar__item { display: inline-flex; align-items: center; gap: 0.45rem; font-size: var(--st-meta); color: var(--st-ink); flex-shrink: 0; }
.st-trustbar__item svg { width: 1rem; height: 1rem; color: var(--st-muted); }
.st-trustbar__item--rating span[aria-hidden] { color: #d4a017; }
.st-trustbar__muted { color: var(--st-muted); }

/* ── Desktop product photo grid (Tune: "two-column grid", G5) ── */
.pdp-grid { display: none; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.5rem; }
.pdp-grid__cell {
  aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--st-card-radius, 0.5rem);
  background: var(--st-media-bg, color-mix(in srgb, var(--st-ink) 4%, var(--st-bg)));
}
.pdp-grid__img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (min-width: 768px) {
  .pdp-gallery.has-grid .pdp-main-image,
  .pdp-gallery.has-grid .pdp-thumbs-vertical,
  .pdp-gallery.has-grid .pg-zoom-result { display: none !important; }
  .pdp-gallery.has-grid { display: block; }
  .pdp-gallery.has-grid .pdp-grid { display: grid; }
}
.st-collection-circles {
  display: flex; gap: clamp(1rem, 2.4vw, 2rem); overflow-x: auto; scrollbar-width: none;
  margin: 0 calc(-1 * var(--st-gutter)) 1.75rem; padding: 0.25rem var(--st-gutter);
}
.st-collection-circles::-webkit-scrollbar { display: none; }
.st-collection-circles .st-cat-circle { width: clamp(5.5rem, 11vw, 8rem); }

/* ── Cart page V3 (storefront/carts/show, ThemeV3.md D3) ────── */
.st-cartpage__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.st-cartpage__free { display: grid; gap: 0.5rem; max-width: 28rem; margin-bottom: 1.75rem; font-size: var(--st-body-sm); }
.st-cartpage__cols {
  display: none; padding-bottom: 0.75rem; border-bottom: 1px solid var(--st-border);
  font-size: var(--st-caption); letter-spacing: 0.1em; text-transform: uppercase; color: var(--st-muted);
}
@media (min-width: 768px) {
  .st-cartpage__cols { display: grid; grid-template-columns: 1fr 11rem 7rem; }
  .st-cartpage__cols span:last-child { text-align: end; }
}
.st-cartline { padding-block: 1.25rem; border-bottom: 1px solid var(--st-border); }
.st-cartline__grid { display: grid; grid-template-columns: 5.5rem 1fr; gap: 1rem; align-items: start; }
@media (min-width: 768px) { .st-cartline__grid { grid-template-columns: 6rem 1fr 11rem 7rem; align-items: center; } }
.st-cartline__thumb { aspect-ratio: 4 / 5; border-radius: var(--st-radius-md, 0.375rem); overflow: hidden; background: var(--st-media-bg, color-mix(in srgb, var(--st-ink) 4%, var(--st-bg))); }
.st-cartline__thumb img { width: 100%; height: 100%; object-fit: cover; }
.st-cartline__name { display: block; font-weight: 500; color: var(--st-ink); text-decoration: none; line-height: 1.35; }
.st-cartline__name:hover { text-decoration: underline; text-underline-offset: 0.25em; }
.st-cartline__total { text-align: end; font-weight: 500; }
.st-cartline__remove { display: inline-flex; padding: 0.35rem; border: 0; background: transparent; color: var(--st-muted); cursor: pointer; border-radius: 999px; }
.st-cartline__remove:hover { color: var(--st-ink); background: color-mix(in srgb, var(--st-ink) 6%, transparent); }
.st-cartpage__summary {
  padding: 1.5rem; border-radius: var(--st-card-radius, 0.5rem);
  background: var(--st-media-bg, color-mix(in srgb, var(--st-ink) 3%, var(--st-bg)));
}

/* ── Right-to-left pages with left-to-right copy ───────────────
   An Urdu storefront still carries the seller's English names and
   headlines. Set in the page's right-to-left direction their end
   punctuation jumped to the front (".Gold, worn every day"). Each text
   block takes its direction from its own first letter instead. */
html[dir="rtl"] body.storefront :is(h1, h2, h3, h4, h5, p, li, blockquote, figcaption, dd, dt,
  .st-card-v3__name, .st-drawer__name, .st-cartline__name, .st-tile__title, .st-catnames__name) {
  unicode-bidi: plaintext;
}

/* ── Quick buy (storefront/products/_quick_buy, H1/H2) ──────────
   A compact buy box: photos + thumbnails, then name, rating, price,
   the picker and Add to cart. "split" sits them side by side from
   tablet up; "stack" is the drawer and the spotlight card. */
.st-qb { display: grid; gap: clamp(1.25rem, 3vw, 3rem); align-items: start; }
.st-qb--split { grid-template-columns: 1fr; }
@media (min-width: 750px) { .st-qb--split { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); } }
.is-flipped .st-qb--split .st-qb__gallery { order: 2; }
.st-qb__gallery { display: grid; gap: 0.6rem; }
.st-qb__main { aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--st-card-radius, 0.5rem); background: var(--st-media-bg, color-mix(in srgb, var(--st-ink) 4%, var(--st-bg))); }
.st-qb__main img { width: 100%; height: 100%; object-fit: cover; }
.st-qb--stack .st-qb__main { aspect-ratio: 1; }
.st-qb__thumbs { display: flex; gap: 0.5rem; overflow-x: auto; scrollbar-width: none; }
.st-qb__thumbs .st-thumb { flex: none; width: 4rem; aspect-ratio: 1; border-radius: var(--st-radius-md, 0.375rem); overflow: hidden; border: 1px solid transparent; padding: 0; cursor: pointer; background: var(--st-surface); }
.st-qb__thumbs .st-thumb[aria-pressed="true"] { border-color: var(--st-ink); }
.st-qb__thumbs .st-thumb img { width: 100%; height: 100%; object-fit: cover; }
.st-qb__info { display: grid; gap: 0.9rem; align-content: start; }
.st-qb__name { margin: 0; font-family: var(--st-heading-font, inherit); font-weight: var(--st-heading-weight, 600); font-size: clamp(1.4rem, 2.2vw, 1.875rem); line-height: 1.15; }
.st-qb__name a { color: inherit; text-decoration: none; }
.st-qb--stack .st-qb__name { font-size: 1.25rem; }
.st-qb__rating { margin: 0; font-size: var(--st-meta); color: var(--st-ink); }
.st-qb__rating span[aria-hidden] { color: #d4a017; }
.st-qb__rating span:last-child { color: var(--st-muted); }
.st-qb__price { margin: 0; display: flex; align-items: baseline; gap: 0.6rem; font-size: 1.125rem; font-weight: 600; font-variant-numeric: tabular-nums; }
.st-qb__price s { font-size: var(--st-body-sm); font-weight: 400; color: var(--st-muted); }
.st-qb__desc { margin: 0; color: var(--st-muted); font-size: var(--st-body-sm); line-height: 1.6; }
.st-qb__option { display: grid; gap: 0.5rem; }
.st-qb__option-name { margin: 0; font-size: var(--st-body-sm); font-weight: 500; }
.st-qb__option-name span { color: var(--st-muted); font-weight: 400; }
.st-qb__values { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.st-qb__values .st-color-swatch { width: 2.1rem; height: 2.1rem; border-radius: 999px; border: 0; cursor: pointer; }
.st-qb__more { justify-self: start; }

/* Featured product: spotlight - the buy box as a card over the photo. */
.st-featured-product__scene { position: relative; }
.st-featured-product__photo { border-radius: var(--st-card-radius, 0.5rem); }
.st-featured-product__card {
  background: var(--st-surface, var(--st-bg)); border-radius: var(--st-card-radius, 0.5rem);
  padding: clamp(1rem, 2vw, 1.5rem); box-shadow: 0 24px 60px -30px color-mix(in srgb, var(--st-ink) 45%, transparent);
  margin: -3rem 1rem 0; position: relative;
}
@media (min-width: 990px) {
  .st-featured-product__card { position: absolute; top: 50%; right: 2.5rem; transform: translateY(-50%); width: min(24rem, 38%); margin: 0; max-height: calc(100% - 3rem); overflow: auto; }
  .is-flipped .st-featured-product__card { right: auto; left: 2.5rem; }
}
@media (min-width: 750px) { .st-qb--split .st-qb__info { position: sticky; top: 6rem; } }
.st-drawer__quick { padding: 1rem 1.5rem 2rem; }

/* Swatches that switch the card photo (H3): the dot is a button. */
.st-swatch { position: relative; }
.st-swatch__btn { position: absolute; inset: -0.2rem; border: 0; padding: 0; background: transparent; border-radius: 999px; cursor: pointer; }
.st-swatch:has(.st-swatch__btn[aria-pressed="true"]) { box-shadow: 0 0 0 2px var(--st-bg), 0 0 0 3px var(--st-ink); }
/* While a swatch shows its colour, the hover crossfade stays out of the way. */
.st-card-v3.is-swatching .st-card-v3__alt { opacity: 0 !important; }

/* ── Image with text rows (sections/_image_text_rows, H4) ────── */
.st-rows__list { display: grid; gap: clamp(2rem, 5vw, 4.5rem); }
.st-rows--cards .st-rows__list { gap: var(--st-grid-gap); }
.st-rows__row { display: grid; gap: clamp(1.25rem, 3vw, 3.5rem); align-items: center; }
@media (min-width: 750px) {
  .st-rows__row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .st-rows__row.is-flipped .st-rows__photo { order: 2; }
}
.st-rows__photo { border-radius: var(--st-card-radius, 0.5rem); }
.st-rows__body { display: grid; gap: 0.9rem; justify-items: start; max-width: 32rem; }
.st-rows__cta { margin-top: 0.4rem; }
.st-rows--cards .st-rows__row {
  background: var(--st-surface, var(--st-bg)); border-radius: var(--st-card-radius, 0.75rem);
  padding: clamp(0.75rem, 1.6vw, 1.25rem); gap: clamp(1rem, 2.5vw, 2.5rem);
  box-shadow: 0 1px 0 var(--st-border), 0 18px 40px -32px color-mix(in srgb, var(--st-ink) 40%, transparent);
}
.st-rows--cards .st-rows__body { padding: clamp(0.5rem, 2vw, 1.5rem); }

/* ── Video (sections/_video, H5) ────────────────────────────── */
.st-video__frame { position: relative; overflow: hidden; border-radius: var(--st-card-radius, 0.5rem); background: #000; aspect-ratio: 16 / 9; }
.st-video--cinema .st-video__frame { aspect-ratio: 21 / 9; }
.st-video--portrait .st-video__frame { aspect-ratio: 4 / 5; max-width: 34rem; margin-inline: auto; }
.st-page--full .st-video__frame { border-radius: 0; }
.st-video__poster { position: absolute; inset: 0; padding: 0; border: 0; cursor: pointer; background: transparent; }
.st-video__poster img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--st-ease); }
.st-video__poster:hover img { transform: scale(1.03); }
.st-video__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 4.5rem; height: 4.5rem; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center;
  background: rgb(255 255 255 / 0.92); color: #111; box-shadow: 0 8px 30px rgb(0 0 0 / 0.25);
  transition: transform 0.25s var(--st-ease);
}
.st-video__play svg { margin-left: 3px; }
.st-video__poster:hover .st-video__play { transform: translate(-50%, -50%) scale(1.06); }
.st-video__player { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.st-video__player iframe { width: 100%; height: 100%; border: 0; }
@media (prefers-reduced-motion: reduce) { .st-video__poster img, .st-video__play { transition: none; } }

/* ── Product comparison (sections/_product_compare, H6) ─────── */
.st-compare__scroll { overflow-x: auto; margin-inline: calc(-1 * var(--st-gutter)); padding-inline: var(--st-gutter); scrollbar-width: thin; }
.st-compare__table { width: 100%; min-width: calc(8rem + var(--compare-cols) * 11rem); border-collapse: collapse; font-size: var(--st-body-sm); }
.st-compare__table th, .st-compare__table td { padding: 0.85rem 0.75rem; text-align: center; vertical-align: middle; border-bottom: 1px solid var(--st-border); }
.st-compare__table tbody th {
  text-align: start; font-weight: 500; color: var(--st-muted); white-space: nowrap;
  position: sticky; inset-inline-start: 0; background: var(--st-bg); z-index: 1;
}
.st-compare__table s { color: var(--st-muted); font-size: var(--st-meta); }
.st-compare__product { vertical-align: bottom; }
.st-compare__photo { display: block; aspect-ratio: 1; max-width: 10rem; margin: 0 auto 0.75rem; border-radius: var(--st-card-radius, 0.5rem); overflow: hidden; background: var(--st-media-bg, color-mix(in srgb, var(--st-ink) 4%, var(--st-bg))); }
.st-compare__photo img { width: 100%; height: 100%; object-fit: contain; }
.st-compare__name { color: var(--st-ink); font-weight: 600; text-decoration: none; }
.st-compare__swatches { display: inline-flex; gap: 0.3rem; }
.st-compare__buy td { border-bottom: 0; }
.st-compare__cta { width: 100%; max-width: 11rem; }

/* ── Collection grid extras (H7) ────────────────────────────── */
@media (min-width: 990px) {
  .st-collection-grid[data-cols="2"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .st-collection-grid[data-cols="3"] { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .st-collection-grid[data-cols="4"] { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.st-collection-toolbar--end { justify-content: flex-end; }
.st-density { display: none; gap: 0.25rem; }
@media (min-width: 990px) { .st-density { display: inline-flex; } }
.st-density__btn { display: inline-flex; gap: 2px; padding: 0.45rem; border: 0; background: transparent; cursor: pointer; border-radius: var(--st-radius-sm, 4px); color: var(--st-muted); }
.st-density__btn span { width: 3px; height: 12px; border-radius: 1px; background: currentColor; }
.st-density__btn[aria-pressed="true"], .st-density__btn:hover { color: var(--st-ink); }
.st-grid-promo {
  display: flex; flex-direction: column; justify-content: center; gap: 0.5rem; padding: 1.5rem;
  border-radius: var(--st-card-radius, 0.5rem); min-height: 100%;
  background: var(--st-accent); color: var(--st-on-accent, #fff);
}
.st-grid-promo__figure { margin: 0; font-family: var(--st-heading-font, inherit); font-weight: var(--st-heading-weight, 700); font-size: clamp(1.75rem, 3vw, 2.5rem); line-height: 1.05; }
.st-grid-promo__text { margin: 0; font-size: var(--st-body-sm); }
.st-grid-promo__text strong { letter-spacing: 0.08em; padding: 0.15rem 0.45rem; border: 1px dashed currentColor; border-radius: 4px; }
.st-grid-promo__note { margin: 0; font-size: var(--st-caption); opacity: 0.85; }
.st-load-more { display: grid; justify-items: center; gap: 0.6rem; margin-top: 2.5rem; }
.st-load-more .st-btn[aria-busy="true"] { opacity: 0.6; pointer-events: none; }
.st-load-more__count { margin: 0; font-size: var(--st-meta); color: var(--st-muted); }

/* ── Pairs well with (product page, H9) ─────────────────────── */
.st-pairs { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--st-border); }
.st-pairs__title { margin: 0 0 0.75rem; font-size: var(--st-body-sm); font-weight: 600; }
.st-pairs__list { display: grid; gap: 0.6rem; margin: 0; padding: 0; list-style: none; }
.st-pairs__item { display: grid; grid-template-columns: 3.5rem 1fr auto; gap: 0.75rem; align-items: center; }
.st-pairs__thumb { display: block; aspect-ratio: 1; border-radius: var(--st-radius-md, 0.375rem); overflow: hidden; background: var(--st-media-bg, color-mix(in srgb, var(--st-ink) 4%, var(--st-bg))); }
.st-pairs__thumb img { width: 100%; height: 100%; object-fit: cover; }
.st-pairs__info { display: grid; gap: 0.15rem; min-width: 0; }
.st-pairs__name { color: var(--st-ink); font-size: var(--st-body-sm); text-decoration: none; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.st-pairs__price { font-size: var(--st-meta); color: var(--st-muted); }
.st-pairs__add {
  width: 2.25rem; height: 2.25rem; border-radius: 999px; border: 1px solid var(--st-border); background: transparent;
  color: var(--st-ink); font-size: 1.1rem; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; text-decoration: none;
}
.st-pairs__add:hover { background: var(--st-ink); color: var(--st-bg); border-color: var(--st-ink); }

/* Mega menu columns (H10). */
.st-mega__inner--columns { grid-template-columns: minmax(10rem, 1fr) 3fr minmax(12rem, 1.2fr); }
.st-mega__inner--products { grid-template-columns: minmax(10rem, 1fr) repeat(4, minmax(0, 1fr)); }
.st-mega__col { display: grid; gap: 0.9rem; align-content: start; }
.st-mega__heading { margin: 0; font-size: var(--st-caption); letter-spacing: 0.12em; text-transform: uppercase; color: var(--st-muted); }
.st-mega__links { margin: 0; padding: 0; list-style: none; display: grid; gap: 0.45rem; }
.st-mega__links a { color: var(--st-ink); text-decoration: none; font-size: var(--st-body-sm); }
.st-mega__links a:hover { text-decoration: underline; text-underline-offset: 0.25em; }
.st-mega__tiles { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--st-grid-gap); }
.st-mega__price { font-size: var(--st-meta); color: var(--st-muted); }
.st-mega__promo { position: relative; display: block; color: #fff; text-decoration: none; border-radius: var(--st-card-radius); overflow: hidden; }
.st-mega__promo .st-ratio { border-radius: inherit; }
.st-mega__promo-text {
  position: absolute; inset: auto 0 0 0; padding: 1rem; display: grid; gap: 0.25rem;
  background: linear-gradient(transparent, rgb(0 0 0 / 0.55));
}
.st-mega__promo-text .st-eyebrow { color: inherit; opacity: 0.85; }
/* The header (and its mega panels) above page furniture like the
   catalog's filter bar (z 45), which the filters' own comment already
   assumed. Below modals and the drawer. */
.st-header-v3 { z-index: 55; }
.st-mega__promo-text { background: linear-gradient(transparent, rgb(0 0 0 / 0.72) 70%); padding-top: 2.5rem; text-shadow: 0 1px 8px rgb(0 0 0 / 0.35); }
.st-foot__payments li { display: inline-flex; align-items: center; gap: 0.4rem; }
.st-foot__payments svg { color: var(--st-muted); }
.st-foot__langs { display: inline-flex; gap: 0.75rem; }
.st-foot__lang { color: var(--st-muted); text-decoration: none; font-size: var(--st-meta); }
.st-foot__lang.is-current { color: var(--st-ink); font-weight: 600; text-decoration: underline; text-underline-offset: 0.25em; }

/* Testimonials with the person's photo (H12). */
.st-testi__photo { margin: -0.5rem -0.5rem 1rem; border-radius: calc(var(--st-card-radius, 0.75rem) - 2px); }
.st-testi__avatar { width: 3.5rem; height: 3.5rem; border-radius: 999px; overflow: hidden; flex-shrink: 0; }
.st-testi__avatar img { width: 100%; height: 100%; object-fit: cover; }

/* ── FAQ (sections/_faq) ──────────────────────────────────────
   Cards tinted from the band's own ink, so on a colour band the
   questions sit on a slightly lighter shade of it (white on light grey
   was unreadable) and on the page ground they're a soft grey. */
.st-faq .st-section-head { margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.st-faq__list { display: grid; gap: 0.6rem; }
.st-faq-item {
  border-radius: var(--st-card-radius, 0.75rem);
  background: color-mix(in srgb, var(--st-ink) 6%, transparent);
  border: 1px solid color-mix(in srgb, var(--st-ink) 12%, transparent);
  color: var(--st-ink);
  transition: background-color 0.2s var(--st-ease);
}
.st-faq-item:hover, .st-faq-item[open] { background: color-mix(in srgb, var(--st-ink) 9%, transparent); }
.st-faq-item__q {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.35rem; cursor: pointer; list-style: none; user-select: none;
  font-weight: 600; font-size: var(--st-body);
}
.st-faq-item__q svg { opacity: 0.7; }
.st-faq-item__a { padding: 0 1.35rem 1.2rem; color: color-mix(in srgb, var(--st-ink) 78%, transparent); font-size: var(--st-body-sm); line-height: 1.65; }

/* ── Phase I sections (ThemeV3.md I6) ──────────────────────── */

/* Product chip - one product on something else (hero, reels). */
.st-chip {
  display: grid; grid-template-columns: 3.5rem minmax(0, 1fr) auto; align-items: center; gap: 0.75rem;
  padding: 0.6rem; background: var(--st-surface, var(--st-bg)); color: var(--st-ink);
  border-radius: var(--st-card-radius, var(--st-radius-lg)); box-shadow: 0 10px 30px -12px var(--st-shadow-color, rgb(0 0 0 / 0.3));
}
.st-chip__photo { display: block; aspect-ratio: 1; border-radius: var(--st-radius-md); overflow: hidden; background: color-mix(in srgb, var(--st-ink) 5%, var(--st-bg)); }
.st-chip__photo img { width: 100%; height: 100%; object-fit: cover; }
.st-chip__body { min-width: 0; display: grid; gap: 0.1rem; }
.st-chip__label { margin: 0; font-size: var(--st-caption); letter-spacing: 0.08em; text-transform: uppercase; color: var(--st-muted); }
.st-chip__name { color: inherit; text-decoration: none; font-weight: 600; font-size: var(--st-body-sm); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.st-chip__name:hover { text-decoration: underline; }
.st-chip__price { margin: 0; font-size: var(--st-body-sm); white-space: nowrap; }
.st-chip__price s { color: var(--st-muted); margin-inline-start: 0.35rem; }
.st-chip__buy {
  display: inline-grid; place-items: center; width: 2.5rem; height: 2.5rem; border-radius: var(--st-radius-pill);
  background: var(--st-accent); color: var(--st-on-accent); transition: transform 0.2s var(--st-ease);
}
.st-chip__buy:hover { transform: scale(1.06); }

/* Hero with a product. */
.st-hero-product { display: grid; background: var(--st-bg); }
.st-hero-product__media { position: relative; min-height: min(62vh, 30rem); overflow: hidden; }
.st-hero-product__img, .st-hero-product__media > picture img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.st-hero-product__card { position: absolute; inset-inline: var(--st-gutter); bottom: var(--st-gutter); max-width: 21rem; }
.st-hero-product__copy { display: grid; gap: 1.1rem; align-content: center; padding: clamp(2.5rem, 7vw, 6rem) var(--st-gutter); }
.st-hero-product__title { margin: 0; text-wrap: balance; }
@media (min-width: 750px) {
  .st-hero-product { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); min-height: min(86vh, 52rem); }
  .st-hero-product.is-flipped .st-hero-product__media { order: 2; }
  .st-hero-product__media { min-height: 0; }
  .st-hero-product__card { inset-inline: auto clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); width: 20rem; }
  .st-hero-product.is-flipped .st-hero-product__card { inset-inline: clamp(1rem, 3vw, 2rem) auto; }
  .st-hero-product__copy { padding-inline: clamp(2rem, 5vw, 5rem); }
}

/* Bento grid - the shape follows the tile count. */
.st-bento__grid { display: grid; gap: var(--st-grid-gap); grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: minmax(10rem, 34vw); }
.st-bento__tile--lead { grid-column: 1 / -1; grid-row: span 1; }
.st-bento__grid--4 .st-bento__tile:last-child { grid-column: 1 / -1; }
.st-bento__tile {
  position: relative; display: block; overflow: hidden; border-radius: var(--st-card-radius, var(--st-radius-lg));
  color: #fff; text-decoration: none; background: color-mix(in srgb, var(--st-ink) 8%, var(--st-bg));
}
.st-bento__tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.st-bento__tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgb(0 0 0 / 0.55), rgb(0 0 0 / 0.08) 55%, transparent); }
.st-bento__text { position: absolute; z-index: 1; inset-inline: 0; bottom: 0; display: grid; gap: 0.25rem; padding: clamp(0.9rem, 2.2vw, 1.6rem); }
.st-bento__eyebrow { font-size: var(--st-caption); letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.85; }
.st-bento__title { font-family: var(--st-heading-font, inherit); font-size: var(--st-h4); line-height: 1.15; text-wrap: balance; }
.st-bento__tile--lead .st-bento__title { font-size: var(--st-h3); }
.st-bento__link { font-size: var(--st-body-sm); font-weight: 600; }
@media (min-width: 750px) {
  .st-bento__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: minmax(12rem, 17vw); }
  .st-bento__tile--lead { grid-column: span 2; grid-row: span 2; }
  .st-bento__grid--3 .st-bento__tile:not(.st-bento__tile--lead) { grid-column: span 2; }
  .st-bento__grid--4 .st-bento__tile:nth-child(2) { grid-column: span 2; }
  .st-bento__grid--4 .st-bento__tile:last-child { grid-column: auto; }
  .st-bento__grid--4 .st-bento__tile:nth-child(3) { grid-column: auto; }
}

/* Big statement. */
.st-bigline { overflow: hidden; }
.st-bigline__inner { display: grid; gap: clamp(1rem, 2.4vw, 1.75rem); }
.st-bigline--center .st-bigline__inner { justify-items: center; text-align: center; }
.st-bigline__text {
  margin: 0; max-width: 20ch; font-family: var(--st-heading-font, inherit); font-weight: 500; color: var(--st-ink);
  font-size: clamp(2rem, 5.4vw, 4.25rem); line-height: 1.05; letter-spacing: -0.02em; text-wrap: balance;
}
.st-bigline--huge .st-bigline__text { font-size: clamp(2.5rem, 8vw, 7rem); line-height: 0.98; letter-spacing: -0.03em; max-width: 16ch; }
.st-bigline__strip { margin-top: clamp(2rem, 5vw, 3.5rem); border-block: 1px solid var(--st-border); padding-block: 0.9rem; overflow: hidden; }
.st-bigline__track { display: flex; width: max-content; }
.st-bigline__run { display: flex; align-items: center; gap: 1.5rem; padding-inline-end: 1.5rem; white-space: nowrap; }
.st-bigline__word { font-family: var(--st-heading-font, inherit); font-size: clamp(1.1rem, 2.2vw, 1.6rem); color: var(--st-ink); }
.st-bigline__dot { color: var(--st-accent); font-size: 0.8em; }
@media (prefers-reduced-motion: no-preference) {
  .st-bigline__track, .st-logos__track { animation: st-press-scroll 38s linear infinite; }
}

/* Scrolling features. */
.st-scroller__layout { display: grid; gap: clamp(1.5rem, 4vw, 4rem); }
.st-scroller__stage { display: none; }
.st-scroller__list { list-style: none; margin: 0; padding: 0; display: grid; gap: clamp(2rem, 5vw, 3rem); }
.st-scroller__item { display: grid; gap: 0.6rem; }
.st-scroller__item .st-h3 { margin: 0; }
.st-scroller__inline { border-radius: var(--st-card-radius, var(--st-radius-lg)); margin-bottom: 0.5rem; }
.st-scroller__num { font-size: var(--st-body-sm); color: var(--st-accent-text, var(--st-accent)); font-weight: 600; letter-spacing: 0.08em; }
@media (min-width: 750px) {
  .st-scroller__layout { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: start; }
  .st-scroller.is-flipped .st-scroller__stage { order: 2; }
  .st-scroller__stage {
    display: block; position: sticky; top: calc(var(--st-header-h, 4rem) + 1.5rem); aspect-ratio: 4 / 5;
    border-radius: var(--st-card-radius, var(--st-radius-lg)); overflow: hidden; background: color-mix(in srgb, var(--st-ink) 5%, var(--st-bg));
  }
  .st-scroller__frame { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s var(--st-ease); }
  .st-scroller__frame.is-active { opacity: 1; }
  .st-scroller__frame img { width: 100%; height: 100%; object-fit: cover; }
  .st-scroller__inline { display: none; }
  .st-scroller__list { gap: 0; }
  .st-scroller__item { min-height: 62vh; align-content: center; padding-block: 2rem; transition: opacity 0.4s var(--st-ease); }
  /* Dimmed only once the controller is tracking which one is current. */
  .st-scroller.is-tracking .st-scroller__item { opacity: 0.45; }
  .st-scroller.is-tracking .st-scroller__item.is-current { opacity: 1; }
}

/* Shoppable videos. */
.st-reels__row {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(12.5rem, 16rem); gap: var(--st-grid-gap);
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 0.5rem;
}
.st-reels__row::-webkit-scrollbar { display: none; }
.st-reels__item { display: grid; gap: 0.6rem; scroll-snap-align: start; }
.st-reels__clip {
  position: relative; display: block; width: 100%; aspect-ratio: 9 / 16; padding: 0; border: 0; cursor: pointer; overflow: hidden;
  border-radius: var(--st-card-radius, var(--st-radius-lg)); background: color-mix(in srgb, var(--st-ink) 12%, var(--st-bg));
}
.st-reels__clip video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.st-reels__caption {
  position: absolute; inset-inline: 0; bottom: 0; padding: 2rem 0.9rem 0.8rem; text-align: start; color: #fff;
  font-size: var(--st-body-sm); font-weight: 600; background: linear-gradient(0deg, rgb(0 0 0 / 0.6), transparent);
}
.st-reels__product { box-shadow: none; border: 1px solid var(--st-border); grid-template-columns: 2.75rem minmax(0, 1fr) auto; gap: 0.55rem; padding: 0.45rem; }
.st-reels__product .st-chip__buy { width: 2.1rem; height: 2.1rem; }
/* A reel's card is narrow: the sale price alone, on one line. */
.st-reels__product .st-chip__price s { display: none; }

/* Logo wall. */
.st-logos__grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--st-border); border-inline-start: 1px solid var(--st-border);
}
@media (min-width: 750px) { .st-logos__grid { grid-template-columns: repeat(var(--logo-cols, 5), minmax(0, 1fr)); } }
.st-logos__grid .st-logos__cell { border-bottom: 1px solid var(--st-border); border-inline-end: 1px solid var(--st-border); min-height: clamp(5.5rem, 10vw, 8rem); }
.st-logos__cell { display: grid; place-items: center; padding: 1.25rem; color: var(--st-ink); text-decoration: none; }
.st-logos__img { max-height: 2.4rem; max-width: 70%; width: auto; filter: grayscale(1); opacity: 0.7; transition: filter 0.2s, opacity 0.2s; }
.st-logos__cell:hover .st-logos__img { filter: none; opacity: 1; }
.st-logos__word { font-family: var(--st-heading-font, inherit); font-weight: 700; font-size: clamp(1rem, 1.8vw, 1.35rem); letter-spacing: 0.05em; text-transform: uppercase; opacity: 0.75; text-align: center; }
.st-logos__strip { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.st-logos__track { display: flex; width: max-content; }
.st-logos__run { display: flex; align-items: center; }
.st-logos__run .st-logos__cell { min-width: 11rem; }

/* ── Review badge (ThemeV3.md J6.1) ─────────────────────── */
.st-rating-badge { margin: 0; display: inline-flex; align-items: center; gap: 0.45rem; font-size: var(--st-body-sm); font-weight: 600; color: var(--st-ink); }
.st-rating-badge__stars { color: #f5b301; letter-spacing: 0.08em; font-size: 0.95em; }
.st-rating-badge--on-photo { color: #fff; text-shadow: 0 1px 8px rgb(0 0 0 / 0.35); }
.st-hero-v3--h-center .st-rating-badge { justify-self: center; }

/* ── Benefits that open (ThemeV3.md J6.3) ──────────────── */
.st-benefits__more { margin-top: 0.35rem; font-size: var(--st-body-sm); }
.st-benefits__more summary { cursor: pointer; list-style: none; display: inline-flex; align-items: center; gap: 0.3rem; font-weight: 600; color: var(--st-ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: color-mix(in srgb, currentColor 35%, transparent); }
.st-benefits__more summary::-webkit-details-marker { display: none; }
.st-benefits__more summary::after { content: "+"; font-weight: 400; transition: transform 0.2s var(--st-ease); }
.st-benefits__more[open] summary::after { transform: rotate(45deg); }
.st-benefits__more p { margin: 0.5rem auto 0; max-width: 30ch; color: var(--st-muted); line-height: 1.55; text-wrap: pretty; }

/* ── Reference-store sections (ThemeV3.md J6) ───────────── */
/* Range chooser */
.st-range__grid { display: grid; gap: var(--st-grid-gap); grid-auto-flow: column; grid-auto-columns: minmax(15rem, 78%); overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-block: 0.75rem; }
.st-range__grid::-webkit-scrollbar { display: none; }
@media (min-width: 750px) { .st-range__grid { grid-auto-flow: row; grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr)); overflow: visible; } }
.st-range__card {
  position: relative; display: grid; align-content: start; gap: 1rem; padding: 1rem; scroll-snap-align: start;
  border: 1px solid var(--st-border); border-radius: var(--st-card-radius, var(--st-radius-lg)); background: var(--st-surface, var(--st-bg));
  color: var(--st-ink); text-decoration: none; transition: border-color 0.2s, transform 0.3s var(--st-ease);
}
.st-range__card:hover { border-color: var(--st-ink); }
.st-range__card.is-featured { border-color: var(--st-accent); box-shadow: 0 0 0 1px var(--st-accent); }
.st-range__badge { position: absolute; z-index: 1; top: 1.6rem; inset-inline-start: 1.6rem; padding: 0.25rem 0.6rem; border-radius: var(--st-radius-pill); background: var(--st-accent); color: var(--st-on-accent); font-size: var(--st-caption); font-weight: 700; letter-spacing: 0.04em; }
.st-range__photo { border-radius: var(--st-radius-md); }
.st-range__body { display: grid; gap: 0.35rem; }
.st-range__title { font-family: var(--st-heading-font, inherit); font-size: var(--st-h4); line-height: 1.15; }
.st-range__for { color: var(--st-muted); font-size: var(--st-body-sm); }
.st-range__spec { justify-self: start; margin-top: 0.25rem; padding: 0.2rem 0.55rem; border-radius: var(--st-radius-pill); background: color-mix(in srgb, var(--st-ink) 7%, transparent); font-size: var(--st-body-sm); font-weight: 600; }
.st-range__price { font-weight: 600; margin-top: 0.25rem; }
.st-range__cta { margin-top: 0.4rem; }

/* Us vs them */
.st-vs__table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: var(--st-body); }
.st-vs__table th, .st-vs__table td { padding: 0.95rem 0.75rem; border-bottom: 1px solid var(--st-border); text-align: center; }
.st-vs__table tbody th { text-align: start; font-weight: 500; color: var(--st-ink); }
.st-vs__table thead th { font-family: var(--st-heading-font, inherit); font-weight: 600; font-size: var(--st-body-lg); border-bottom-color: transparent; }
.st-vs__us { background: color-mix(in srgb, var(--st-accent) 9%, transparent); }
.st-vs__table thead .st-vs__us { border-radius: var(--st-radius-lg) var(--st-radius-lg) 0 0; color: var(--st-accent-text, var(--st-ink)); }
.st-vs__table tbody tr:last-child .st-vs__us { border-radius: 0 0 var(--st-radius-lg) var(--st-radius-lg); }
.st-vs__table td:not(.st-vs__us), .st-vs__table thead th:last-child { color: var(--st-muted); width: 24%; }
.st-vs__us { width: 24%; }
.st-vs__mark { display: inline-grid; place-items: center; width: 1.6rem; height: 1.6rem; border-radius: 50%; font-size: 0.85rem; font-weight: 700; }
.st-vs__mark--yes { background: var(--st-accent); color: var(--st-on-accent); }
.st-vs__mark--no { color: var(--st-muted); background: color-mix(in srgb, var(--st-ink) 7%, transparent); }
.st-vs__text { font-weight: 600; font-size: var(--st-body-sm); }

/* Finder quiz */
.st-quiz__card { border: 1px solid var(--st-border); border-radius: var(--st-card-radius, var(--st-radius-xl)); background: var(--st-surface, var(--st-bg)); padding: clamp(1.25rem, 4vw, 2.5rem); display: grid; gap: 1.25rem; }
.st-quiz__progress { margin: 0; text-align: center; font-size: var(--st-caption); letter-spacing: 0.12em; color: var(--st-muted); }
.st-quiz__step { border: 0; margin: 0; padding: 0; display: grid; gap: 1.1rem; }
.st-quiz__question { font-family: var(--st-heading-font, inherit); font-size: var(--st-h3); text-align: center; margin: 0 auto; padding: 0; text-wrap: balance; }
.st-quiz__answers { display: grid; gap: 0.6rem; grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr)); }
.st-quiz__answer { padding: 0.95rem 1rem; border: 1px solid var(--st-border); border-radius: var(--st-btn-radius, var(--st-radius-md)); background: var(--st-bg); color: var(--st-ink); font: inherit; font-weight: 600; cursor: pointer; transition: border-color 0.2s, background 0.2s, transform 0.2s var(--st-ease); }
.st-quiz__answer:hover, .st-quiz__answer:focus-visible { border-color: var(--st-ink); transform: translateY(-1px); }
.st-quiz:not(.is-interactive) .st-quiz__step { display: none; }
.st-quiz__results { display: grid; gap: 1.5rem; }
.st-quiz__result { display: grid; gap: 0.6rem; text-align: center; justify-items: center; }
.st-quiz__photo { border-radius: var(--st-radius-md); max-width: 28rem; }
.st-quiz__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-top: 0.5rem; }
.st-quiz__restart { border: 0; background: none; color: var(--st-muted); font: inherit; text-decoration: underline; cursor: pointer; }
@media (prefers-reduced-motion: no-preference) {
  .st-quiz.is-interactive .st-quiz__step:not([hidden]), .st-quiz.is-interactive .st-quiz__result:not([hidden]) { animation: st-hero-rise 0.45s var(--st-ease) both; }
}

/* Perks band */
.st-perks__inner { display: grid; gap: clamp(1.5rem, 4vw, 4rem); align-items: center; }
@media (min-width: 750px) {
  .st-perks.has-photo .st-perks__inner { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); }
  .st-perks.is-flipped .st-perks__photo { order: -1; }
}
.st-perks__copy { display: grid; gap: 1.1rem; align-content: center; }
.st-perks__list { list-style: none; margin: 0.25rem 0; padding: 0; display: grid; gap: 0.85rem; }
.st-perks__item { display: grid; grid-template-columns: 2.25rem minmax(0, 1fr); gap: 0.75rem; align-items: start; }
.st-perks__mark { display: inline-grid; place-items: center; width: 2.25rem; height: 2.25rem; border-radius: 50%; background: color-mix(in srgb, var(--st-accent) 14%, transparent); color: var(--st-accent-text, var(--st-accent)); font-weight: 700; }
.st-perks__detail { display: block; color: var(--st-muted); font-size: var(--st-body-sm); margin-top: 0.1rem; }
.st-perks__photo { border-radius: var(--st-card-radius, var(--st-radius-lg)); aspect-ratio: 4 / 5; max-height: min(72vh, 34rem); }
@media (max-width: 749px) { .st-perks__photo { aspect-ratio: 4 / 3; } }

/* Expert endorsements */
.st-experts__grid { display: grid; gap: var(--st-grid-gap); }
@media (min-width: 750px) { .st-experts__grid { grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr)); } }
.st-experts__card { margin: 0; display: grid; gap: 1rem; align-content: start; padding: clamp(1.25rem, 3vw, 2rem); border-radius: var(--st-card-radius, var(--st-radius-lg)); background: var(--st-surface, color-mix(in srgb, var(--st-ink) 4%, var(--st-bg))); }
.st-experts__photo { width: 4.5rem; height: 4.5rem; border-radius: 50%; overflow: hidden; }
.st-experts__photo img { width: 100%; height: 100%; object-fit: cover; }
.st-experts__quote { margin: 0; font-family: var(--st-heading-font, inherit); font-size: var(--st-body-lg); line-height: 1.45; color: var(--st-ink); text-wrap: pretty; }
.st-experts__card figcaption { display: grid; gap: 0.15rem; font-size: var(--st-body-sm); }
.st-experts__card figcaption span { color: var(--st-muted); }

/* Services */
.st-services__grid { display: grid; gap: var(--st-grid-gap); }
@media (min-width: 750px) { .st-services__grid { grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr)); } }
.st-services__card { display: grid; gap: 0.75rem; align-content: start; }
.st-services__photo { border-radius: var(--st-card-radius, var(--st-radius-lg)); margin-bottom: 0.25rem; }
.st-services__cta { justify-self: start; margin-top: 0.25rem; }

/* Photo marquee */
.st-pmarquee__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.st-pmarquee__head .st-section-head { margin-bottom: var(--st-head-gap); }
.st-pmarquee__toggle { margin-bottom: var(--st-head-gap); margin-inline-start: auto; padding: 0.4rem 0.9rem; border: 1px solid var(--st-border); border-radius: var(--st-radius-pill); background: none; color: var(--st-ink); font: inherit; font-size: var(--st-body-sm); cursor: pointer; }
.st-pmarquee__strip { overflow: hidden; }
.st-pmarquee__track { display: flex; width: max-content; }
.st-pmarquee__run { display: flex; gap: var(--st-grid-gap); padding-inline-end: var(--st-grid-gap); }
.st-pmarquee__item { display: block; width: clamp(11rem, 22vw, 18rem); }
.st-pmarquee__item .st-ratio { border-radius: var(--st-card-radius, var(--st-radius-lg)); }
@media (prefers-reduced-motion: no-preference) {
  .st-pmarquee--slow .st-pmarquee__track { animation: st-press-scroll 70s linear infinite; }
  .st-pmarquee--medium .st-pmarquee__track { animation: st-press-scroll 42s linear infinite; }
  .st-pmarquee__track:hover, .st-pmarquee__track.is-paused { animation-play-state: paused; }
}
@media (prefers-reduced-motion: reduce) { .st-pmarquee__toggle { display: none; } .st-pmarquee__strip { overflow-x: auto; } }

/* Shop by price (J6.7) */
.st-prices__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.st-prices__pill {
  display: grid; justify-items: center; gap: 0.1rem; min-width: 9.5rem; padding: 1.1rem 1.5rem;
  border: 1px solid var(--st-border); border-radius: var(--st-card-radius, var(--st-radius-lg)); color: var(--st-ink); text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.25s var(--st-ease);
}
.st-prices__pill:hover { border-color: var(--st-ink); transform: translateY(-2px); }
.st-prices__under { font-size: var(--st-caption); letter-spacing: 0.12em; text-transform: uppercase; color: var(--st-muted); }
.st-prices__amount { font-family: var(--st-heading-font, inherit); font-size: var(--st-h4); }

/* Stats source line (J6.8) */
.st-stats__source { margin: 1.25rem auto 0; max-width: 40rem; text-align: center; font-size: var(--st-caption); color: var(--st-muted); }

/* ── Motion (ThemeV3.md J6.12) ─────────────────────────── */
/* Parallax: a section's photos drift against the scroll, CSS only. */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .st-parallax .st-ratio > img, .st-parallax .st-ratio > picture > img,
    .st-parallax .st-hero-v3__img, .st-parallax .st-hero-product__img, .st-parallax .st-bento__img {
      scale: 1.14; animation: st-parallax linear both; animation-timeline: view(); animation-range: cover;
    }
  }
}
@keyframes st-parallax { from { translate: 0 -6%; } to { translate: 0 6%; } }

/* The statement's rotating value line. */
.st-bigline__rotor { position: relative; display: grid; margin: 0; min-height: 1.4em; font-family: var(--st-heading-font, inherit); font-size: clamp(1.25rem, 2.6vw, 2rem); color: var(--st-accent-text, var(--st-accent)); }
.st-bigline--center .st-bigline__rotor { justify-items: center; }
.st-bigline__turn { grid-area: 1 / 1; opacity: 0; transform: translateY(0.4em); transition: opacity 0.45s var(--st-ease), transform 0.45s var(--st-ease); }
.st-bigline__turn.is-active { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .st-bigline__turn { transition: none; } }
