@font-face {
  font-family: "Fraunces";
  src: url("assets/approved/runtime-fonts/supplied-27-fraunces-variable.woff2") format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("assets/approved/runtime-fonts/supplied-28-fraunces-italic-variable.woff2") format("woff2");
  font-weight: 300 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/approved/runtime-fonts/supplied-29-dm-sans-variable.woff2") format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/approved/runtime-fonts/supplied-30-dm-sans-italic-variable.woff2") format("woff2");
  font-weight: 300 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --bg: #fff7f2;
  --surface: #fffcf9;
  --surface-strong: #fff;
  --text: #49322c;
  --muted: #6f5a52;
  --soft: #f5e4db;
  --soft-2: #f9eee8;
  --accent: #e7a8b7;
  --cta: #a54060;
  --cta-2: #c43f69;
  --rose: #bf6a79;
  --cocoa: #6f4032;
  --selection: #dcc3b1;
  --border: #e8d4cb;
  --shadow: 0 22px 60px rgba(87, 52, 39, 0.12);
  --radius: 8px;
  --max: 1440px;
  --gutter: clamp(20px, 4vw, 64px);
}

* {
  box-sizing: border-box;
}

::selection {
  background: var(--selection);
  color: #3f2923;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  overflow-y: scroll;
  background: var(--bg);
}

html.sheet-open,
html.cart-open {
  overflow: hidden;
  scrollbar-gutter: auto;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.sheet-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  appearance: none;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

.site-page {
  min-height: 100vh;
  overflow-x: clip;
}

.demo-notice-bar {
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 50px;
  height: auto;
  overflow: clip;
  border-top: 2px solid #4f7957;
  border-bottom: 2px solid #4f7957;
  background: #e1efdf;
  color: #315d3b;
}

.demo-notice-bar { box-shadow: 0 1px 0 #4f7957; }

.demo-notice-lilypad-link {
  position: absolute;
  top: 50%;
  left: 8px;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: background .18s, transform .18s;
}

.demo-notice-lilypad-link img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.demo-notice-lilypad-link:hover,
.demo-notice-lilypad-link:focus-visible {
  background: rgba(49, 93, 59, .12);
  transform: translateY(-50%) scale(1.06);
}

.demo-notice-window {
  width: 100%;
  overflow: hidden;
  padding-left: 54px;
}

.demo-notice-track {
  display: flex;
  width: 100%;
  justify-content: center;
}

.demo-notice-group {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 8px clamp(14px, 2.5vw, 40px);
  padding: 9px 18px;
  font-size: clamp(9px, 0.72vw, 11px);
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.demo-notice-divider {
  display: block;
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

@keyframes demo-notice-message-in {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .demo-notice-bar {
    height: 50px;
  }

  .demo-notice-group {
    flex-wrap: nowrap;
    min-height: 46px;
  }

  .demo-notice-message {
    display: none;
  }

  .demo-notice-message.is-active {
    display: inline-block;
    animation: demo-notice-message-in 360ms ease both;
  }

  .demo-notice-divider {
    display: none;
  }
}

.demo-notice-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 252, 249, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(232, 212, 203, 0.7);
  box-shadow: 0 14px 34px rgba(87, 52, 39, 0.05);
}

.nav-shell {
  width: min(var(--max), 100%);
  margin: 0 auto;
  min-height: 74px;
  padding: 10px var(--gutter);
  display: grid;
  grid-template-columns: minmax(150px, 0.55fr) auto minmax(300px, 0.72fr);
  gap: clamp(20px, 3vw, 52px);
  align-items: center;
}

.brand-link {
  display: inline-flex;
  align-items: center;
}

.brand-link img {
  width: 108px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 38px);
  padding: 0 22px;
  min-height: 42px;
  border-left: 1px solid rgba(232, 212, 203, 0.78);
  border-right: 1px solid rgba(232, 212, 203, 0.78);
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}

.nav-links a {
  position: relative;
  padding: 9px 0;
  border-bottom: 0;
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-links a[aria-current="page"]::after,
.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.nav-promo {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 15px;
  border-radius: 8px;
  border: 1px solid rgba(232, 212, 203, 0.78);
  background: rgba(255, 247, 242, 0.62);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-promo:hover,
.nav-promo:focus-visible {
  transform: translateY(-1px);
  background: #fff4ee;
  color: var(--text);
}

.icon-action,
.menu-toggle,
.sheet-close {
  border: 1px solid rgba(232, 212, 203, 0.92);
  background: rgba(255, 252, 249, 0.7);
  color: var(--text);
  min-width: 44px;
  min-height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.icon-action {
  position: relative;
  gap: 0;
  font-size: 13px;
  font-weight: 700;
}

.icon-action:hover,
.icon-action:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-1px);
  background: #fff6f1;
  border-color: rgba(165, 64, 96, 0.32);
  box-shadow: 0 12px 24px rgba(87, 52, 39, 0.08);
}

.action-icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.search-action .action-icon {
  border: 1.8px solid currentColor;
  border-radius: 999px;
  transform: translate(-1px, -1px);
}

.search-action .action-icon::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  right: -6px;
  bottom: -3px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(45deg);
}

.bag-action .action-icon {
  border: 1.8px solid currentColor;
  border-radius: 5px 5px 7px 7px;
  transform: translateY(2px);
}

.bag-action .action-icon::before {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: -8px;
  height: 9px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.bag-count {
  position: absolute;
  right: -6px;
  top: -6px;
  display: inline-grid;
  place-items: center;
  min-width: 19px;
  height: 19px;
  border: 2px solid var(--surface);
  border-radius: 999px;
  background: var(--cta);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
}

.section {
  position: relative;
  padding: clamp(58px, 8vw, 118px) var(--gutter);
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.eyebrow {
  display: none;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 0.99;
  margin: 0;
  letter-spacing: 0;
  font-variation-settings: "SOFT" 55, "WONK" 0, "opsz" 48;
  text-wrap: balance;
}

h1 {
  font-size: clamp(54px, 9vw, 142px);
  font-weight: 520;
}

h2 {
  font-size: clamp(42px, 6vw, 92px);
  font-weight: 480;
}

h3 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 520;
}

p {
  margin: 0;
}

.lead {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  max-width: 720px;
}

.btn {
  border: 1px solid transparent;
  border-radius: 8px;
  min-height: 58px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--cta-2), var(--cta));
  box-shadow: 0 14px 28px rgba(165, 64, 96, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  white-space: nowrap;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(165, 64, 96, 0.24);
}

.btn.secondary {
  color: var(--text);
  background: rgba(255, 252, 249, 0.72);
  border-color: #e6bbb5;
  box-shadow: none;
}

.btn.link {
  min-height: 44px;
  padding: 0 8px;
  border: 0;
  background: transparent;
  color: var(--cta);
  box-shadow: none;
  text-decoration: underline;
  text-underline-offset: 7px;
}

.hero {
  min-height: calc(100dvh - 74px);
  padding-top: clamp(18px, 3vw, 34px);
  padding-bottom: clamp(34px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(255, 252, 249, 0.9) 0%, rgba(255, 247, 242, 0.82) 43%, rgba(246, 222, 214, 0.62) 100%),
    radial-gradient(circle at 82% 26%, rgba(231, 168, 183, 0.28), transparent 26%),
    radial-gradient(circle at 20% 74%, rgba(255, 255, 255, 0.92), transparent 34%),
    url("assets/approved/runtime-webp/supplied-2-blush-texture-warm-fabric-towel.webp") center / cover no-repeat,
    var(--bg);
  overflow: hidden;
}

.trust-strip {
  display: flex;
  width: min(var(--max), 100%);
  margin: 0 auto clamp(14px, 2vw, 22px);
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(232, 212, 203, 0.78);
  border-radius: 999px;
  background: rgba(255, 252, 249, 0.66);
  backdrop-filter: blur(10px);
}

.trust-strip span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 0;
  background: var(--cta);
  opacity: 0.58;
}

.hero-wordmark {
  display: grid;
  position: absolute;
  top: clamp(92px, 9vw, 142px);
  right: clamp(46px, 9vw, 150px);
  width: min(45vw, 640px);
  margin: 0;
  padding: 0;
  justify-items: end;
  gap: 0;
  pointer-events: none;
  z-index: 2;
}

.fluffy-word {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(2px, 0.5vw, 8px);
  width: 100%;
  min-width: 330px;
  filter: drop-shadow(0 12px 22px rgba(87, 52, 39, 0.09));
}

.fluffy-word .letter {
  width: 20%;
  max-height: 148px;
  object-fit: contain;
  opacity: 0;
  transform: translateY(18px) scale(0.92) rotate(var(--tilt, 0deg));
  animation: fluffy-settle 760ms cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.letter-b { --tilt: -2deg; animation-delay: 40ms; }
.letter-l { --tilt: 1deg; animation-delay: 110ms; }
.letter-u { --tilt: -1deg; animation-delay: 180ms; }
.letter-s { --tilt: 1.5deg; animation-delay: 250ms; }
.letter-h { --tilt: -1deg; animation-delay: 320ms; }

.hero-swipe {
  width: 95%;
  min-width: 300px;
  margin-top: -22px;
  opacity: 1;
  transform: scaleX(0.84) translateY(-4px);
  transform-origin: 45% 50%;
  animation: swipe-settle 900ms cubic-bezier(0.19, 1, 0.22, 1) 360ms forwards;
}

@keyframes fluffy-settle {
  0% {
    opacity: 0;
    transform: translateY(26px) scale(0.9) rotate(var(--tilt, 0deg));
  }

  70% {
    opacity: 1;
    transform: translateY(-5px) scale(1.035) rotate(var(--tilt, 0deg));
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(var(--tilt, 0deg));
  }
}

@keyframes swipe-settle {
  to {
    opacity: 1;
    transform: scaleX(1) translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fluffy-word .letter,
  .hero-swipe {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.hero-stage {
  width: min(var(--max), 100%);
  margin: 0 auto;
  min-height: clamp(500px, 57vh, 630px);
  display: grid;
  grid-template-columns: minmax(370px, 0.9fr) minmax(430px, 1.18fr) minmax(230px, 0.56fr);
  gap: clamp(20px, 3vw, 44px);
  align-items: end;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-bottom: clamp(24px, 5vw, 64px);
}

.hero-copy h1 {
  font-size: clamp(54px, 5.4vw, 88px);
  max-width: 640px;
  font-weight: 470;
  line-height: 0.96;
}

.hero-copy h1 em {
  font-style: italic;
  font-weight: 460;
}

.hero-copy p {
  color: var(--muted);
  margin: 22px 0 28px;
  max-width: 460px;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-left: 1px solid rgba(165, 64, 96, 0.28);
  background: rgba(255, 252, 249, 0.38);
}

.product-stage {
  position: relative;
  min-height: clamp(350px, 42vw, 540px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  isolation: isolate;
  overflow: visible;
}

.product-stage::before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: 22px;
  height: clamp(132px, 16vw, 220px);
  z-index: 0;
  border: 1px solid rgba(232, 212, 203, 0.86);
  border-radius: 28px 28px 18px 18px;
  background:
    linear-gradient(180deg, rgba(255, 252, 249, 0.92), rgba(244, 220, 208, 0.72)),
    url("assets/approved/runtime-webp/supplied-5-blush-texture-soft-product-tray-surface.webp") center / cover;
  box-shadow: 0 28px 60px rgba(87, 52, 39, 0.14);
}

.product-stage::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: clamp(104px, 12vw, 176px);
  height: clamp(82px, 9vw, 126px);
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 48% 60%, rgba(255, 252, 249, 0.92), transparent 55%),
    url("assets/approved/runtime-webp/supplied-6-blush-texture-cream-smear-macro.webp") center / cover;
  opacity: 0.42;
  filter: blur(1px);
}

.product-stage .stage-backdrop {
  position: absolute;
  z-index: 0;
  inset: auto 0 54px 0;
  width: 100%;
  height: clamp(160px, 17vw, 230px);
  max-width: none;
  object-fit: cover;
  border-radius: 24px;
  filter: saturate(0.9) contrast(0.95);
  opacity: 0.36;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0, #000 18%, #000 82%, transparent 100%),
    linear-gradient(180deg, transparent 0, #000 24%, #000 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%),
    linear-gradient(180deg, transparent 0, #000 16%, #000 93%, transparent 100%);
  mask-composite: intersect;
}

.product-stage > img:not(.stage-backdrop) {
  position: relative;
  z-index: 1;
  width: min(108%, 760px);
  max-width: none;
  margin-bottom: clamp(18px, 3vw, 36px);
  filter: drop-shadow(0 26px 28px rgba(87, 52, 39, 0.19));
}

.offer-card {
  position: relative;
  z-index: 2;
  align-self: end;
  margin-bottom: clamp(46px, 6vw, 96px);
  padding: 24px 24px 22px;
  border: 1px solid rgba(197, 63, 105, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 252, 249, 0.94), rgba(255, 245, 242, 0.9)),
    url("assets/approved/runtime-webp/supplied-4-blush-texture-blush-pink-label-paper.webp") center / cover;
  box-shadow: 0 22px 50px rgba(87, 52, 39, 0.12);
  border-radius: 8px;
  text-align: left;
}

.offer-card .offer-title {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.offer-card strong {
  display: block;
  margin: 14px 0 6px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(42px, 3.8vw, 58px);
  line-height: 0.95;
  font-weight: 560;
}

.offer-card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.offer-card code {
  color: var(--cta);
  font-family: "DM Sans", Arial, sans-serif;
  font-weight: 800;
}

.offer-card .btn {
  width: 100%;
}

.offer-note {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 28px;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.section-head p {
  margin-top: 18px;
}

#bestsellers .section-head .lead {
  max-width: none;
}

.product-row,
.product-grid {
  display: grid;
  gap: 26px;
}

.product-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.product-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.product-card {
  border: 1px solid rgba(232, 212, 203, 0.78);
  border-radius: 14px;
  background: rgba(255, 252, 249, 0.88);
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(87, 52, 39, 0.08);
  display: grid;
  grid-template-rows: minmax(340px, 1fr) auto;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(197, 128, 132, 0.48);
  box-shadow: 0 24px 52px rgba(87, 52, 39, 0.13);
}

.product-card .media {
  position: relative;
  min-height: 340px;
  background:
    radial-gradient(circle at 50% 80%, rgba(245, 210, 196, 0.68), transparent 24%),
    linear-gradient(rgba(255, 252, 249, 0.6), rgba(255, 247, 242, 0.18)),
    url("assets/approved/runtime-webp/supplied-5-blush-texture-soft-product-tray-surface.webp") center / cover;
  display: grid;
  place-items: end center;
  padding: 24px 22px 20px;
  border: 0;
  color: inherit;
  overflow: hidden;
}

.product-card .media::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  bottom: 18px;
  height: 76px;
  border-radius: 20px 20px 12px 12px;
  border: 1px solid rgba(232, 212, 203, 0.76);
  background:
    linear-gradient(180deg, rgba(255, 252, 249, 0.82), rgba(236, 207, 193, 0.7)),
    url("assets/approved/runtime-webp/supplied-2-blush-texture-warm-fabric-towel.webp") center / cover;
  box-shadow: 0 18px 32px rgba(87, 52, 39, 0.1);
}

.product-card .media img {
  position: relative;
  z-index: 1;
  height: 270px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 22px rgba(87, 52, 39, 0.16));
  transition: transform 220ms ease;
}

.product-card:nth-child(2) .media img {
  height: 258px;
}

.product-card:nth-child(3) .media img {
  height: 250px;
}

.product-card:nth-child(4) .media img {
  height: 246px;
}

.product-card:hover .media img,
.product-card:focus-within .media img {
  transform: translateY(-4px) scale(1.015);
}

.product-card.compact .media {
  min-height: 310px;
}

.product-card.compact .media img {
  height: 250px;
}

.product-card .content {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-content: start;
}

.product-card h3 {
  font-size: clamp(24px, 1.8vw, 32px);
  line-height: 1.05;
}

.product-card p {
  color: var(--muted);
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.45;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.card-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 8px;
  background: rgba(248, 232, 220, 0.76);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.product-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
}

.price {
  font-family: "Fraunces", Georgia, serif;
  font-size: 28px;
  font-weight: 560;
}

.product-card-qty {
  display: inline-grid;
  grid-template-columns: 40px 34px 40px;
  align-items: center;
  justify-content: end;
  min-width: 106px;
  border: 1px solid rgba(165, 64, 96, 0.22);
  border-radius: 999px;
  background: rgba(255, 247, 242, 0.78);
  overflow: hidden;
}

.product-card-qty button {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--cta);
  font-size: 22px;
  font-weight: 760;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.product-card-qty button:hover,
.product-card-qty button:focus-visible {
  background: var(--cta);
  color: #fff7f2;
}

.product-card-qty output {
  color: var(--text);
  font: 900 14px/1 "DM Sans", Arial, sans-serif;
  text-align: center;
}

.add-btn,
.plus-btn {
  border: 0;
  background: var(--cta-2);
  color: #fff;
  border-radius: 8px;
  min-height: 48px;
  padding: 0 28px;
  font-weight: 800;
}

.plus-btn {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(165, 64, 96, 0.24);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 252, 249, 0.92), rgba(248, 232, 220, 0.78));
  color: var(--cta);
  box-shadow: none;
}

.plus-btn span,
.plus-btn::before,
.plus-btn::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.plus-btn::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.plus-btn:hover,
.plus-btn:focus-visible {
  transform: translateY(-2px) scale(1.03);
  background:
    linear-gradient(135deg, var(--cta-2), var(--cta));
  color: #fff;
}

.soft-shelf-section {
  padding-top: clamp(38px, 3.4vw, 48px);
  padding-bottom: clamp(62px, 7vw, 108px);
  background:
    linear-gradient(180deg, rgba(255, 247, 242, 0.92), rgba(255, 252, 249, 0.68));
}

.soft-shelf-inner {
  width: min(1688px, 100%);
}

.soft-shelf-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: clamp(22px, 4vw, 64px);
  margin-bottom: clamp(30px, 4vw, 44px);
}

.soft-shelf-head h2 {
  max-width: 840px;
  font-size: clamp(50px, 4.6vw, 76px);
  font-weight: 500;
  line-height: 0.96;
}

.soft-shelf-head .lead {
  margin-top: 18px;
  max-width: 760px;
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.42;
}

.soft-shelf-cta {
  justify-self: end;
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 0 10px;
  border-bottom: 1px solid rgba(165, 64, 96, 0.48);
  color: var(--cta);
  font-size: clamp(16px, 1.15vw, 19px);
  font-weight: 800;
  line-height: 1.1;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.soft-shelf-cta:hover,
.soft-shelf-cta:focus-visible {
  transform: translateX(2px);
  border-color: rgba(165, 64, 96, 0.82);
  color: var(--cta-2);
}

.soft-shelf-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(420px, 1fr);
  align-items: stretch;
  gap: clamp(28px, 3vw, 42px);
}

.soft-shelf-hero-image {
  aspect-ratio: 1.42 / 1;
  min-height: clamp(520px, 43vw, 676px);
  margin: 0;
  border: 1px solid rgba(232, 212, 203, 0.9);
  border-radius: 8px;
  background: #f8eee8;
  overflow: hidden;
}

.soft-shelf-hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.soft-shelf-list {
  display: grid;
  gap: 16px;
}

.soft-shelf-item {
  display: grid;
  grid-template-columns: clamp(138px, 10.2vw, 174px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  min-height: 155px;
  padding: 6px 24px 6px 16px;
  border: 1px solid rgba(232, 212, 203, 0.92);
  border-radius: 8px;
  background: rgba(255, 252, 249, 0.58);
  box-shadow: 0 14px 34px rgba(87, 52, 39, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.soft-shelf-item:hover,
.soft-shelf-item:focus-within {
  transform: translateY(-2px);
  border-color: rgba(197, 128, 132, 0.58);
  background: rgba(255, 252, 249, 0.82);
  box-shadow: 0 18px 42px rgba(87, 52, 39, 0.08);
}

.soft-shelf-thumb {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 7px;
  background: #f7ece5;
  overflow: hidden;
  cursor: pointer;
}

.soft-shelf-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease;
}

.soft-shelf-item:hover .soft-shelf-thumb img,
.soft-shelf-item:focus-within .soft-shelf-thumb img {
  transform: scale(1.025);
}

.soft-shelf-copy {
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.soft-shelf-copy h3 {
  font-size: clamp(28px, 2.15vw, 36px);
  font-weight: 520;
  line-height: 0.98;
}

.soft-shelf-copy p {
  margin: 12px 0 20px;
  color: var(--muted);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.35;
}

.soft-shelf-buy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
}

.soft-shelf-copy strong {
  display: block;
  color: var(--text);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(24px, 1.85vw, 30px);
  font-weight: 540;
  line-height: 1;
}

.soft-shelf-add {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0 0 4px;
  border: 1px solid rgba(165, 64, 96, 0.24);
  border-radius: 8px;
  background: rgba(255, 247, 242, 0.76);
  color: var(--cta);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.soft-shelf-add:hover,
.soft-shelf-add:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(165, 64, 96, 0.42);
  background: var(--cta);
  color: #fff7f2;
}

@media (max-width: 1180px) {
  .soft-shelf-showcase {
    grid-template-columns: 1fr;
  }

  .soft-shelf-hero-image {
    min-height: 0;
  }

  .soft-shelf-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .soft-shelf-item {
    grid-template-columns: minmax(118px, 34%) minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .soft-shelf-head {
    grid-template-columns: 1fr;
  }

  .soft-shelf-head h2 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .soft-shelf-head .lead {
    font-size: 17px;
  }

  .soft-shelf-cta {
    justify-self: start;
    align-self: start;
  }

  .soft-shelf-list {
    grid-template-columns: 1fr;
  }

  .soft-shelf-item {
    grid-template-columns: minmax(104px, 32%) minmax(0, 1fr);
    gap: 16px;
    min-height: 128px;
    padding: 6px 12px 6px 6px;
  }

  .soft-shelf-copy h3 {
    font-size: clamp(24px, 7vw, 30px);
  }

  .soft-shelf-copy p {
    margin: 9px 0 16px;
    font-size: 14px;
  }

  .soft-shelf-copy strong {
    font-size: 24px;
  }

  .soft-shelf-add {
    width: 42px;
    height: 42px;
    font-size: 30px;
  }
}

@media (max-width: 520px) {
  .soft-shelf-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .soft-shelf-showcase {
    gap: 18px;
  }

  .soft-shelf-hero-image {
    aspect-ratio: 1 / 0.9;
  }

  .soft-shelf-item {
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 12px;
  }

  .soft-shelf-copy p {
    margin-bottom: 14px;
  }

  .soft-shelf-add {
    width: 38px;
    height: 38px;
    font-size: 28px;
  }
}

.routine-teaser {
  background:
    linear-gradient(180deg, rgba(255, 252, 249, 0.12), rgba(245, 228, 219, 0.72)),
    radial-gradient(circle at 72% 42%, rgba(231, 168, 183, 0.16), transparent 30%);
}

.routine-flow {
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: clamp(28px, 5vw, 74px);
  padding: clamp(14px, 2vw, 30px) 0;
}

.routine-copy {
  display: grid;
  gap: 24px;
  align-content: center;
}

.routine-copy h2 {
  font-size: clamp(48px, 5.5vw, 86px);
  max-width: 760px;
}

.routine-copy .btn {
  justify-self: start;
}

.routine-step-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(22px, 4vw, 84px);
}

.routine-step-preview a {
  min-height: 108px;
  padding: 22px;
  border: 1px solid rgba(232, 212, 203, 0.82);
  border-radius: 12px;
  background: rgba(255, 252, 249, 0.64);
  display: grid;
  align-content: center;
  gap: 10px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.routine-step-preview a:hover,
.routine-step-preview a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(165, 64, 96, 0.28);
  background: rgba(255, 252, 249, 0.9);
  box-shadow: 0 14px 28px rgba(87, 52, 39, 0.08);
}

.routine-step-preview span {
  color: var(--cta);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.routine-step-preview strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.04;
  font-weight: 520;
}

.routine-visual {
  position: relative;
  min-height: clamp(470px, 48vw, 640px);
  border: 1px solid rgba(232, 212, 203, 0.82);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 58px rgba(87, 52, 39, 0.11);
  background: #f7e9df;
}

.routine-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(0.98);
}

.routine-product {
  position: absolute;
  z-index: 2;
  object-fit: contain;
  filter: drop-shadow(0 22px 22px rgba(87, 52, 39, 0.18));
  pointer-events: none;
}

.routine-product-oil {
  width: min(23%, 150px);
  left: 47%;
  bottom: 22%;
  transform: rotate(-4deg);
}

.routine-product-moisturiser {
  width: min(31%, 230px);
  left: 58%;
  bottom: 14%;
  transform: rotate(3deg);
}

.routine-choices {
  position: absolute;
  z-index: 3;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.routine-path {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 178px;
  padding: 20px 22px 22px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-left: 0;
  border-radius: 8px;
  background: rgba(255, 252, 249, 0.76);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(87, 52, 39, 0.1);
}

.routine-path::before {
  display: none;
}

.routine-path span {
  color: var(--cta);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
}

.routine-path h3 {
  margin: 12px 0 10px;
  font-size: 30px;
}

.routine-path p {
  color: var(--muted);
}

.choice-card {
  border: 1px solid var(--border);
  background: rgba(255, 252, 249, 0.82);
  border-radius: 8px;
  padding: 28px;
}

.choice-card span {
  color: var(--cta);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
}

.choice-card h3 {
  margin: 18px 0 14px;
  font-size: 34px;
}

.texture-proof {
  background:
    linear-gradient(90deg, rgba(255, 252, 249, 0.98) 0%, rgba(255, 252, 249, 0.94) 34%, rgba(255, 247, 242, 0.82) 100%),
    url("assets/approved/runtime-webp/supplied-1-blush-texture-glass-oil-refraction.webp") center / cover no-repeat,
    var(--surface);
}

.texture-proof-inner {
  display: grid;
  gap: clamp(28px, 4vw, 52px);
}

.texture-proof-copy {
  max-width: 820px;
  display: grid;
  gap: 18px;
}

.texture-proof-copy h2 {
  font-size: clamp(50px, 5.7vw, 92px);
  max-width: 760px;
}

.texture-proof-copy .btn {
  justify-self: start;
  margin-top: 6px;
}

.texture-note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 24px);
}

.texture-note-card {
  min-height: 430px;
  padding: 26px;
  border: 1px solid rgba(232, 212, 203, 0.82);
  border-radius: 14px;
  background: rgba(255, 252, 249, 0.78);
  box-shadow: 0 18px 40px rgba(87, 52, 39, 0.08);
  display: grid;
  align-content: start;
  gap: 18px;
}

.texture-note-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
}

.texture-note-card h3 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
}

.texture-note-card p {
  color: var(--muted);
  max-width: 360px;
}

.center-head {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 34px;
}

.mosaic {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  display: grid;
  grid-template-columns: 0.85fr 1.9fr 0.9fr;
  gap: 10px;
  background: rgba(255, 252, 249, 0.72);
}

.mosaic img,
.texture-tile img,
.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mosaic-side {
  display: grid;
  gap: 10px;
}

.texture-tile {
  min-height: 178px;
  border-radius: 7px;
  overflow: hidden;
  position: relative;
}

.texture-tile .tile-caption {
  position: absolute;
  inset: auto 0 0 0;
  background: rgba(255, 252, 249, 0.82);
  padding: 16px 18px;
  color: var(--muted);
}

.texture-tile .tile-caption strong {
  display: block;
  color: var(--text);
}

.mosaic-main {
  min-height: 420px;
  border-radius: 7px;
  overflow: hidden;
  background: var(--soft);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.proof-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 26px;
  background: rgba(255, 252, 249, 0.78);
  min-height: 178px;
  display: grid;
  grid-template-columns: 1fr minmax(130px, 0.8fr);
  gap: 20px;
  align-items: center;
}

.proof-card h3 {
  font-size: 30px;
  line-height: 1.02;
}

.proof-card p {
  color: var(--muted);
  margin-top: 20px;
}

.proof-card img {
  height: 136px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.signup-band {
  padding-top: clamp(54px, 7vw, 92px);
  padding-bottom: clamp(54px, 7vw, 92px);
  background:
    linear-gradient(90deg, rgba(255, 252, 249, 0.92), rgba(255, 247, 242, 0.82)),
    url("assets/approved/runtime-webp/supplied-4-blush-texture-blush-pink-label-paper.webp") center / cover;
}

.signup-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(560px, 1fr);
  gap: clamp(18px, 2.7vw, 36px);
  align-items: stretch;
}

.signup-card,
.signup-product-panel,
.review-card {
  position: relative;
  border: 1px solid rgba(232, 212, 203, 0.88);
  border-radius: 8px;
  background: rgba(255, 252, 249, 0.84);
  box-shadow: 0 24px 60px rgba(73, 50, 44, 0.08);
}

.signup-card {
  display: grid;
  align-content: center;
  gap: 20px;
  min-height: clamp(560px, 45vw, 650px);
  padding: clamp(26px, 4.4vw, 58px);
}

.signup-card h2 {
  max-width: 540px;
  font-size: clamp(46px, 6vw, 88px);
}

.signup-card .lead {
  max-width: 560px;
  font-size: clamp(17px, 1.6vw, 21px);
}

.signup-wordmark {
  width: 124px;
  margin-bottom: clamp(6px, 1vw, 16px);
}

.signup-card .signup-form {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 12px;
  margin-top: 10px;
  max-width: 600px;
}

.signup-card .signup-form .field input,
.signup-card .signup-form .btn {
  min-height: 58px;
}

.signup-card .signup-form .btn {
  margin-bottom: 8px;
}

.signup-card .contact-note {
  grid-column: 1 / -1;
}

.signup-story {
  display: grid;
  grid-template-rows: auto auto;
  gap: clamp(16px, 2vw, 22px);
  min-height: clamp(560px, 45vw, 650px);
}

.signup-product-panel {
  display: grid;
  grid-template-rows: 1fr auto;
  height: clamp(250px, 20vw, 310px);
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 247, 242, 0.2), rgba(255, 252, 249, 0.68)),
    url("assets/approved/runtime-webp/supplied-1-blush-texture-glass-oil-refraction.webp") center / cover;
}

.signup-product-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 252, 249, 0.14), rgba(255, 235, 226, 0.36));
  pointer-events: none;
}

.signup-product-surface {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 0;
  padding: clamp(22px, 4vw, 46px);
}

.signup-product-surface img {
  width: min(92%, 440px);
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 30px 32px rgba(87, 52, 39, 0.2));
}

.signup-product-panel figcaption {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 5px;
  margin: 0 18px 18px;
  padding: 16px 18px;
  border: 1px solid rgba(232, 212, 203, 0.8);
  border-radius: 8px;
  background: rgba(255, 252, 249, 0.78);
  backdrop-filter: blur(12px);
  color: var(--muted);
  font-size: 14px;
}

.signup-product-panel figcaption span {
  color: var(--cta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signup-product-panel figcaption strong {
  color: var(--text);
}

.review-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
}

.concept-proof-label {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--cta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-card {
  display: grid;
  align-content: space-between;
  gap: 18px;
  min-height: auto;
  padding: clamp(18px, 2vw, 24px);
}

.review-card-large {
  grid-column: 1 / -1;
  min-height: auto;
}

.review-card p {
  color: var(--text);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(21px, 1.55vw, 25px);
  font-weight: 470;
  line-height: 1.08;
}

.review-card-large p {
  font-size: clamp(25px, 2vw, 31px);
}

.review-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.signup-form,
.contact-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff7f0;
  color: var(--text);
  min-height: 54px;
  padding: 14px 16px;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(197, 63, 105, 0.26);
  outline-offset: 3px;
}

.page-intro {
  padding-top: clamp(72px, 10vw, 128px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: end;
}

.intro-grid h1 {
  font-size: clamp(56px, 7vw, 112px);
}

.filter-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.filter-count {
  color: var(--muted);
  font-weight: 700;
}

.filter-btn {
  border: 1px solid var(--border);
  background: rgba(255, 252, 249, 0.8);
  color: var(--text);
  min-height: 48px;
  border-radius: 999px;
  padding: 0 28px;
}

.catalog-empty {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 34px;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 252, 249, 0.96), rgba(248, 221, 213, 0.74)),
    url("assets/approved/runtime-webp/supplied-4-blush-texture-blush-pink-label-paper.webp") center / cover;
  text-align: center;
}

.catalog-empty h2 {
  max-width: 760px;
  font-size: clamp(34px, 5vw, 62px);
}

.catalog-empty > p:not(.eyebrow) {
  color: var(--muted);
}

.catalog-empty-categories,
.catalog-empty-recommendations {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.catalog-empty-categories button,
.catalog-empty-recommendations button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(165, 64, 96, 0.24);
  border-radius: 999px;
  background: rgba(255, 252, 249, 0.84);
  color: var(--cta);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.catalog-empty-recommendations::before {
  width: 100%;
  content: "Popular products";
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.filter-btn.is-active {
  background: #fde3e5;
  border-color: #e8aeb7;
  color: var(--text);
}

.policy-rail {
  margin-top: 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 252, 249, 0.72);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.policy-rail span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 18px;
  text-align: center;
  color: var(--muted);
}

.policy-rail span + span {
  border-left: 1px solid var(--border);
}

.editorial-break {
  padding-left: 0;
  padding-right: 0;
  background: var(--surface);
}

.editorial-layout {
  display: grid;
  grid-template-columns: 0.72fr minmax(360px, 1.8fr) 0.72fr;
  align-items: stretch;
  min-height: 640px;
}

.editorial-image {
  overflow: hidden;
}

.editorial-image.left {
  border-radius: 0 200px 0 0;
}

.editorial-image.right {
  border-radius: 200px 0 0 0;
}

.editorial-copy {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: clamp(32px, 6vw, 90px);
}

.editorial-copy h2 {
  max-width: 760px;
}

.editorial-copy p {
  margin: 28px 0 36px;
  max-width: 560px;
}

.mini-policy {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--muted);
  margin-top: 44px;
}

.bundle-feature {
  background: linear-gradient(180deg, var(--bg), #fff0ea);
}

.bundle-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
}

.bundle-media {
  min-height: 420px;
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 247, 242, 0.12), rgba(255, 247, 242, 0.12)),
    url("assets/approved/runtime-webp/supplied-2-blush-texture-warm-fabric-towel.webp") center / cover;
  display: grid;
  place-items: end center;
  padding: 26px;
  overflow: hidden;
}

.bundle-media img {
  max-height: 430px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(87, 52, 39, 0.18));
}

.bundle-media-photo {
  aspect-ratio: 1692 / 930;
  min-height: 0;
  padding: 0;
  place-items: stretch;
  background: #f7e4d8;
}

.bundle-media-photo img {
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  color: var(--muted);
}

.detail-preview {
  position: relative;
  min-height: 920px;
  overflow: hidden;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(82, 65, 58, 0.52), rgba(82, 65, 58, 0.12) 38%, rgba(255, 248, 241, 0.88) 62%),
    linear-gradient(180deg, rgba(73, 50, 44, 0.22), rgba(73, 50, 44, 0.08));
}

.detail-preview::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 43%;
  background-image:
    linear-gradient(90deg, rgba(58, 42, 36, 0.38), rgba(58, 42, 36, 0.12)),
    image-set(
      url("assets/approved/runtime-webp/supplied-14-01-full-product-line-banner-v3.webp") type("image/webp")
    );
  background-position: center, center;
  background-size: auto, cover;
  background-repeat: no-repeat;
  filter: saturate(0.82) blur(0.6px);
  opacity: 0.72;
}

.detail-preview .section-inner {
  position: relative;
  z-index: 1;
  width: min(1500px, calc(100% - 64px));
  display: flex;
  justify-content: flex-end;
}

.detail-slider {
  width: min(1080px, 76vw);
  display: grid;
  gap: 16px;
  justify-items: end;
}

.detail-slider-viewport {
  width: 100%;
  overflow: hidden;
  border-radius: 34px 34px 4px 4px;
  box-shadow: 0 30px 90px rgba(61, 40, 34, 0.22);
}

.detail-slider-track {
  --detail-slide-index: 0;
  display: flex;
  transform: translateX(calc(var(--detail-slide-index) * -100%));
  transition: transform 520ms cubic-bezier(0.19, 1, 0.22, 1);
}

.detail-preview .detail-slide {
  flex: 0 0 100%;
  width: 100%;
  margin: 0;
  box-shadow: none;
}

.detail-slide[aria-hidden="true"] {
  pointer-events: none;
}

.detail-slider-controls {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(232, 212, 203, 0.82);
  border-radius: 999px;
  background: rgba(255, 252, 249, 0.86);
  box-shadow: 0 18px 42px rgba(61, 40, 34, 0.16);
  backdrop-filter: blur(14px);
}

.detail-slider-button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(165, 64, 96, 0.26);
  border-radius: 999px;
  background: rgba(255, 247, 242, 0.88);
  color: var(--cta);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.detail-slider-button:hover,
.detail-slider-button:focus-visible {
  background: var(--cta);
  color: #fffafa;
}

.detail-slider-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 104px;
}

.detail-slider-dots button {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.detail-slider-dots button::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(90, 61, 53, 0.26);
  content: "";
  transform: translate(-50%, -50%);
  transition: width 220ms ease, background-color 220ms ease;
}

.detail-slider-dots button.is-active::after {
  width: 28px;
  background: var(--cta);
}

.sheet-panel {
  position: relative;
  width: min(1120px, 100%);
  margin: 0 auto;
  background: rgba(255, 252, 249, 0.96);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(61, 40, 34, 0.22);
  display: grid;
  grid-template-columns: 0.8fr 1fr;
}

.detail-preview .sheet-panel {
  width: min(1080px, 76vw);
  margin: 0;
  border-radius: 34px 34px 4px 4px;
  grid-template-columns: 0.82fr 1.08fr;
}

.sheet-handle {
  position: absolute;
  z-index: 3;
  top: 20px;
  left: 50%;
  width: 84px;
  height: 8px;
  border-radius: 999px;
  background: rgba(124, 83, 66, 0.34);
  transform: translateX(-50%);
}

.sheet-favorite {
  position: absolute;
  z-index: 3;
  top: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--cocoa);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.sheet-media {
  min-height: 560px;
  background: linear-gradient(180deg, #fff2ea, #f4d8ce);
  display: grid;
  place-items: center;
  padding: 38px;
}

.sheet-media img {
  max-height: 520px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 26px rgba(87, 52, 39, 0.18));
}

.detail-preview .sheet-media {
  min-height: 720px;
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 64%, rgba(255, 255, 255, 0.78), transparent 34%),
    linear-gradient(180deg, #fff3ed, #f6dacf);
}

.detail-preview .sheet-media img {
  max-height: 820px;
  width: 128%;
  max-width: none;
  transform: rotate(-7deg) scale(1.16);
  transform-origin: 54% 56%;
}

.sheet-content {
  display: grid;
  align-content: start;
}

.sheet-top {
  padding: clamp(28px, 5vw, 58px);
  border-bottom: 1px solid var(--border);
}

.detail-preview .sheet-top {
  padding: 72px clamp(32px, 4vw, 52px) 30px;
}

.sheet-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.sheet-top h2 {
  font-size: clamp(42px, 5vw, 72px);
}

.detail-preview .sheet-top h2 {
  max-width: 620px;
  font-size: clamp(44px, 4.2vw, 62px);
  line-height: 0.96;
}

.sheet-price {
  margin: 18px 0 14px;
  color: var(--cta);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 760;
  font-size: 34px;
}

.ingredient-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 28px 0;
}

.ingredient {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--muted);
  padding: 0 14px;
}

.ingredient + .ingredient {
  border-left: 1px solid var(--border);
}

.ingredient-icon {
  width: 54px;
  height: 54px;
  border: 1px solid var(--border);
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: var(--cta);
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  font-weight: 650;
  background: rgba(255, 249, 244, 0.62);
}

.skin-pill {
  display: inline-flex;
  border-radius: 999px;
  background: #f3dfd4;
  color: var(--muted);
  min-height: 42px;
  align-items: center;
  padding: 0 18px;
}

.sheet-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.detail-preview .sheet-actions {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin-top: 24px;
}

.sheet-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.sheet-detail {
  padding: 28px;
}

.detail-preview .sheet-detail {
  padding: 26px 32px 30px;
}

.sheet-detail + .sheet-detail {
  border-left: 1px solid var(--border);
}

.sheet-detail img {
  height: 174px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  margin: 12px 0 16px;
}

.routine-steps {
  background: var(--surface);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.step-card {
  position: relative;
  padding: 28px 30px 26px;
  min-height: 560px;
  display: grid;
  align-content: space-between;
  gap: 22px;
}

.step-card + .step-card {
  border-left: 1px solid var(--border);
}

.step-no {
  font-family: "Fraunces", Georgia, serif;
  color: #e9a0a6;
  font-size: clamp(58px, 6vw, 92px);
  line-height: 0.88;
}

.step-card h3 {
  font-size: 30px;
  margin-top: 8px;
}

.step-card p {
  color: var(--muted);
  margin-top: 10px;
}

.step-card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  align-self: end;
  filter: drop-shadow(0 20px 24px rgba(87, 52, 39, 0.14));
}

.step-time {
  color: var(--muted);
  font-weight: 700;
}

.routine-bottom {
  display: flex;
  justify-content: center;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

.pairing-grid,
.value-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.pairing-card,
.value-card,
.faq-item {
  border: 1px solid var(--border);
  background: rgba(255, 252, 249, 0.78);
  border-radius: 8px;
  padding: 26px;
}

.pairing-card {
  display: grid;
  grid-template-rows: 250px auto;
  gap: 20px;
}

.pairing-card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
}

.ingredients-band {
  background: var(--surface);
}

.texture-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.texture-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.texture-stack img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.cta-panel {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 20px;
  padding: clamp(44px, 8vw, 96px);
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 252, 249, 0.82), rgba(255, 252, 249, 0.82)),
    url("assets/approved/runtime-webp/supplied-6-blush-texture-cream-smear-macro.webp") center / cover;
}

.story-split,
.contact-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}

.story-media {
  border-radius: 8px;
  overflow: hidden;
  min-height: 520px;
}

.story-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.value-card h3,
.faq-item h3 {
  font-size: 28px;
}

.value-card p,
.faq-item p {
  color: var(--muted);
  margin-top: 12px;
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-card {
  border: 1px solid var(--border);
  background: rgba(255, 252, 249, 0.84);
  border-radius: 8px;
  padding: clamp(26px, 4vw, 44px);
}

.contact-note {
  color: var(--muted);
  margin-top: 18px;
}

.about-story-poster {
  min-height: clamp(620px, 70vw, 780px);
  display: grid;
  grid-template-columns: minmax(360px, 0.54fr) minmax(0, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 252, 249, 0.88);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-story-copy {
  display: grid;
  align-content: end;
  justify-items: start;
  gap: 24px;
  padding: clamp(34px, 5vw, 72px);
  background:
    linear-gradient(180deg, rgba(255, 252, 249, 0.46), rgba(255, 247, 242, 0.96)),
    url("assets/approved/runtime-webp/supplied-4-blush-texture-blush-pink-label-paper.webp") center / cover;
}

.about-story-copy h1 {
  max-width: 600px;
  font-size: clamp(52px, 5.8vw, 92px);
  line-height: 0.94;
}

.about-story-copy .lead {
  max-width: 560px;
  font-size: clamp(18px, 2vw, 22px);
}

.about-story-visual {
  position: relative;
  min-height: 100%;
  background: #f1dccf;
  overflow: hidden;
}

.about-story-image {
  width: 100%;
  height: 100%;
  min-height: clamp(520px, 58vw, 780px);
  object-fit: cover;
}

.about-story-wordmark {
  position: absolute;
  top: clamp(26px, 4vw, 56px);
  left: 50%;
  width: min(72%, 620px);
  transform: translateX(-50%);
  filter:
    drop-shadow(0 2px 0 rgba(255, 252, 249, 0.72))
    drop-shadow(0 18px 34px rgba(59, 36, 31, 0.16));
  opacity: 1;
}

.about-values-section {
  background: linear-gradient(180deg, var(--bg), var(--surface));
}

.about-values-ledger {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
  margin-top: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 252, 249, 0.84);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-values-list {
  display: grid;
}

.about-values-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 0.72fr) minmax(220px, 0.48fr);
  gap: 22px;
  align-items: center;
  padding: clamp(22px, 3vw, 34px);
  border-bottom: 1px solid var(--border);
}

.about-values-row:last-child {
  border-bottom: 0;
}

.about-values-row span {
  color: var(--cta);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.about-values-row h3 {
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1;
}

.about-values-row p {
  color: var(--muted);
}

.about-values-media {
  min-height: 100%;
  padding: clamp(20px, 3vw, 36px);
  border-left: 1px solid var(--border);
  background: #f5e1d8;
}

.about-values-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 8px;
}

.about-faq-desk {
  display: grid;
  grid-template-columns: minmax(300px, 0.36fr) minmax(0, 1fr);
  min-height: 640px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 252, 249, 0.86);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-faq-topic-rail {
  display: grid;
  align-content: end;
  gap: 18px;
  min-height: 640px;
  padding: clamp(28px, 4vw, 56px);
  border-right: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 252, 249, 0.16), rgba(255, 247, 242, 0.88) 70%, rgba(255, 247, 242, 0.98)),
    url("assets/approved/runtime-webp/about-page/blush-about-faq-before-shop-decorative-v1.webp") center / cover;
}

.about-faq-topic-rail h2 {
  margin-bottom: 10px;
  font-size: clamp(42px, 4.8vw, 72px);
  line-height: 0.96;
}

.about-faq-topic-rail p {
  max-width: 300px;
  color: var(--muted);
  font-size: 17px;
}

.about-faq-tab {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(165, 64, 96, 0.22);
  border-radius: 999px;
  background: rgba(255, 247, 242, 0.84);
  color: var(--cta);
  padding: 0 18px;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.about-faq-tab:hover,
.about-faq-tab:focus-visible,
.about-faq-tab.is-active {
  border-color: var(--cta);
  background: var(--cta);
  color: #fff7f2;
}

.about-faq-tab:active {
  transform: translateY(1px);
}

.about-faq-panel {
  display: grid;
  align-items: center;
  align-content: center;
  gap: 14px;
  min-height: 100%;
  padding: clamp(28px, 4.8vw, 66px);
}

.about-faq-panel .routine-choice-panel {
  display: grid;
  grid-area: 1 / 1;
  align-content: center;
  gap: clamp(24px, 2.2vw, 34px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.about-faq-panel .routine-choice-panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.about-faq-answer span {
  color: var(--cta);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-faq-answer h3 {
  max-width: 820px;
  font-size: clamp(42px, 5vw, 80px);
  line-height: 1.04;
}

.about-faq-answer p {
  max-width: 760px;
  margin-top: 6px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.about-faq-item {
  border: 1px solid rgba(216, 188, 174, 0.84);
  border-radius: 10px;
  background: rgba(255, 252, 249, 0.88);
  box-shadow: 0 16px 42px rgba(95, 64, 54, 0.07);
  overflow: hidden;
}

.about-faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px;
  gap: 22px;
  align-items: center;
  padding: clamp(20px, 2.5vw, 30px);
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease;
}

.about-faq-question:hover,
.about-faq-question:focus-visible,
.about-faq-item.is-open .about-faq-question {
  background: rgba(248, 221, 213, 0.34);
}

.about-faq-question-copy > span:first-child {
  display: block;
  margin-bottom: 8px;
  color: var(--cta);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-faq-question-title {
  display: block;
  max-width: 820px;
  color: var(--text);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 560;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-transform: none;
}

.about-faq-toggle {
  appearance: none;
}

.about-faq-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  justify-self: end;
  border: 1px solid rgba(165, 64, 96, 0.28);
  border-radius: 50%;
  background: rgba(255, 247, 242, 0.9);
  color: var(--cta);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.about-faq-item.is-open .about-faq-icon {
  border-color: var(--cta);
  background: var(--cta);
  color: #fff7f2;
}

.about-faq-copy {
  display: grid;
  grid-template-rows: 0fr;
  border-top: 0 solid rgba(216, 188, 174, 0);
  transition: grid-template-rows 220ms ease, border-color 220ms ease;
}

.about-faq-copy > div {
  overflow: hidden;
}

.about-faq-copy p {
  max-width: 760px;
  margin: 0;
  padding: clamp(16px, 1.8vw, 24px) clamp(20px, 2.5vw, 30px) clamp(22px, 2.8vw, 32px);
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.55;
}

.about-faq-item.is-open .about-faq-copy {
  grid-template-rows: 1fr;
  border-top-width: 1px;
  border-top-color: rgba(216, 188, 174, 0.72);
}

.about-contact-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.52fr);
  min-height: 680px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: rgba(255, 252, 249, 0.86);
}

.about-contact-copy {
  display: grid;
  align-content: center;
  gap: 24px;
  padding: clamp(34px, 5vw, 72px);
  background:
    linear-gradient(180deg, rgba(255, 252, 249, 0.62), rgba(255, 247, 242, 0.94)),
    url("assets/approved/runtime-webp/hero-slider-scenes/hero-slide-summer-handbag-edit-v1.webp") center / cover;
}

.about-contact-copy h2 {
  max-width: 760px;
  font-size: clamp(52px, 6.4vw, 98px);
  line-height: 0.94;
}

.about-contact-copy .lead {
  max-width: 620px;
}

.about-contact-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 780px;
}

.about-contact-status {
  border-top: 1px solid rgba(59, 36, 31, 0.2);
  padding-top: 14px;
}

.about-contact-status strong {
  display: block;
  color: var(--text);
  font-family: "Fraunces", Georgia, serif;
  font-size: 28px;
  line-height: 1;
}

.about-contact-status p {
  color: var(--muted);
  margin-top: 6px;
}

.about-contact-form-panel {
  display: grid;
  align-content: center;
  padding: clamp(28px, 4vw, 56px);
  border-left: 1px solid var(--border);
  background: rgba(255, 250, 246, 0.94);
}

.about-contact-form-panel .contact-form {
  display: grid;
  gap: 14px;
}

.site-footer {
  background: #4b3029;
  color: #fff7f2;
  padding: 58px var(--gutter) 34px;
}

.footer-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr minmax(180px, 0.72fr) 1.35fr 0.9fr;
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
}

.footer-brand img {
  width: 110px;
  filter: invert(1) brightness(3.2) sepia(0.2);
}

.footer-brand p,
.footer-links a,
.footer-contact p {
  color: rgba(255, 247, 242, 0.78);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.footer-links h3,
.footer-contact h3 {
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.footer-links a {
  display: block;
  margin-top: 8px;
}

.product-sheet {
  position: fixed;
  inset: 0;
  width: 100vw;
  max-width: 100vw;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.product-sheet.is-open {
  display: flex;
}

.sheet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(45, 31, 27, 0.48);
  backdrop-filter: blur(8px);
}

.product-sheet .sheet-panel {
  position: relative;
  z-index: 1;
  max-height: calc(100vh - 44px);
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.sheet-close {
  position: absolute;
  right: 22px;
  top: 20px;
  z-index: 2;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  background: var(--text);
  color: #fff;
  border-radius: 999px;
  padding: 14px 20px;
  box-shadow: var(--shadow);
  transform: translateY(30px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hidden {
  display: none !important;
}

@media (width <= 1179px) {
  .nav-shell {
    grid-template-columns: minmax(120px, 0.5fr) auto minmax(220px, 0.6fr);
  }

  .nav-promo {
    display: none;
  }

  .hero-wordmark {
    position: relative;
    top: auto;
    right: auto;
    width: min(64vw, 560px);
    margin: 4px auto 4px;
    justify-items: center;
  }

  .fluffy-word,
  .hero-swipe {
    min-width: 0;
  }

  .hero-stage {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: 0;
  }

  .hero-copy {
    justify-self: center;
    padding-bottom: 0;
  }

  .hero-copy p,
  .hero-copy h1 {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .offer-card {
    margin: 0 auto 34px;
    max-width: 360px;
    text-align: center;
  }

  .product-stage {
    width: min(820px, 100%);
    margin: 0 auto;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-row,
  .proof-grid,
  .texture-note-grid,
  .pairing-grid,
  .value-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step-card:nth-child(3) {
    border-left: 0;
  }
}

@media (max-width: 900px) {
  .nav-shell {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 71px 14px auto 14px;
    display: none;
    background: rgba(255, 252, 249, 0.98);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 22px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    min-height: 0;
  }

  body.menu-open .nav-links {
    display: flex;
  }

  .nav-actions {
    grid-column: 3;
  }

  .section-head,
  .intro-grid,
  .routine-flow,
  .signup-shell,
  .bundle-shell,
  .texture-split,
  .story-split,
  .contact-split,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
  }

  .mosaic {
    grid-template-columns: 1fr;
  }

  .routine-flow {
    gap: 32px;
  }

  .routine-visual {
    min-height: 520px;
  }

  .signup-accent {
    min-height: 220px;
  }

  .signup-card,
  .signup-product-panel {
    min-height: auto;
  }

  .signup-story {
    min-height: auto;
  }

  .signup-product-panel {
    aspect-ratio: 16 / 10;
  }

  .review-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-card,
  .review-card-large {
    min-height: 190px;
  }

  .mosaic-main {
    min-height: 320px;
  }

  .editorial-layout {
    grid-template-columns: 1fr;
  }

  .editorial-image {
    min-height: 280px;
  }

  .editorial-image.left,
  .editorial-image.right {
    border-radius: 0;
  }

  .sheet-panel {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .sheet-media {
    min-height: 360px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .site-header {
    position: sticky;
  }

  .brand-link img {
    width: 82px;
  }

  .icon-action {
    width: 46px;
    padding: 0;
  }

  .trust-strip {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 12px;
    font-size: 13px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .trust-strip span {
    width: auto;
    flex: 0 0 auto;
  }

  .hero {
    min-height: auto;
  }

  .fluffy-word {
    width: min(78vw, 360px);
  }

  .hero-swipe {
    width: min(76vw, 360px);
    margin-top: -14px;
  }

  .product-stage {
    min-height: 310px;
  }

  .product-stage .stage-backdrop {
    height: 270px;
    inset-inline: -24%;
    width: 148%;
  }

  .product-stage > img:not(.stage-backdrop) {
    width: 108%;
    max-width: none;
    margin-bottom: 18px;
  }

  .hero-copy h1 {
    font-size: 46px;
  }

  .hero-proof {
    display: none;
  }

  .offer-card {
    margin: 4px auto 0;
    padding: 18px;
    text-align: left;
  }

  .offer-card .offer-title {
    font-size: 11px;
  }

  .offer-card strong {
    font-size: 38px;
    margin: 10px 0 4px;
  }

  .offer-card p {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .offer-note {
    display: none;
  }

  .hero-actions,
  .inline-actions,
  .routine-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
    min-height: 54px;
  }

  .product-row,
  .product-grid,
  .proof-grid,
  .texture-note-grid,
  .pairing-grid,
  .value-grid,
  .faq-grid,
  .routine-choices,
  .steps-grid,
  .texture-stack,
  .policy-rail,
  .sheet-actions,
  .ingredient-row,
  .sheet-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-rows: auto auto;
  }

  .product-card .media,
  .product-card.compact .media {
    min-height: 250px;
  }

  .product-card .media img,
  .product-card.compact .media img {
    height: 210px;
  }

  .routine-visual {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  .routine-product-oil {
    width: 28%;
    left: 44%;
    bottom: 38%;
  }

  .routine-product-moisturiser {
    width: 38%;
    left: 56%;
    bottom: 32%;
  }

  .routine-choices {
    grid-template-columns: 1fr;
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .routine-path {
    min-height: auto;
  }

  .signup-accent {
    display: none;
  }

  .signup-card {
    gap: 14px;
    padding: 20px;
  }

  .signup-wordmark {
    width: 96px;
  }

  .signup-card h2 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .signup-card .signup-form {
    grid-template-columns: 1fr;
  }

  .signup-card .signup-form .btn {
    margin-bottom: 0;
  }

  .signup-product-panel {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .signup-product-surface img {
    width: min(102%, 330px);
    max-height: 190px;
  }

  .review-stack {
    grid-template-columns: 1fr;
  }

  .review-card:nth-child(3) {
    display: none;
  }

  .review-card,
  .review-card-large {
    min-height: auto;
  }

  .review-card p {
    font-size: clamp(19px, 5.3vw, 22px);
  }

  .review-card-large p {
    font-size: clamp(21px, 5.8vw, 24px);
  }

  .proof-card {
    grid-template-columns: 1fr;
  }

  .texture-note-card {
    min-height: auto;
    padding: 18px;
  }

  .filter-bar {
    justify-content: flex-start;
  }

  .policy-rail span + span,
  .sheet-detail + .sheet-detail,
  .step-card + .step-card {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .step-card {
    min-height: auto;
  }

  .step-card img {
    height: 230px;
  }

  .product-sheet {
    align-items: end;
    padding: 0;
  }

  .product-sheet .sheet-panel {
    width: 100%;
    max-height: 92vh;
    border-radius: 22px 22px 0 0;
  }

  .sheet-media {
    min-height: 280px;
  }

  .sheet-media img {
    max-height: 280px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Retail hero direction, based on approved home hero mockup 1. */
.retail-header {
  background: rgba(255, 252, 249, 0.94);
  border-bottom: 1px solid rgba(232, 212, 203, 0.76);
  box-shadow: none;
}

.retail-promo-strip {
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 46px);
  padding: 0 var(--gutter);
  background: #57352d;
  color: #fff7f2;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
}

.retail-promo-rotator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 46px);
}

.retail-promo-strip span {
  flex: 0 0 auto;
}

@media (max-width: 1100px) {
  .retail-promo-strip {
    min-height: 44px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding-inline: 8px;
    overflow: hidden;
    white-space: normal;
  }

  .retail-promo-rotator {
    min-width: 0;
    min-height: 44px;
    display: grid;
    grid-column: 1;
    grid-row: 1;
    align-items: center;
    justify-items: stretch;
  }

  .retail-promo-rotator span {
    width: 100%;
    min-height: 44px;
    display: grid;
    place-items: center;
    grid-column: 1;
    grid-row: 1;
    padding: 2px 4px;
    opacity: 0;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
    pointer-events: none;
    transition: opacity 280ms ease;
  }

  .retail-promo-rotator span.is-active {
    opacity: 1;
  }
}

.showcase-skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 120;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border: 2px solid #fff7f2;
  border-radius: 999px;
  background: #57352d;
  color: #fff7f2;
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 8px 22px rgba(87, 52, 45, 0.24);
  transform: translateY(calc(-100% - 18px));
  transition: transform 160ms ease;
}

.showcase-skip-link:focus {
  transform: translateY(0);
}

#main-content {
  scroll-margin-top: 180px;
}

#main-content:focus-visible {
  outline: 3px solid rgba(165, 64, 96, 0.78);
  outline-offset: 4px;
}

@media (max-width: 760px) {
  #main-content {
    scroll-margin-top: 220px;
  }
}

.retail-nav-shell {
  width: 100%;
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  gap: 28px;
  padding: 0 var(--gutter);
  border-bottom: 1px solid rgba(232, 212, 203, 0.82);
}

.retail-header .retail-primary-nav {
  justify-content: flex-start;
  gap: 24px;
  min-height: auto;
  padding: 0;
  border: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

.retail-brand-link {
  justify-self: center;
}

.retail-brand-link img {
  width: 118px;
}

.retail-nav-actions {
  gap: 18px;
}

.retail-search-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

.retail-bag-pill {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(232, 212, 203, 0.9);
  border-radius: 999px;
  background: rgba(255, 247, 242, 0.74);
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.retail-bag-pill:hover,
.retail-bag-pill:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(165, 64, 96, 0.32);
  background: #fff6f1;
}

.retail-category-rail {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
  padding: 0 var(--gutter);
  border-bottom: 1px solid rgba(232, 212, 203, 0.72);
  background: rgba(255, 247, 242, 0.72);
  color: #57352d;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.retail-category-rail a {
  position: relative;
  padding: 14px 0;
}

.retail-category-rail a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 11px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.retail-category-rail a:hover::after,
.retail-category-rail a:focus-visible::after {
  transform: scaleX(1);
}

.retail-hero {
  position: relative;
  padding: 28px var(--gutter) 46px;
  background:
    linear-gradient(180deg, rgba(255, 252, 249, 0.96), rgba(255, 247, 242, 0.84)),
    url("assets/approved/runtime-webp/supplied-4-blush-texture-blush-pink-label-paper.webp") center / cover;
}

.retail-hero-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.retail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 330px);
  gap: 20px;
  align-items: stretch;
}

.retail-slider {
  position: relative;
  min-height: clamp(470px, 39vw, 548px);
  overflow: hidden;
  border: 1px solid rgba(232, 212, 203, 0.9);
  border-radius: 18px;
  background: #fff7f2;
  box-shadow: 0 24px 54px rgba(87, 52, 39, 0.1);
  isolation: isolate;
}

.retail-slider::before {
  content: none;
}

.retail-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  background: var(--hero-slide-bg, #fff7f2);
  transition: opacity 260ms ease, visibility 260ms ease;
}

.retail-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(255, 252, 249, 0.96) 0%, rgba(255, 252, 249, 0.84) 26%, rgba(255, 247, 242, 0.34) 54%, rgba(255, 247, 242, 0) 78%),
    linear-gradient(180deg, rgba(255, 252, 249, 0.1), rgba(87, 52, 39, 0.08));
  pointer-events: none;
}

.retail-slide[data-hero-slide="0"] {
  --hero-slide-bg: linear-gradient(135deg, #fffaf6 0%, #f9e5dc 100%);
}

.retail-slide[data-hero-slide="1"] {
  --hero-slide-bg: linear-gradient(135deg, #fff8f2 0%, #f4d8ce 100%);
}

.retail-slide[data-hero-slide="2"] {
  --hero-slide-bg: linear-gradient(135deg, #fff8ed 0%, #f1d2b5 100%);
}

.retail-slide[data-hero-slide="3"] {
  --hero-slide-bg: linear-gradient(135deg, #fff7f2 0%, #f2d5d0 100%);
}

.retail-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.retail-campaign-copy {
  position: absolute;
  left: clamp(26px, 3vw, 42px);
  top: clamp(28px, 3.4vw, 44px);
  z-index: 5;
  display: grid;
  gap: 16px;
  width: min(360px, 38%);
}

.retail-campaign-copy span,
.retail-promo-card > span {
  color: var(--cta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.retail-campaign-copy h1,
.retail-campaign-copy h2 {
  margin: 0;
  color: #2f201c;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(52px, 5vw, 68px);
  font-weight: 520;
  line-height: 0.92;
  letter-spacing: 0;
  font-variation-settings: "SOFT" 55, "WONK" 0, "opsz" 48;
}

.retail-campaign-copy p {
  max-width: 360px;
  color: var(--muted);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.46;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.retail-texture-card {
  position: absolute;
  right: 50px;
  top: 42px;
  z-index: 2;
  display: none;
  width: min(252px, 24vw);
  height: 168px;
  border: 1px solid rgba(232, 212, 203, 0.78);
  border-radius: 16px;
  overflow: hidden;
  background: url("assets/approved/runtime-webp/supplied-6-blush-texture-cream-smear-macro.webp") center / cover;
  box-shadow: 0 20px 36px rgba(87, 52, 39, 0.1);
}

.retail-texture-card-oil {
  background-image: url("assets/approved/runtime-webp/supplied-1-blush-texture-glass-oil-refraction.webp");
}

.retail-texture-card-cream {
  background-image: url("assets/approved/runtime-webp/supplied-3-blush-texture-skincare-cream-closeup.webp");
}

.retail-hero-products {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 2;
  width: min(760px, 56%);
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 0 18px 18px 0;
}

.retail-slide:nth-child(2) .retail-hero-products,
.retail-slide:nth-child(3) .retail-hero-products {
  width: min(760px, 56%);
}

.retail-hero-products img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center right;
}

.retail-slider-controls {
  position: absolute;
  left: clamp(26px, 3vw, 42px);
  bottom: 30px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
}

.retail-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(232, 212, 203, 0.88);
  border-radius: 999px;
  background: rgba(255, 252, 249, 0.72);
  color: var(--text);
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease;
}

.retail-arrow:hover,
.retail-arrow:focus-visible {
  transform: translateY(-1px);
  background: #fff7f2;
}

.retail-dots {
  display: flex;
  gap: 7px;
}

.retail-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(87, 52, 45, 0.24);
  transition: width 180ms ease, background 180ms ease;
}

.retail-dots span.is-active {
  width: 24px;
  background: var(--cta);
}

.retail-side-stack {
  display: grid;
  gap: 16px;
}

.retail-promo-card {
  position: relative;
  min-height: 164px;
  overflow: hidden;
  border: 1px solid rgba(232, 212, 203, 0.9);
  border-radius: 16px;
  background: rgba(255, 252, 249, 0.76);
  padding: 22px;
  box-shadow: 0 20px 44px rgba(87, 52, 39, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.retail-promo-card:not(.is-dark) {
  padding-right: 122px;
}

.retail-promo-card:hover,
.retail-promo-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(165, 64, 96, 0.26);
  box-shadow: 0 24px 52px rgba(87, 52, 39, 0.12);
}

.retail-promo-card.is-dark {
  border-color: rgba(255, 247, 242, 0.18);
  background: #57352d;
  color: #fff7f2;
}

.retail-promo-card.is-dark > span,
.retail-promo-card.is-dark p {
  color: #fff7f2;
}

.retail-promo-card strong {
  display: block;
  margin: 8px 0;
  color: #2f201c;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(32px, 3vw, 54px);
  font-weight: 530;
  line-height: 0.96;
  letter-spacing: 0;
}

.retail-promo-card.is-dark strong {
  color: #fff7f2;
}

.retail-promo-card p {
  max-width: 210px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.38;
}

.retail-promo-card img {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 106px;
  max-height: 116px;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(87, 52, 39, 0.12));
}

.retail-rail-title {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0;
  color: #57352d;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.retail-rail-title a {
  color: var(--cta);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}

.retail-product-rail {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.retail-rail-product {
  min-height: 164px;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(232, 212, 203, 0.9);
  border-radius: 14px;
  background: rgba(255, 252, 249, 0.78);
  padding: 12px;
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.retail-rail-product:hover,
.retail-rail-product:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(165, 64, 96, 0.26);
  box-shadow: 0 18px 38px rgba(87, 52, 39, 0.1);
}

.retail-rail-product img {
  width: 82px;
  height: 112px;
  object-fit: contain;
  filter: drop-shadow(0 14px 14px rgba(87, 52, 39, 0.12));
}

.retail-rail-product strong {
  display: block;
  color: #2f201c;
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  font-weight: 560;
  line-height: 1;
}

.retail-rail-product em {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .retail-hero-grid {
    grid-template-columns: 1fr;
  }

  .retail-side-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .retail-product-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .retail-promo-card {
    min-height: 188px;
  }
}

@media (max-width: 1020px) {
  .retail-nav-shell {
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    min-height: 72px;
  }

  .retail-brand-link {
    justify-self: start;
    grid-column: 1;
  }

  .retail-header .retail-primary-nav {
    position: absolute;
    left: var(--gutter);
    right: var(--gutter);
    top: calc(100% + 10px);
    z-index: 50;
    display: none;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255, 252, 249, 0.98);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  body.menu-open .retail-header .retail-primary-nav {
    display: flex;
  }

  .retail-nav-actions {
    grid-column: 3;
  }

  .retail-search-link {
    display: none;
  }

  .retail-category-rail {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }
}

@media (max-width: 760px) {
  .retail-hero {
    padding-top: 18px;
    padding-bottom: 34px;
  }

  .retail-slider {
    min-height: 660px;
  }

  .retail-slide::before {
    background:
      linear-gradient(180deg, rgba(255, 252, 249, 0.98) 0%, rgba(255, 252, 249, 0.88) 38%, rgba(255, 247, 242, 0.22) 62%, rgba(255, 247, 242, 0) 100%),
      linear-gradient(180deg, rgba(255, 252, 249, 0.08), rgba(87, 52, 39, 0.08));
  }

  .retail-campaign-copy {
    width: auto;
    right: 24px;
  }

  .retail-campaign-copy h1,
  .retail-campaign-copy h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .retail-campaign-copy p {
    max-width: 310px;
  }

  .retail-texture-card {
    display: none;
  }

  .retail-hero-products {
    inset: auto 18px 92px 18px;
    width: auto;
    height: 310px;
    border-radius: 12px;
  }

  .retail-slide:nth-child(2) .retail-hero-products,
  .retail-slide:nth-child(3) .retail-hero-products {
    width: auto;
  }

  .retail-hero-products img {
    object-position: center;
  }

  .retail-slider-controls {
    bottom: 24px;
  }

  .retail-side-stack {
    grid-template-columns: 1fr;
  }

  .retail-promo-card {
    min-height: 150px;
  }

  .retail-product-rail {
    grid-template-columns: 1fr;
  }

  .retail-rail-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 520px) {
  .retail-promo-strip {
    min-height: 44px;
    font-size: 10px;
  }

  .retail-nav-shell {
    padding-inline: 18px;
  }

  .retail-brand-link img {
    width: 92px;
  }

  .retail-bag-pill {
    width: 40px;
    height: 40px;
  }

  .retail-category-rail {
    padding-inline: 18px;
    gap: 20px;
    font-size: 12px;
  }

  .retail-hero {
    padding-inline: 18px;
  }

  .retail-slider {
    min-height: 690px;
    border-radius: 14px;
  }

  .retail-campaign-copy {
    left: 20px;
    right: 20px;
    top: 24px;
    gap: 14px;
  }

  .button-row .btn {
    flex: 1 1 100%;
    min-height: 52px;
  }

  .retail-hero-products {
    bottom: 84px;
    height: 290px;
  }

  .retail-promo-card strong {
    font-size: 36px;
  }
}

/* Ecommerce demo expansion */
body.cart-open {
  overflow: hidden;
}

.micro-label {
  display: inline-block;
  color: var(--cta);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.anchor-target {
  display: block;
  position: relative;
  top: -150px;
  visibility: hidden;
}

#product-grid {
  scroll-margin-top: 160px;
}

@media (max-width: 760px) {
  #product-grid {
    scroll-margin-top: 210px;
  }
}

.pink-promo-marquee {
  overflow: hidden;
  border-block: 1px solid rgba(255, 247, 242, 0.34);
  background: #bd4166;
  color: #fff7f2;
}

.pink-promo-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 42px);
  min-height: 72px;
  padding-inline: 22px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 520;
  line-height: 1;
  white-space: nowrap;
  animation: blushTicker 30s linear infinite;
}

.pink-promo-track span {
  flex: 0 0 auto;
}

@keyframes blushTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pink-promo-track {
    animation: none;
  }
}

.retail-texture-card-paper {
  background-image: url("assets/approved/runtime-webp/supplied-4-blush-texture-blush-pink-label-paper.webp");
}

.retail-slide:nth-child(4) .retail-hero-products {
  width: min(760px, 56%);
}

@media (max-width: 760px) {
  .retail-slide:nth-child(4) .retail-hero-products {
    width: auto;
  }
}

.expanded-catalog {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.expanded-catalog .product-card {
  min-width: 0;
  grid-template-rows: 375px minmax(0, 1fr);
}

.expanded-catalog .product-card .media {
  height: 375px;
  min-height: 375px;
}

.expanded-catalog .product-card .media img {
  width: 100%;
  max-height: 230px;
  height: 230px;
  object-fit: contain;
}

@media (max-width: 760px) {
  .expanded-catalog .product-card {
    grid-template-rows: auto auto;
  }

  .expanded-catalog .product-card .media {
    height: auto;
    min-height: 250px;
  }
}

.product-badge {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 252, 249, 0.86);
  color: var(--cta);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-price,
.sheet-price span {
  color: var(--muted);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: line-through;
}

.sheet-benefits {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.sheet-benefits li {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 247, 242, 0.72);
  color: var(--text);
  font-weight: 700;
}

.bundle-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.bundle-includes strong {
  width: 100%;
  color: var(--muted);
  font-size: 13px;
}

.bundle-includes button {
  border: 1px solid rgba(165, 64, 96, 0.24);
  border-radius: 999px;
  background: rgba(255, 252, 249, 0.82);
  color: var(--cta);
  padding: 8px 10px;
  font-weight: 800;
}

.product-sheet .sheet-panel {
  width: min(1040px, calc(100vw - 44px));
  height: min(690px, calc(100vh - 44px));
  max-height: calc(100vh - 44px);
  overflow: hidden;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
}

.product-sheet .sheet-media {
  min-height: 0;
  height: 100%;
  padding: clamp(24px, 3vw, 38px);
}

.product-sheet .sheet-media img {
  max-height: min(500px, 78%);
}

.product-sheet .sheet-content {
  min-height: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.product-sheet .sheet-top {
  min-height: 0;
  overflow: hidden;
  padding: 32px clamp(30px, 4vw, 44px) 22px;
}

.product-sheet .sheet-top h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.98;
}

.product-sheet .sheet-price {
  margin: 10px 0 8px;
  font-size: 30px;
}

.product-sheet .sheet-top p {
  max-width: 560px;
  font-size: 16px;
  line-height: 1.42;
}

.sheet-facts {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  margin: 16px 0 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 247, 242, 0.55);
}

.sheet-facts div {
  min-width: 0;
  padding: 11px 13px;
}

.sheet-facts div + div {
  border-left: 1px solid var(--border);
}

.sheet-facts span,
.bundle-includes strong {
  display: block;
  color: var(--cta);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sheet-facts strong {
  display: block;
  margin-top: 5px;
  color: var(--text);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.25;
}

.product-sheet .sheet-benefits {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 16px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.product-sheet .sheet-benefits li {
  padding: 9px 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.25;
}

.product-sheet .sheet-benefits li + li {
  border-left: 1px solid var(--border);
}

.product-sheet .bundle-includes {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px 14px;
  margin-top: 14px;
  color: var(--muted);
}

.product-sheet .bundle-includes strong {
  width: auto;
}

.product-sheet .bundle-includes div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 9px;
  align-items: center;
}

.product-sheet .bundle-includes button {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  padding: 0;
  font-size: 13px;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(165, 64, 96, 0.28);
  text-underline-offset: 4px;
}

.product-sheet .sheet-actions {
  gap: 12px;
  margin-top: 18px;
}

.product-sheet .sheet-actions .btn {
  min-height: 50px;
}

.sheet-how-to {
  min-height: 178px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 38%);
  align-items: stretch;
  border-top: 1px solid var(--border);
  background: rgba(255, 247, 242, 0.62);
  overflow: hidden;
}

.sheet-how-to > div {
  min-width: 0;
  padding: 24px clamp(30px, 4vw, 44px);
}

.sheet-how-to h3 {
  margin: 0 0 8px;
  color: var(--cta);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sheet-how-to p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.42;
}

.sheet-how-to img {
  width: 100%;
  height: 100%;
  min-height: 178px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 760px) {
  .product-sheet .sheet-panel {
    width: 100%;
    height: 92vh;
    max-height: 92vh;
    grid-template-columns: 1fr;
    grid-template-rows: 176px minmax(0, 1fr);
    border-radius: 22px 22px 0 0;
  }

  .product-sheet .sheet-media {
    height: 176px;
    padding: 16px;
  }

  .product-sheet .sheet-media img {
    max-height: 150px;
  }

  .product-sheet .sheet-top {
    padding: 16px 18px 12px;
  }

  .product-sheet .sheet-top h2 {
    font-size: 30px;
  }

  .product-sheet .sheet-price {
    margin: 6px 0 5px;
    font-size: 23px;
  }

  .product-sheet .sheet-top p {
    font-size: 13px;
    line-height: 1.3;
  }

  .sheet-facts {
    grid-template-columns: 0.88fr 1.12fr;
    margin-top: 10px;
  }

  .sheet-facts div {
    padding: 8px 9px;
  }

  .sheet-facts div + div {
    border-left: 1px solid var(--border);
    border-top: 0;
  }

  .sheet-facts span,
  .bundle-includes strong {
    font-size: 9px;
  }

  .sheet-facts strong {
    margin-top: 4px;
    font-size: 11px;
    line-height: 1.18;
  }

  .product-sheet .sheet-benefits {
    margin-top: 10px;
  }

  .product-sheet .sheet-benefits li {
    padding: 6px 7px;
    font-size: 10px;
  }

  .product-sheet .bundle-includes {
    grid-template-columns: 1fr;
    gap: 5px;
    margin-top: 8px;
  }

  .product-sheet .bundle-includes div {
    gap: 4px 7px;
  }

  .product-sheet .bundle-includes button {
    font-size: 12px;
  }

  .product-sheet .sheet-actions {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 10px;
  }

  .product-sheet .sheet-actions .btn {
    min-height: 42px;
  }

  .sheet-how-to {
    min-height: 124px;
    grid-template-columns: minmax(0, 1fr) 96px;
  }

  .sheet-how-to > div {
    padding: 12px 14px 12px 18px;
  }

  .sheet-how-to h3 {
    margin-bottom: 5px;
    font-size: 10px;
  }

  .sheet-how-to p {
    font-size: 12px;
    line-height: 1.25;
  }

  .sheet-how-to img {
    min-height: 124px;
  }
}

.cart-drawer {
  position: fixed;
  inset: 0;
  width: 100vw;
  max-width: 100vw;
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.cart-drawer[hidden] {
  display: none;
}

.cart-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(45, 31, 27, 0.42);
  backdrop-filter: blur(8px);
}

.cart-panel {
  position: absolute;
  top: 14px;
  right: 14px;
  bottom: 14px;
  width: min(500px, calc(100vw - 28px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto auto;
  gap: 18px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(232, 212, 203, 0.92);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 252, 249, 0.98), rgba(255, 247, 242, 0.98)),
    url("assets/approved/runtime-webp/supplied-4-blush-texture-blush-pink-label-paper.webp") center/cover;
  box-shadow: 0 34px 90px rgba(47, 32, 28, 0.24);
  transform: translateX(18px);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cart-drawer.is-open .cart-panel {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.cart-head h2 {
  margin-top: 8px;
  font-size: clamp(36px, 5vw, 54px);
}

.cart-close {
  position: static;
}

.cart-lines {
  display: grid;
  align-content: start;
  gap: 14px;
  overflow: auto;
  padding-right: 4px;
}

.cart-line,
.checkout-line {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 252, 249, 0.86);
}

.cart-line img,
.checkout-line img {
  width: 72px;
  height: 76px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 247, 242, 0.86);
}

.cart-line strong,
.checkout-line strong {
  display: block;
  color: var(--text);
}

.cart-line span,
.checkout-line span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.qty-control {
  display: inline-grid;
  grid-template-columns: 30px 34px 30px;
  align-items: center;
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
}

.qty-control button,
.cart-remove {
  border: 0;
  background: transparent;
  color: var(--text);
  font-weight: 900;
}

.qty-control output {
  text-align: center;
  color: var(--text);
  font-weight: 800;
}

.cart-remove {
  color: var(--cta);
  font-size: 12px;
}

.cart-empty {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 280px;
  padding: 30px;
  text-align: center;
  border: 1px dashed rgba(165, 64, 96, 0.28);
  border-radius: 18px;
  background: rgba(255, 252, 249, 0.76);
}

.cart-empty.compact {
  min-height: 180px;
}

.cart-empty img {
  width: 118px;
  margin-bottom: 20px;
}

.cart-empty h3 {
  font-size: 30px;
}

.cart-promo {
  display: grid;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.cart-promo label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.cart-promo > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.cart-promo input {
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  padding: 0 16px;
  color: var(--text);
  font: inherit;
  font-weight: 800;
}

.cart-promo button {
  min-height: 44px;
  border: 1px solid var(--cta);
  border-radius: 999px;
  background: var(--cta);
  color: var(--surface);
  padding: 0 18px;
  font-weight: 850;
}

.cart-promo p {
  color: var(--muted);
  font-size: 13px;
}

.cart-summary {
  display: grid;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.cart-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.cart-summary strong {
  color: var(--text);
}

.cart-summary .cart-total {
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
}

.cart-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
  grid-template-areas: "form summary";
  gap: 26px;
  align-items: start;
}

.checkout-layout.is-empty {
  grid-template-columns: minmax(0, 840px);
  grid-template-areas: "form";
  justify-content: center;
}

.checkout-form,
.checkout-summary-card,
.confirmation-card {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 252, 249, 0.9);
  box-shadow: 0 24px 60px rgba(87, 52, 39, 0.1);
}

.checkout-form {
  grid-area: form;
  display: grid;
  gap: 24px;
  padding: clamp(26px, 4vw, 46px);
}

.checkout-title {
  max-width: 720px;
}

.checkout-title h1 {
  margin-top: 12px;
}

.checkout-form fieldset {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  border: 0;
}

.checkout-form legend {
  margin-bottom: 4px;
  color: var(--text);
  font-family: "Fraunces", Georgia, serif;
  font-size: 28px;
  font-weight: 520;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.form-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid .wide {
  grid-column: 1 / -1;
}

.delivery-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.delivery-options label {
  display: flex;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 247, 242, 0.72);
}

.delivery-options input {
  accent-color: var(--cta);
}

.delivery-options strong,
.delivery-options small {
  display: block;
}

.delivery-options small {
  margin-top: 4px;
  color: var(--muted);
}

.checkout-submit {
  justify-self: start;
}

.checkout-empty-state {
  display: grid;
  justify-items: start;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(165, 64, 96, 0.2);
  border-radius: 18px;
  background: rgba(248, 221, 213, 0.46);
}

.checkout-empty-state strong {
  color: var(--text);
  font: 600 25px/1.2 "Fraunces", Georgia, serif;
}

.checkout-empty-state p {
  margin: 0 0 6px;
  color: var(--muted);
}

.checkout-error-summary {
  padding: 16px 18px;
  border: 1px solid rgba(142, 39, 72, 0.34);
  border-left: 5px solid #a53f61;
  border-radius: 14px;
  background: #fff1f2;
  color: #76223f;
}

.checkout-error-summary ul {
  display: grid;
  gap: 4px;
  margin: 8px 0 0;
  padding-left: 20px;
}

.field input[aria-invalid="true"] {
  border-color: #a53f61;
  box-shadow: 0 0 0 3px rgba(165, 63, 97, 0.12);
}

.field-error {
  color: #8e2748;
  font-size: 13px;
  font-weight: 700;
}

.delivery-choice-static,
.gift-ready-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 17px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 247, 242, 0.72);
}

.delivery-choice-mark {
  flex: 0 0 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cta);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.delivery-choice-static strong,
.delivery-choice-static small,
.gift-ready-option strong,
.gift-ready-option small {
  display: block;
}

.delivery-choice-static small,
.gift-ready-option small {
  margin-top: 4px;
  color: var(--muted);
}

.gift-ready-option input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--cta);
}

.demo-payment-panel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(165, 64, 96, 0.2);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 247, 242, 0.96), rgba(247, 222, 218, 0.7));
}

.demo-payment-mark {
  flex: 0 0 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cta);
  color: #fffaf6;
  font-family: "Fraunces", Georgia, serif;
  font-size: 27px;
}

.demo-payment-panel strong,
.demo-payment-panel p {
  display: block;
}

.demo-payment-panel p {
  margin: 4px 0 0;
  color: var(--muted);
}

.checkout-status {
  min-height: 1.5em;
  margin: -10px 0 0;
  color: #8e2748;
  font-weight: 750;
}

.checkout-summary-card {
  grid-area: summary;
  position: sticky;
  top: 136px;
  display: grid;
  gap: 20px;
  padding: 24px;
}

.checkout-summary-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.checkout-summary-head strong {
  color: var(--text);
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  font-weight: 560;
}

.checkout-summary-head a {
  color: var(--cta);
  font-weight: 850;
}

.checkout-lines {
  display: grid;
  gap: 12px;
}

.checkout-total-block {
  margin-top: 18px;
}

.confirmation-page {
  min-height: 72vh;
  display: grid;
  align-items: center;
}

.confirmation-card {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 62px);
  background:
    linear-gradient(145deg, rgba(255, 252, 249, 0.96), rgba(248, 221, 213, 0.78)),
    url("assets/approved/runtime-webp/supplied-2-blush-texture-warm-fabric-towel.webp") center/cover;
}

.confirmation-card > img {
  width: 150px;
  margin-bottom: 34px;
}

.confirmation-card h1 {
  max-width: 700px;
}

.confirmation-card .lead {
  max-width: 620px;
  margin-top: 18px;
}

.confirmation-card .button-row {
  margin-top: clamp(22px, 3vw, 34px);
}

.order-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 32px 0;
}

.order-meta div {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 252, 249, 0.8);
}

.order-meta span,
.order-meta strong {
  display: block;
}

.confirmation-breakdown {
  max-width: 460px;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 252, 249, 0.84);
}

.order-meta span {
  color: var(--muted);
  font-size: 13px;
}

.order-meta strong {
  margin-top: 6px;
  color: var(--text);
}

@media (max-width: 1180px) {
  .expanded-catalog {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .checkout-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "form"
      "summary";
  }

  .checkout-summary-card {
    position: static;
  }
}

@media (max-width: 760px) {
  .checkout-layout {
    grid-template-areas:
      "summary"
      "form";
  }

  .expanded-catalog {
    grid-template-columns: 1fr;
  }

  .pink-promo-track {
    min-height: 58px;
    font-size: 30px;
  }

  .cart-panel {
    inset: auto 8px 8px;
    top: 48px;
    width: auto;
    padding: 18px;
    border-radius: 18px;
  }

  .cart-actions,
  .form-grid.two,
  .delivery-options,
  .order-meta {
    grid-template-columns: 1fr;
  }

  .cart-line,
  .checkout-line {
    grid-template-columns: 60px 1fr;
  }

  .cart-remove,
  .checkout-line b {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .retail-header.is-scrolled .retail-promo-strip {
    display: none;
  }

  .retail-header.is-scrolled .retail-nav-shell {
    min-height: 56px;
    padding-block: 8px;
    row-gap: 0;
  }

  .retail-header.is-scrolled .retail-brand-link {
    display: none;
  }
}

/* Overnight full-site refinement pass: bring content pages back to retail scale. */
.retail-nav-actions {
  justify-content: flex-end;
  gap: 12px;
}

.retail-search-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(232, 212, 203, 0.9);
  border-radius: 999px;
  background: rgba(255, 247, 242, 0.72);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.retail-search-link:hover,
.retail-search-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(165, 64, 96, 0.32);
  background: #fff6f1;
}

.retail-bag-pill {
  width: auto;
  min-width: 74px;
  padding: 0 15px;
  gap: 8px;
  grid-auto-flow: column;
}

.retail-bag-pill::before {
  content: "Bag";
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

.retail-slider {
  min-height: clamp(440px, 35vw, 510px);
}

.retail-hero-products {
  inset: 0 0 0 auto;
  width: min(760px, 56%);
  height: 100%;
}

.retail-slide:first-child .retail-hero-products {
  inset: 0 0 0 auto;
  width: min(760px, 56%);
  height: 100%;
}

.retail-slide:first-child .retail-hero-products::before {
  content: none;
}

.retail-slide:first-child .retail-hero-products img {
  position: static;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.retail-slide:first-child .retail-texture-card {
  display: none;
}

.page-intro {
  padding-top: clamp(44px, 6vw, 82px);
  padding-bottom: clamp(44px, 6vw, 84px);
}

.intro-grid {
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.intro-grid h1,
.checkout-title h1,
.confirmation-card h1 {
  font-size: clamp(48px, 5.5vw, 86px);
  font-weight: 450;
  line-height: 1;
}

.page-intro .lead,
.checkout-title .lead,
.confirmation-card .lead {
  max-width: 660px;
  margin-top: 18px;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.42;
}

.page-intro .eyebrow,
.center-head > .eyebrow,
.section-head > .eyebrow,
.editorial-copy > .eyebrow,
.bundle-copy > .eyebrow,
.texture-proof-copy > .eyebrow,
.ingredients-band .eyebrow,
.signup-card .eyebrow,
.checkout-title .micro-label,
.checkout-summary-head .micro-label {
  display: none;
}

#product-grid {
  padding-top: 30px;
}

.expanded-catalog .product-card {
  min-height: 100%;
}

.routine-steps,
.ingredients-band,
.checkout-page,
.confirmation-page {
  padding-top: clamp(48px, 6vw, 82px);
}

.center-head h2,
.routine-copy h2,
.texture-proof-copy h2,
.signup-card h2 {
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 450;
}

.choice-card {
  min-height: 176px;
}

.page-intro .routine-choices {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  grid-template-columns: 1fr;
  align-self: center;
}

.checkout-form {
  gap: 20px;
}

.checkout-title {
  max-width: 760px;
}

.sheet-favorite.is-saved,
.sheet-favorite[aria-pressed="true"] {
  background: var(--cta);
  border-color: var(--cta);
  color: #fff7f2;
}

@media (max-width: 1020px) {
  .retail-bag-pill {
    min-width: 58px;
    padding: 0 12px;
  }

  .retail-bag-pill::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .retail-slider {
    min-height: 620px;
  }

  .retail-hero-products,
  .retail-slide:first-child .retail-hero-products,
  .retail-slide:nth-child(2) .retail-hero-products,
  .retail-slide:nth-child(3) .retail-hero-products,
  .retail-slide:nth-child(4) .retail-hero-products {
    inset: auto 16px 82px 16px;
    width: auto;
    height: 300px;
    border-radius: 12px;
  }

  .retail-bag-pill {
    min-width: 66px;
    padding: 0 12px;
  }

  .retail-bag-pill::before {
    display: inline;
    font-size: 13px;
  }

  .intro-grid h1,
  .checkout-title h1,
  .confirmation-card h1 {
    font-size: clamp(42px, 13vw, 58px);
  }
}

.product-card.tray-shot .media {
  place-items: center;
  padding: 12px;
  background: linear-gradient(180deg, rgba(255, 252, 249, 0.92), rgba(248, 238, 230, 0.82));
}

.product-card.tray-shot .media::before {
  display: none;
}

.product-card.tray-shot .media img,
.product-card.tray-shot.compact .media img,
.expanded-catalog .product-card.tray-shot .media img {
  width: 100%;
  height: 286px;
  max-height: 286px;
  object-fit: contain;
  filter: none;
}

@media (max-width: 640px) {
  .product-card.tray-shot .media img,
  .product-card.tray-shot.compact .media img,
  .expanded-catalog .product-card.tray-shot .media img {
    height: 224px;
    max-height: 224px;
  }
}

/* Client feedback pass: header utilities, slider movement, soft shelf controls, and footer. */
.retail-nav-shell {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}

.retail-brand-link {
  grid-column: 2;
  justify-self: center;
}

.retail-nav-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.retail-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(255, 250, 247, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(87, 52, 39, 0.08);
}

.retail-search-form {
  width: clamp(210px, 24vw, 360px);
}

.retail-search-form input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(232, 212, 203, 0.94);
  border-radius: 999px;
  background: rgba(255, 252, 249, 0.82);
  color: var(--text);
  font: 760 14px/1 "DM Sans", Arial, sans-serif;
  outline: none;
  padding: 0 18px;
  transition: border-color 170ms ease, background 170ms ease, box-shadow 170ms ease;
}

.retail-search-form input::placeholder {
  color: rgba(87, 52, 45, 0.56);
}

.retail-search-form input:focus {
  border-color: rgba(165, 64, 96, 0.48);
  background: #fffaf7;
  box-shadow: 0 0 0 4px rgba(197, 63, 105, 0.1);
}

.retail-bag-pill {
  width: auto;
  min-width: 58px;
  height: 44px;
  display: inline-grid;
  grid-template-columns: auto auto;
  place-items: center;
  gap: 7px;
  padding: 0 13px;
  border-radius: 999px;
}

.retail-bag-pill::before {
  content: none;
}

.bag-icon {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bag-count-inline {
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--cta);
  color: #fff7f2;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.retail-category-rail a[aria-current="page"] {
  color: var(--cta);
}

.retail-category-rail a[aria-current="page"]::after {
  transform: scaleX(1);
}

.retail-slide {
  opacity: 1;
  visibility: visible;
  transform: translateX(var(--slide-offset, 100%));
  transition: transform 320ms cubic-bezier(0.22, 0.72, 0.22, 1);
  will-change: transform;
}

.retail-slider::before {
  opacity: 0;
}

.retail-campaign-copy {
  text-shadow: 0 1px 18px rgba(255, 252, 249, 0.86);
}

.retail-slide.is-before {
  transform: translateX(-100%);
}

.retail-slide.is-active {
  z-index: 2;
  transform: translateX(0);
}

.soft-shelf-item {
  grid-template-columns: clamp(138px, 10.2vw, 174px) minmax(0, 1fr);
}

.soft-shelf-qty {
  display: inline-grid;
  grid-template-columns: 40px 34px 40px;
  align-items: center;
  justify-content: end;
  min-width: 114px;
  border: 1px solid rgba(165, 64, 96, 0.22);
  border-radius: 999px;
  background: rgba(255, 247, 242, 0.78);
  overflow: hidden;
}

.soft-shelf-qty button {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--cta);
  font-size: 22px;
  font-weight: 760;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.soft-shelf-qty button:hover,
.soft-shelf-qty button:focus-visible {
  background: var(--cta);
  color: #fff7f2;
}

.soft-shelf-qty output {
  color: var(--text);
  font: 900 14px/1 "DM Sans", Arial, sans-serif;
  text-align: center;
}

.sale-info-strip {
  position: relative;
  min-height: clamp(420px, 38vw, 560px);
  overflow: hidden;
  isolation: isolate;
  background: #8e4c55;
}

.sale-info-strip::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(65, 31, 27, 0.9) 0%, rgba(74, 33, 31, 0.72) 31%, rgba(74, 33, 31, 0.14) 58%, rgba(74, 33, 31, 0.02) 100%);
}

.sale-info-strip > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sale-info-content {
  width: min(1180px, calc(100% - 40px));
  min-height: inherit;
  display: grid;
  align-content: center;
  justify-items: start;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 92px) 0;
  color: #fff8f1;
}

.sale-info-content .eyebrow {
  color: #ffd5d5;
}

.sale-info-content h2 {
  max-width: 430px;
  margin-top: 14px;
  color: inherit;
  font-size: clamp(54px, 6.2vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.sale-info-content > p:not(.eyebrow) {
  max-width: 420px;
  margin: 22px 0 28px;
  color: rgba(255, 248, 241, 0.86);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
}

.sale-info-cta {
  border-color: #fff8f1;
  background: #fff8f1;
  color: #512c27;
  box-shadow: 0 18px 38px rgba(45, 22, 20, 0.24);
}

.sale-info-cta:hover,
.sale-info-cta:focus-visible {
  background: #f7d7d3;
  color: #512c27;
}

@media (max-width: 900px) {
  .sale-info-strip {
    min-height: 480px;
  }

  .sale-info-strip::after {
    background: linear-gradient(90deg, rgba(65, 31, 27, 0.92) 0%, rgba(74, 33, 31, 0.72) 42%, rgba(74, 33, 31, 0.08) 76%);
  }

  .sale-info-strip > img {
    object-position: 58% center;
  }

  .sale-info-content h2,
  .sale-info-content > p:not(.eyebrow) {
    max-width: 360px;
  }
}

@media (max-width: 640px) {
  .sale-info-strip {
    min-height: 0;
    display: flex;
    flex-direction: column;
    background: #512f2a;
  }

  .sale-info-strip::after {
    display: none;
  }

  .sale-info-strip > img {
    position: relative;
    z-index: auto;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
  }

  .sale-info-content {
    width: 100%;
    min-height: 0;
    padding: 32px 22px 38px;
  }

  .sale-info-content h2 {
    max-width: none;
    font-size: clamp(48px, 16vw, 66px);
  }

  .sale-info-content > p:not(.eyebrow) {
    max-width: 34ch;
    margin: 18px 0 24px;
    font-size: 16px;
  }
}

.texture-note-card {
  min-height: 510px;
  align-content: start;
}

.texture-note-card p {
  max-width: none;
  line-height: 1.48;
}

.texture-note-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #70483f;
  font-size: 14px;
  line-height: 1.35;
}

.texture-note-list li {
  position: relative;
  padding-left: 18px;
}

.texture-note-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--cta);
}

.formula-dossier {
  background:
    linear-gradient(180deg, #fff7f2 0%, #fffcf9 48%, #fff1e9 100%);
}

.formula-dossier-inner {
  display: grid;
  gap: clamp(30px, 5vw, 66px);
}

.formula-dossier-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.44fr);
  align-items: end;
  gap: clamp(28px, 5vw, 76px);
  max-width: none;
}

.formula-dossier-head h2 {
  max-width: 820px;
  font-size: clamp(48px, 5.6vw, 86px);
}

.formula-dossier-head .lead {
  max-width: 460px;
  color: var(--muted);
}

.dossier-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: start;
}

.dossier-media {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
}

.dossier-media-main {
  min-height: 570px;
  border: 1px solid rgba(232, 212, 203, 0.82);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(87, 52, 39, 0.1);
}

.dossier-media-main img {
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
}

.dossier-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.dossier-mini-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(232, 212, 203, 0.82);
  border-radius: 8px;
}

.dossier-stack {
  display: grid;
  gap: 18px;
}

.dossier-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: clamp(18px, 2.2vw, 32px);
  padding: clamp(22px, 2.4vw, 34px);
  border: 1px solid rgba(232, 212, 203, 0.9);
  border-radius: 8px;
  background: rgba(255, 252, 249, 0.92);
  box-shadow: 0 18px 48px rgba(87, 52, 39, 0.07);
}

.dossier-number {
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff0e7;
  color: var(--cta);
  font-family: "Fraunces", Georgia, serif;
  font-size: 52px;
  line-height: 1;
}

.dossier-card h3 {
  margin-bottom: 8px;
  font-size: clamp(32px, 3.2vw, 50px);
  line-height: 0.96;
}

.dossier-card p {
  color: var(--muted);
}

.dossier-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0;
}

.dossier-fact {
  min-height: 88px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(232, 212, 203, 0.74);
  border-radius: 8px;
  background: #fff7f2;
}

.dossier-fact strong {
  min-width: 0;
  color: var(--text);
  font-family: "Fraunces", Georgia, serif;
  font-size: 25px;
  line-height: 1;
  overflow-wrap: anywhere;
}

.dossier-fact span {
  min-width: 0;
  color: #805447;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.dossier-copy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.dossier-copy-grid h4 {
  margin-bottom: 6px;
  color: var(--cta);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dossier-copy-grid p {
  color: #5f443d;
  font-size: 14px;
  line-height: 1.45;
}

.signup-editorial-panel {
  background: #f8d6e2;
}

.signup-editorial-panel > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.site-footer {
  padding-top: clamp(70px, 7vw, 104px);
}

.footer-inner {
  grid-template-columns: minmax(260px, 1fr) minmax(300px, 0.78fr) minmax(260px, 1fr);
  align-items: center;
}

.footer-brand {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 18px;
}

.footer-brand img {
  width: clamp(240px, 28vw, 430px);
  max-width: 100%;
}

.footer-brand p {
  font-size: 17px;
}

.footer-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 36px);
}

.footer-links-right {
  justify-self: end;
}

.footer-links a,
.footer-links span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 247, 242, 0.78);
}

/* Compact-phone stability pass. Keep the retail header's full geometry while
   scrolling so the page does not jump when the promo strip and brand vanish,
   and keep search text at the browser's no-zoom size. */
@media (max-width: 760px) {
  .retail-header.is-scrolled .retail-promo-strip {
    display: grid !important;
  }

  .retail-header.is-scrolled .retail-nav-shell {
    min-height: 72px !important;
    padding-block: 12px !important;
    row-gap: 12px !important;
  }

  .retail-header.is-scrolled .retail-brand-link {
    display: flex !important;
  }

  .retail-search-form input {
    font-size: 16px;
    line-height: 1.2;
  }
}

@media (max-width: 1020px) {
  .retail-nav-shell {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  }

  .retail-brand-link {
    grid-column: 2;
    justify-self: center;
  }

  .retail-nav-actions {
    grid-column: 3;
    justify-self: end;
  }

  .retail-search-form {
    width: clamp(190px, 34vw, 300px);
  }

  .formula-dossier-head,
  .dossier-layout {
    grid-template-columns: 1fr;
  }

  .formula-dossier-head .lead {
    max-width: 640px;
  }

  .dossier-media {
    position: static;
  }

  .dossier-media-main,
  .dossier-media-main img {
    min-height: 460px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-brand {
    order: -1;
  }

  .footer-links-left,
  .footer-links-right {
    width: min(620px, 100%);
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .retail-nav-shell {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    row-gap: 12px;
    padding-block: 12px;
  }

  .retail-brand-link {
    grid-column: 2;
    justify-self: center;
  }

  .retail-nav-actions {
    grid-column: 1 / -1;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .retail-search-form {
    width: 100%;
  }

  .retail-bag-pill {
    min-width: 58px;
  }

  .retail-bag-pill::before {
    content: none;
  }

  .soft-shelf-item {
    grid-template-columns: minmax(104px, 32%) minmax(0, 1fr);
  }

  .texture-note-grid {
    grid-template-columns: 1fr;
  }

  .texture-note-card {
    min-height: 0;
  }

  .dossier-card {
    grid-template-columns: 1fr;
  }

  .dossier-number {
    width: 92px;
    height: 92px;
    font-size: 40px;
  }

  .dossier-facts,
  .dossier-copy-grid {
    grid-template-columns: 1fr;
  }

  .dossier-media-main,
  .dossier-media-main img {
    min-height: 360px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
}

@media (max-width: 520px) {
  .soft-shelf-item {
    grid-template-columns: 94px minmax(0, 1fr);
  }

  .soft-shelf-qty {
    min-width: 114px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding-inline: clamp(12px, 4vw, 20px);
  }

  .footer-inner {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 8px;
    align-items: start;
    justify-items: stretch;
  }

  .footer-brand {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .footer-links-left,
  .footer-links-right {
    display: contents;
  }

  .footer-links-left > div:first-child {
    grid-column: 1;
    grid-row: 2;
  }

  .footer-links-left > div:last-child {
    grid-column: 2;
    grid-row: 2;
  }

  .footer-links-right > div:first-child {
    grid-column: 3;
    grid-row: 2;
  }

  .footer-links-right > div:last-child {
    width: min(100%, 360px);
    grid-column: 1 / -1;
    grid-row: 3;
    justify-self: center;
  }

  .footer-links > div {
    min-width: 0;
    text-align: center;
  }

  .footer-links h3 {
    margin-bottom: 12px;
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .footer-links a,
  .footer-links span {
    font-size: clamp(12px, 3.5vw, 14px);
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

}

@media (max-width: 900px) {
  .detail-preview {
    min-height: auto;
    padding-block: clamp(44px, 7vw, 64px);
  }

  .detail-preview::before {
    width: 100%;
    opacity: 0.36;
  }

  .detail-preview .section-inner {
    width: min(760px, calc(100% - 40px));
    justify-content: center;
  }

  .detail-slider {
    width: 100%;
    justify-items: center;
  }

  .detail-slider-viewport {
    border-radius: 22px;
  }

  .detail-preview .sheet-panel {
    width: 100%;
    grid-template-columns: minmax(250px, 0.76fr) minmax(0, 1.12fr);
  }

  .detail-preview .sheet-content {
    min-width: 0;
  }

  .detail-preview .detail-slide {
    border-radius: 22px;
  }

  .detail-preview .sheet-media {
    min-height: 720px;
  }

  .detail-preview .sheet-media img {
    width: 100%;
    max-height: 620px;
    transform: rotate(-4deg) scale(0.96);
  }

  .detail-preview .sheet-top {
    padding: 48px 28px 22px;
  }

  .detail-preview .sheet-top h2 {
    font-size: clamp(40px, 5.6vw, 48px);
  }

  .detail-preview .sheet-price {
    margin: 12px 0 10px;
    font-size: 30px;
  }

  .detail-preview .ingredient-row {
    margin: 20px 0;
  }

  .detail-preview .ingredient {
    min-width: 0;
    min-height: 60px;
    gap: 8px;
    padding: 0 8px;
    font-size: 13px;
  }

  .detail-preview .ingredient-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
  }

  .detail-preview .sheet-actions {
    gap: 10px;
    margin-top: 18px;
    padding-top: 18px;
  }

  .detail-preview .sheet-actions .btn {
    min-height: 50px;
    padding-inline: 12px;
  }

  .detail-preview .sheet-detail {
    padding: 20px;
  }

  .detail-preview .sheet-detail img {
    height: 128px;
    margin: 10px 0 12px;
  }

  .detail-preview .sheet-detail p {
    font-size: 14px;
    line-height: 1.45;
  }
}

@media (max-width: 640px) {
  .detail-preview {
    padding-block: 36px;
  }

  .detail-preview .section-inner {
    width: calc(100% - 28px);
  }

  .detail-preview .sheet-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .detail-preview .sheet-media {
    min-height: 236px;
    max-height: 236px;
  }

  .detail-preview .sheet-media img {
    width: 104%;
    max-height: 268px;
    transform: rotate(-5deg) scale(1.04);
  }

  .detail-preview .sheet-top {
    padding: 28px 18px 18px;
  }

  .detail-preview .sheet-top h2 {
    font-size: clamp(34px, 10.6vw, 42px);
  }

  .detail-preview .sheet-price {
    margin: 9px 0 7px;
    font-size: 28px;
  }

  .detail-preview .sheet-top > p {
    font-size: 14px;
    line-height: 1.45;
  }

  .detail-preview .ingredient-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 16px 0;
  }

  .detail-preview .ingredient {
    min-height: 74px;
    flex-direction: column;
    gap: 6px;
    padding: 4px;
    text-align: center;
    font-size: 11px;
    line-height: 1.2;
  }

  .detail-preview .ingredient-icon {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
    font-size: 17px;
  }

  .detail-preview .skin-pill {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .detail-preview .sheet-actions {
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
  }

  .detail-preview .sheet-actions .btn {
    min-height: 50px;
    padding-inline: 10px;
    font-size: 13px;
  }

  .detail-preview .sheet-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-preview .sheet-detail {
    min-width: 0;
    padding: 16px;
  }

  .detail-preview .sheet-detail + .sheet-detail {
    border-top: 0;
    border-left: 1px solid var(--border);
  }

  .detail-preview .sheet-detail h3 {
    font-size: clamp(22px, 7vw, 28px);
  }

  .detail-preview .sheet-detail img {
    height: 108px;
    margin: 8px 0 10px;
  }

  .detail-preview .sheet-detail p {
    font-size: 13px;
    line-height: 1.45;
  }

  .detail-slider-controls {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 4px;
    width: 100%;
    padding: 8px;
    border-radius: 18px;
  }

  .detail-slider-dots {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(5, 44px);
    justify-content: center;
    gap: 0;
    overflow: visible;
  }

  .detail-slider-dots button {
    width: 44px;
  }
}

@media (min-width: 341px) and (max-width: 640px) {
  .detail-preview .sheet-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 340px) {
  .detail-slider-controls {
    grid-template-columns: 44px 1fr 44px;
  }

  .detail-slider-dots {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .detail-slider-button[data-detail-next] {
    grid-column: 3;
  }

  .detail-preview .sheet-media {
    min-height: 216px;
    max-height: 216px;
  }

  .detail-preview .sheet-media img {
    width: 84%;
    max-height: 204px;
    transform: rotate(-3deg) scale(0.98);
  }

  .detail-preview .sheet-actions {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Routine set selected mockup implementation. */
.routine-kicker {
  margin: 0 0 14px;
  color: var(--cta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.routine-choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.routine-choice-pill {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(165, 64, 96, 0.22);
  border-radius: 999px;
  background: rgba(255, 247, 242, 0.86);
  color: var(--cta);
  padding: 0 17px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.routine-choice-pill:hover,
.routine-choice-pill:focus-visible,
.routine-choice-pill.is-active {
  border-color: var(--cta);
  background: var(--cta);
  color: #fff7f2;
}

.routine-choice-pill:active {
  transform: translateY(1px);
}

.routine-choice-panel {
  display: none;
}

.routine-choice-panel.is-active {
  display: block;
}

.routine-day-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: stretch;
}

.routine-day-copy {
  display: grid;
  align-content: center;
}

.routine-day-copy h1 {
  max-width: 760px;
  font-size: clamp(48px, 5vw, 78px);
}

.routine-day-media {
  min-height: 560px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #f3dfd5;
  box-shadow: var(--shadow);
}

.routine-day-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(18px, 3vw, 42px);
}

.routine-passport {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  border-top: 1px solid var(--border);
}

.routine-passport .routine-choice-panel {
  display: grid;
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.routine-passport .routine-choice-panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.routine-day-copy > .inline-actions {
  margin-top: 26px;
  margin-left: 102px;
}

.passport-row {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.routine-passport .passport-row:last-child {
  border-bottom: 0;
}

.passport-row strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 25px;
  line-height: 1;
}

.passport-row span {
  color: var(--muted);
}

.passport-row small {
  color: var(--muted);
  font-weight: 850;
  white-space: nowrap;
}

.routine-focus-section {
  background: var(--surface);
}

.routine-focus-card {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(0, 0.86fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 252, 249, 0.86);
  box-shadow: var(--shadow);
  overflow: visible;
}

.routine-focus-media {
  min-height: clamp(430px, 44vw, 560px);
  display: grid;
  place-items: center;
  border-right: 1px solid var(--border);
  background: #f3dfd5;
  overflow: hidden;
}

.routine-focus-showcase {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.routine-focus-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(30px, 4vw, 58px);
}

.routine-focus-copy h2,
.routine-formula-panel h2,
.routine-product-closer-copy h2 {
  font-size: clamp(40px, 4.5vw, 66px);
  line-height: 0.98;
  font-weight: 450;
}

.routine-step-details {
  min-height: 154px;
}

.routine-detail-list {
  display: grid;
  gap: 12px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.routine-detail-list li {
  color: var(--muted);
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.routine-bundles-section {
  background: linear-gradient(180deg, var(--bg), var(--surface));
}

.routine-bundles-head {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}

.routine-bundles-head > div {
  grid-column: 2;
  text-align: center;
}

.routine-bundles-head .btn {
  grid-column: 3;
  justify-self: end;
}

.routine-bundle-ledger {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 1120px);
  margin: 32px auto 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 252, 249, 0.78);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.bundle-ledger-card {
  min-height: 100%;
  padding: clamp(22px, 2.4vw, 34px);
  display: grid;
  grid-template-rows: 210px auto 1fr auto;
  gap: 20px;
  border-right: 1px solid var(--border);
}

.bundle-ledger-card h3 {
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1;
}

.bundle-ledger-head span,
.bundle-ledger-detail p {
  color: var(--muted);
}

.bundle-ledger-card:last-child {
  border-right: 0;
}

.bundle-ledger-card img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  filter: drop-shadow(0 22px 24px rgba(87, 52, 39, 0.13));
}

.bundle-ledger-head {
  display: grid;
  gap: 6px;
}

.bundle-ledger-head strong {
  color: var(--cta);
  font-family: "Fraunces", Georgia, serif;
  font-size: 42px;
  line-height: 1;
}

.bundle-ledger-distinction {
  display: none;
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.bundle-ledger-details {
  display: grid;
  gap: 14px;
}

.bundle-ledger-detail {
  display: grid;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.bundle-ledger-detail summary {
  list-style: none;
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  pointer-events: none;
  text-transform: uppercase;
}

.bundle-ledger-detail summary::-webkit-details-marker {
  display: none;
}

.bundle-ledger-detail p {
  margin: 0;
}

.routine-ingredients-section {
  background: var(--surface);
}

.routine-ingredient-dossier {
  display: grid;
  grid-template-columns: minmax(380px, 0.76fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
  min-height: 670px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 252, 249, 0.86);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 54px);
}

.routine-dossier-media {
  min-height: 100%;
  display: grid;
  grid-template-rows: minmax(430px, 1fr) 128px;
  gap: 14px;
}

.routine-dossier-media img {
  border-radius: var(--radius);
}

.routine-dossier-main {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.routine-mini-textures {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.routine-mini-textures img {
  width: 100%;
  height: 128px;
  object-fit: cover;
}

.routine-formula-panel {
  display: grid;
  align-content: center;
  gap: 20px;
}

.formula-detail-stage {
  min-height: 220px;
  display: grid;
  align-items: center;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 247, 242, 0.95), rgba(255, 252, 249, 0.9)),
    url("assets/approved/runtime-webp/supplied-4-blush-texture-blush-pink-label-paper.webp") center / cover;
}

.formula-detail-stage .routine-choice-panel {
  display: grid;
  grid-area: 1 / 1;
  align-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.formula-detail-stage .routine-choice-panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.formula-detail-stage span {
  color: var(--cta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.formula-detail-stage h3 {
  margin-top: 8px;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1;
}

.formula-detail-stage p {
  max-width: 620px;
  margin-top: 12px;
  color: var(--muted);
}

.formula-detail-stage small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 800;
}

.formula-note-list {
  display: grid;
  gap: 10px;
}

.formula-note-row {
  min-height: 72px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 247, 242, 0.58);
  padding: 14px 16px;
  text-align: left;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.formula-note-row:hover,
.formula-note-row:focus-visible,
.formula-note-row.is-active {
  border-color: rgba(165, 64, 96, 0.42);
  background: #fff2ea;
}

.formula-note-row:active {
  transform: translateY(1px);
}

.formula-note-row span,
.formula-note-row small {
  color: var(--cta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.formula-note-row strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.04;
}

.routine-product-closer {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.54fr);
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: clamp(30px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(255, 252, 249, 0.18), rgba(255, 248, 242, 0.98) 67%),
    url("assets/approved/runtime-webp/products-page/routine-set-all-five-essentials-sunlit.webp") left center / cover no-repeat;
}

.routine-product-closer-copy {
  grid-column: 2;
  display: grid;
  gap: 18px;
}

@media (max-width: 1080px) {
  .routine-day-grid,
  .routine-focus-card,
  .routine-bundle-ledger,
  .routine-ingredient-dossier,
  .routine-product-closer {
    grid-template-columns: 1fr;
  }

  .routine-focus-media {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .bundle-ledger-card {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .bundle-ledger-card:last-child {
    border-bottom: 0;
  }

  .bundle-ledger-card {
    grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
    grid-template-rows: auto auto auto;
  }

  .bundle-ledger-card img {
    grid-row: 1 / span 3;
    height: 260px;
    align-self: center;
  }

  .routine-product-closer {
    min-height: 620px;
    background:
      linear-gradient(180deg, rgba(255, 252, 249, 0.08), rgba(255, 248, 242, 0.98) 60%),
      url("assets/approved/runtime-webp/products-page/routine-set-all-five-essentials-sunlit.webp") top center / cover no-repeat;
    padding-top: 360px;
  }

  .routine-product-closer-copy {
    grid-column: 1;
    max-width: 680px;
  }
}

@media (max-width: 900px) {
  .routine-bundles-head {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .routine-bundles-head > div,
  .routine-bundles-head .btn {
    grid-column: auto;
    justify-self: center;
    text-align: center;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .routine-bundle-ledger {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bundle-ledger-card {
    grid-template-columns: 1fr;
    grid-template-rows: 140px auto 1fr auto;
    gap: 14px;
    padding: 16px;
    border-right: 1px solid var(--border);
    border-bottom: 0;
  }

  .bundle-ledger-card:last-child {
    border-right: 0;
  }

  .bundle-ledger-card img {
    grid-row: auto;
    height: 140px;
  }

  .bundle-ledger-card h3 {
    font-size: 28px;
  }

  .bundle-ledger-head strong {
    font-size: 34px;
  }

  .bundle-ledger-head span,
  .bundle-ledger-detail p {
    font-size: 14px;
    line-height: 1.4;
  }

  .bundle-ledger-details {
    gap: 10px;
  }

  .bundle-ledger-detail {
    padding-top: 10px;
  }

  .bundle-ledger-card .add-btn {
    width: 100%;
    min-height: 44px;
    padding: 10px 8px;
  }

  .routine-ingredient-dossier {
    grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
    gap: 20px;
    min-height: 620px;
    padding: 20px;
  }

  .routine-dossier-media {
    grid-template-rows: minmax(340px, 1fr) 76px;
  }

  .routine-dossier-main {
    min-height: 340px;
  }

  .routine-mini-textures {
    gap: 8px;
  }

  .routine-mini-textures img {
    height: 76px;
  }

  .routine-formula-panel {
    gap: 14px;
  }

  .formula-detail-stage {
    min-height: 210px;
    padding: 18px;
  }

  .formula-note-list {
    gap: 8px;
  }

  .formula-note-row {
    min-height: 64px;
    gap: 10px;
    padding: 10px 12px;
  }

  .formula-note-row strong {
    font-size: 20px;
  }
}

@media (max-width: 760px) {
  .routine-day-media {
    min-height: 360px;
  }

  .passport-row,
  .formula-note-row {
    grid-template-columns: 1fr;
  }

  .routine-day-copy > .inline-actions {
    margin-left: 0;
  }

  .passport-row small {
    white-space: normal;
  }

  .routine-focus-media {
    min-height: 420px;
  }

  .routine-focus-copy,
  .routine-ingredient-dossier {
    padding: 22px;
  }

  .bundle-ledger-card {
    grid-template-columns: minmax(104px, 0.38fr) minmax(0, 1fr);
    grid-template-rows: auto auto auto auto;
    gap: 12px 14px;
    padding: 16px;
  }

  .bundle-ledger-card img {
    grid-column: 1;
    grid-row: 1 / span 2;
    height: 142px;
    align-self: center;
  }

  .bundle-ledger-head {
    align-content: end;
    gap: 4px;
  }

  .bundle-ledger-card h3 {
    font-size: clamp(27px, 8.5vw, 34px);
  }

  .bundle-ledger-head strong {
    font-size: 34px;
  }

  .bundle-ledger-head span {
    font-size: 13px;
    line-height: 1.35;
  }

  .bundle-ledger-distinction {
    display: block;
    align-self: start;
    font-size: 14px;
    line-height: 1.35;
  }

  .bundle-ledger-details,
  .bundle-ledger-card .add-btn {
    grid-column: 1 / -1;
  }

  .bundle-ledger-details {
    gap: 0;
  }

  .bundle-ledger-detail {
    gap: 0;
    padding-top: 0;
  }

  .bundle-ledger-detail summary {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    pointer-events: auto;
  }

  .bundle-ledger-detail summary::after {
    content: "+";
    flex: 0 0 auto;
    color: var(--cta);
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 18px;
    line-height: 1;
  }

  .bundle-ledger-detail[open] summary::after {
    content: "\2212";
  }

  .bundle-ledger-detail p {
    padding: 0 0 12px;
    font-size: 14px;
    line-height: 1.4;
  }

  .bundle-ledger-card .add-btn {
    min-height: 44px;
    width: 100%;
  }

  .routine-dossier-media {
    grid-template-rows: 300px auto;
  }

  .routine-dossier-main {
    min-height: 300px;
  }

  .routine-mini-textures img {
    height: 92px;
  }

  .formula-detail-stage {
    min-height: 270px;
  }

  .routine-product-closer {
    min-height: 600px;
    padding: 320px 22px 28px;
  }
}

@media (max-width: 1080px) {
  .about-story-poster,
  .about-values-ledger,
  .about-faq-desk,
  .about-contact-editorial {
    grid-template-columns: 1fr;
  }

  .about-story-copy {
    align-content: start;
  }

  .about-story-visual {
    min-height: 520px;
  }

  .about-values-media,
  .about-faq-topic-rail,
  .about-contact-form-panel {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid var(--border);
  }

  .about-faq-topic-rail {
    min-height: 460px;
    align-content: end;
  }

  .about-faq-panel {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .about-story-copy,
  .about-faq-topic-rail,
  .about-faq-panel,
  .about-contact-copy,
  .about-contact-form-panel {
    padding: 24px;
  }

  .about-story-poster,
  .about-values-ledger,
  .about-faq-desk,
  .about-contact-editorial {
    border-radius: 8px;
  }

  .about-story-visual {
    min-height: 390px;
  }

  .about-story-image {
    min-height: 390px;
  }

  .about-story-wordmark {
    top: 24px;
    width: min(78%, 360px);
  }

  .about-values-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-values-media img {
    min-height: 300px;
  }

  .about-contact-status-grid {
    grid-template-columns: 1fr;
  }

  .about-faq-panel {
    min-height: auto;
  }

  .about-faq-question {
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 14px;
  }

  .about-faq-icon {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }
}

/* T006: compact, touch-safe catalogue composition by viewport class. */
.product-card-qty {
  grid-template-columns: 44px minmax(28px, 1fr) 44px;
  min-width: 120px;
}

.product-card-qty button {
  width: 44px;
  height: 44px;
}

@media (max-width: 359px) {
  .expanded-catalog {
    gap: 14px;
  }

  .expanded-catalog .product-card {
    grid-template-rows: auto auto;
  }

  .expanded-catalog .product-card .media {
    height: 210px;
    min-height: 210px;
    padding: 12px;
  }

  .expanded-catalog .product-card .media img,
  .expanded-catalog .product-card.tray-shot .media img {
    height: 184px;
    max-height: 184px;
  }

  .expanded-catalog .product-card .content {
    gap: 12px;
    padding: 16px;
  }

  .expanded-catalog .product-card p {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.4;
  }

  .expanded-catalog .product-buy {
    gap: 10px;
  }
}

@media (min-width: 360px) and (max-width: 640px) {
  .expanded-catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 10px;
  }

  .expanded-catalog .product-card {
    grid-template-rows: auto minmax(0, 1fr);
    border-radius: 12px;
  }

  .expanded-catalog .product-card .media {
    height: 156px;
    min-height: 156px;
    padding: 8px;
  }

  .expanded-catalog .product-card .media img,
  .expanded-catalog .product-card.tray-shot .media img {
    height: 140px;
    max-height: 140px;
  }

  .expanded-catalog .product-card .content {
    gap: 11px;
    padding: 12px;
  }

  .expanded-catalog .product-card h3 {
    font-size: clamp(20px, 5.5vw, 23px);
    line-height: 1.02;
  }

  .expanded-catalog .product-card p {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.38;
  }

  .expanded-catalog .card-tags {
    gap: 5px;
  }

  .expanded-catalog .card-tags span {
    min-height: 26px;
    padding-inline: 6px;
  }

  .expanded-catalog .product-buy {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .expanded-catalog .price {
    font-size: 23px;
  }

  .expanded-catalog .product-card-qty {
    width: 100%;
  }
}

/* T010 Home responsive composition */
.dossier-switcher {
  display: none;
}

.retail-arrow,
.soft-shelf-qty button {
  min-width: 44px;
  min-height: 44px;
}

/* Keep both quantity controls inside the fixed-width shelf capsule. */
.soft-shelf-qty {
  grid-template-columns: 44px 26px 44px;
}

@media (min-width: 761px) and (max-width: 900px) {
  .retail-hero {
    padding-block: 22px 34px;
  }

  .retail-hero-grid {
    grid-template-columns: minmax(0, 1fr) 216px;
    gap: 14px;
  }

  .retail-slider {
    min-height: 510px;
  }

  .retail-campaign-copy {
    left: 26px;
    right: auto;
    top: 28px;
    width: min(280px, 52%);
    gap: 13px;
  }

  .retail-campaign-copy h1,
  .retail-campaign-copy h2 {
    font-size: clamp(42px, 6.4vw, 54px);
  }

  .retail-campaign-copy p {
    font-size: 15px;
  }

  .retail-hero-products,
  .retail-slide:nth-child(2) .retail-hero-products,
  .retail-slide:nth-child(3) .retail-hero-products,
  .retail-slide:nth-child(4) .retail-hero-products {
    width: 52%;
  }

  .retail-side-stack {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .retail-promo-card,
  .retail-promo-card.is-dark {
    min-height: 0;
    padding: 16px;
  }

  .retail-promo-card:not(.is-dark) {
    padding-right: 72px;
  }

  .retail-promo-card strong {
    margin-block: 6px;
    font-size: 31px;
  }

  .retail-promo-card p {
    font-size: 12px;
    line-height: 1.3;
  }

  .retail-promo-card img {
    right: 4px;
    bottom: 5px;
    width: 68px;
    max-height: 76px;
  }

  .retail-product-rail {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
  }

  .retail-rail-product {
    min-height: 132px;
    grid-template-columns: 1fr;
    grid-template-rows: 68px auto;
    gap: 7px;
    justify-items: center;
    padding: 10px 7px;
    text-align: center;
  }

  .retail-rail-product img {
    width: 58px;
    height: 68px;
  }

  .retail-rail-product strong {
    font-size: 17px;
    line-height: 1.05;
  }

  .retail-rail-product em {
    margin-top: 4px;
  }

  .formula-dossier {
    padding-block: 68px;
  }

  .formula-dossier-inner {
    gap: 34px;
  }

  .formula-dossier-head h2 {
    max-width: 680px;
    font-size: clamp(48px, 7.2vw, 62px);
  }

  .dossier-layout {
    grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
    gap: 20px;
    align-items: start;
  }

  .dossier-media {
    position: sticky;
    top: 122px;
    gap: 10px;
  }

  .dossier-media-main,
  .dossier-media-main img {
    min-height: 360px;
  }

  .dossier-mini-grid {
    gap: 7px;
  }

  .dossier-stack {
    gap: 12px;
  }

  .dossier-card {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
  }

  .dossier-number {
    width: 64px;
    height: 64px;
    font-size: 31px;
  }

  .dossier-card h3 {
    font-size: 30px;
  }

  .dossier-card > div:last-child > p {
    font-size: 14px;
    line-height: 1.4;
  }

  .dossier-facts {
    gap: 6px;
    margin-block: 13px;
  }

  .dossier-fact {
    min-height: 66px;
    padding: 9px;
  }

  .dossier-fact strong {
    font-size: 19px;
  }

  .dossier-copy-grid {
    gap: 10px;
  }

  .dossier-copy-grid p {
    font-size: 12px;
    line-height: 1.38;
  }
}

@media (max-width: 760px) {
  .retail-hero {
    padding-block: 14px 30px;
  }

  .retail-hero-grid {
    gap: 14px;
  }

  .retail-slider {
    min-height: 570px;
  }

  .retail-campaign-copy {
    top: 20px;
    left: 18px;
    right: 18px;
    gap: 10px;
  }

  .retail-campaign-copy h1,
  .retail-campaign-copy h2 {
    font-size: clamp(39px, 12vw, 50px);
    line-height: 0.94;
  }

  .retail-campaign-copy p {
    max-width: 34ch;
    font-size: 14px;
    line-height: 1.35;
  }

  .retail-campaign-copy .button-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .retail-campaign-copy .button-row .btn {
    min-height: 46px;
    padding-inline: 8px;
    font-size: 12px;
  }

  .retail-hero-products {
    inset: auto 14px 72px;
    height: 270px;
  }

  .retail-slider-controls {
    left: 18px;
    bottom: 16px;
  }

  .retail-arrow {
    width: 44px;
    height: 44px;
  }

  .retail-side-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .retail-promo-card,
  .retail-promo-card.is-dark {
    min-height: 144px;
    padding: 14px;
  }

  .retail-promo-card.is-dark {
    grid-column: 1 / -1;
    min-height: 108px;
  }

  .retail-promo-card:not(.is-dark) {
    padding-right: 14px;
  }

  .retail-promo-card strong {
    margin-block: 6px;
    font-size: clamp(27px, 8vw, 34px);
  }

  .retail-promo-card p {
    position: relative;
    z-index: 1;
    max-width: none;
    font-size: 12px;
    line-height: 1.28;
  }

  .retail-promo-card img {
    right: 2px;
    bottom: 2px;
    width: 62px;
    max-height: 68px;
    opacity: 0.22;
  }

  .retail-rail-title {
    min-height: 44px;
    align-items: center;
    flex-direction: row;
    gap: 10px;
  }

  .retail-rail-title a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    text-align: right;
  }

  .retail-product-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .retail-rail-product {
    min-height: 104px;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 7px;
    padding: 9px;
  }

  .retail-rail-product:last-child {
    grid-column: 1 / -1;
    grid-template-columns: 60px minmax(0, 1fr);
  }

  .retail-rail-product img {
    width: 46px;
    height: 70px;
  }

  .retail-rail-product:last-child img {
    width: 58px;
  }

  .retail-rail-product strong {
    font-size: clamp(16px, 5vw, 19px);
    line-height: 1.05;
  }

  .retail-rail-product em {
    margin-top: 4px;
  }

  .formula-dossier {
    padding-block: 54px;
  }

  .formula-dossier-inner {
    gap: 26px;
  }

  .formula-dossier-head h2 {
    font-size: clamp(40px, 12.5vw, 52px);
  }

  .dossier-layout {
    gap: 16px;
  }

  .dossier-media {
    gap: 8px;
  }

  .dossier-media-main,
  .dossier-media-main img {
    min-height: 230px;
    height: 230px;
  }

  .dossier-mini-grid {
    gap: 7px;
  }

  .js .dossier-switcher {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .dossier-switcher button {
    min-width: 0;
    min-height: 58px;
    display: grid;
    align-content: center;
    gap: 2px;
    padding: 8px 6px;
    border: 1px solid rgba(232, 212, 203, 0.9);
    border-radius: 8px;
    background: rgba(255, 252, 249, 0.78);
    color: #70483f;
    text-align: left;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
  }

  .dossier-switcher button span {
    color: var(--cta);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
  }

  .dossier-switcher button strong {
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(12px, 3.5vw, 15px);
    font-weight: 600;
    line-height: 1.08;
  }

  .dossier-switcher button.is-active {
    border-color: var(--cta);
    background: var(--cta);
    color: #fffaf7;
  }

  .dossier-switcher button.is-active span {
    color: #fffaf7;
  }

  .dossier-card {
    position: relative;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 16px;
  }

  .dossier-number {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 50px;
    height: 50px;
    font-size: 25px;
  }

  .dossier-card h3 {
    min-height: 50px;
    display: flex;
    align-items: center;
    margin-bottom: 7px;
    padding-left: 62px;
    font-size: clamp(27px, 8vw, 34px);
  }

  .dossier-card > div:last-child > p {
    font-size: 14px;
    line-height: 1.4;
  }

  .dossier-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-block: 13px;
  }

  .dossier-fact {
    min-height: 68px;
    padding: 9px;
  }

  .dossier-fact strong {
    font-size: clamp(18px, 5.8vw, 23px);
  }

  .dossier-fact span {
    font-size: 10px;
  }

  .dossier-copy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .dossier-copy-grid p {
    font-size: 12px;
    line-height: 1.38;
  }
}

@media (max-width: 359px) {
  .retail-slider {
    min-height: 590px;
  }

  .retail-rail-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .retail-rail-title a {
    text-align: left;
  }

  .dossier-copy-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .demo-notice-message.is-active {
    animation: none;
  }

  .dossier-switcher button {
    transition: none;
  }
}

@media (min-width: 641px) and (max-width: 760px) {
  .expanded-catalog {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .expanded-catalog .product-card {
    grid-template-rows: auto minmax(0, 1fr);
  }

  .expanded-catalog .product-card .media {
    height: 190px;
    min-height: 190px;
    padding: 10px;
  }

  .expanded-catalog .product-card .media img,
  .expanded-catalog .product-card.tray-shot .media img {
    height: 170px;
    max-height: 170px;
  }

  .expanded-catalog .product-card .content {
    gap: 12px;
    padding: 14px;
  }

  .expanded-catalog .product-card h3 {
    font-size: 22px;
  }

  .expanded-catalog .product-card p {
    font-size: 14px;
  }

  .expanded-catalog .product-buy {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .expanded-catalog .product-card-qty {
    width: 100%;
  }
}

/* T018: keep shared shop utilities and cart feedback clear at compact widths. */
@media (min-width: 761px) and (max-width: 1020px) {
  .retail-nav-shell {
    grid-template-columns: auto minmax(0, 1fr);
    gap: clamp(20px, 4vw, 34px);
  }

  .retail-brand-link {
    grid-column: 1;
    justify-self: start;
  }

  .retail-nav-actions {
    grid-column: 2;
    min-width: 0;
    justify-self: stretch;
  }

  .retail-search-form {
    width: auto;
    min-width: 0;
    flex: 1 1 220px;
  }
}

.cart-open .toast {
  right: auto;
  left: 20px;
  max-width: calc(100vw - 548px);
  border-radius: 14px;
  text-align: center;
  white-space: normal;
}

.cart-panel {
  grid-template-columns: minmax(0, 1fr);
}

.cart-head,
.cart-lines,
.cart-promo,
.cart-summary,
.cart-actions {
  min-width: 0;
}

.cart-promo > div {
  grid-template-columns: minmax(0, 1fr) auto;
  min-width: 0;
}

.cart-promo input {
  width: 100%;
  min-width: 0;
}

.qty-control {
  grid-template-columns: 44px 34px 44px;
}

.qty-control button,
.cart-remove {
  min-width: 44px;
  min-height: 44px;
}

.cart-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 760px) {
  .cart-panel {
    top: 64px;
  }

  .cart-actions {
    width: 100%;
    min-width: 0;
  }

  .cart-actions .btn {
    width: 100%;
    min-width: 0;
    padding-inline: 16px;
  }

  .cart-open .toast {
    top: 8px;
    right: 8px;
    bottom: auto;
    left: 8px;
    width: auto;
    max-width: none;
    min-height: 44px;
    padding: 10px 16px;
  }
}

/* T014: purpose-built About/contact composition for phone and portrait tablet. */
@media (max-width: 760px) {
  body[data-page="about-contact"] .about-story-section,
  body[data-page="about-contact"] .about-values-section,
  body[data-page="about-contact"] .about-faq-section,
  body[data-page="about-contact"] .about-contact-section {
    padding-block: 36px;
    scroll-margin-top: 208px;
  }

  body[data-page="about-contact"] .about-story-section,
  body[data-page="about-contact"] .about-values-section,
  body[data-page="about-contact"] .about-faq-section {
    scroll-margin-top: 208px;
  }

  body[data-page="about-contact"] .about-story-poster {
    min-height: 0;
  }

  body[data-page="about-contact"] .about-story-copy {
    gap: 16px;
    padding: 22px;
  }

  body[data-page="about-contact"] .about-story-copy h1 {
    font-size: clamp(40px, 12vw, 48px);
    line-height: 0.98;
  }

  body[data-page="about-contact"] .about-story-copy .lead {
    font-size: 16px;
    line-height: 1.42;
  }

  body[data-page="about-contact"] .about-story-visual,
  body[data-page="about-contact"] .about-story-image {
    min-height: 260px;
    height: 260px;
  }

  body[data-page="about-contact"] .about-values-ledger {
    margin-top: 20px;
  }

  body[data-page="about-contact"] .about-values-row {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 7px 12px;
    padding: 16px 18px;
  }

  body[data-page="about-contact"] .about-values-row span {
    grid-row: 1 / span 2;
    padding-top: 4px;
  }

  body[data-page="about-contact"] .about-values-row h3 {
    font-size: clamp(23px, 7.4vw, 28px);
    line-height: 1.02;
  }

  body[data-page="about-contact"] .about-values-row p {
    grid-column: 2;
    font-size: 14px;
    line-height: 1.42;
  }

  body[data-page="about-contact"] .about-values-media {
    min-height: 0;
    height: 220px;
    padding: 12px;
  }

  body[data-page="about-contact"] .about-values-media img {
    min-height: 0;
    height: 100%;
  }

  body[data-page="about-contact"] .about-faq-topic-rail {
    min-height: 250px;
    gap: 12px;
    padding: 22px;
  }

  body[data-page="about-contact"] .about-faq-topic-rail h2 {
    margin-bottom: 4px;
    font-size: 38px;
  }

  body[data-page="about-contact"] .about-faq-topic-rail p {
    max-width: 260px;
    font-size: 15px;
    line-height: 1.4;
  }

  body[data-page="about-contact"] .about-faq-panel {
    gap: 10px;
    padding: 16px;
  }

  body[data-page="about-contact"] .about-faq-question {
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 10px;
    min-height: 64px;
    padding: 12px 14px;
  }

  body[data-page="about-contact"] .about-faq-question-copy > span:first-child {
    margin-bottom: 5px;
    font-size: 10px;
  }

  body[data-page="about-contact"] .about-faq-question-title {
    font-size: clamp(21px, 6.5vw, 25px);
    line-height: 1.06;
  }

  body[data-page="about-contact"] .about-faq-icon {
    width: 44px;
    height: 44px;
    font-size: 23px;
  }

  body[data-page="about-contact"] .about-faq-copy p {
    padding: 13px 14px 16px;
    font-size: 15px;
    line-height: 1.48;
  }

  body[data-page="about-contact"] .about-contact-copy,
  body[data-page="about-contact"] .about-contact-form-panel {
    padding: 20px;
  }

  body[data-page="about-contact"] .about-contact-copy {
    gap: 16px;
  }

  body[data-page="about-contact"] .about-contact-copy h2 {
    font-size: clamp(36px, 10.8vw, 44px);
    line-height: 0.98;
  }

  body[data-page="about-contact"] .about-contact-copy .lead {
    font-size: 15px;
    line-height: 1.4;
  }

  body[data-page="about-contact"] .about-contact-status-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  body[data-page="about-contact"] .about-contact-status {
    padding-top: 10px;
  }

  body[data-page="about-contact"] .about-contact-status strong {
    font-size: 21px;
  }

  body[data-page="about-contact"] .about-contact-status p {
    margin-top: 5px;
    font-size: 12px;
    line-height: 1.3;
  }

  body[data-page="about-contact"] .about-contact-form-panel .contact-form {
    gap: 12px;
  }

  body[data-page="about-contact"] .about-contact-form-panel .field textarea {
    min-height: 112px;
  }

  body[data-page="about-contact"] .about-contact-form-panel .contact-note {
    margin-top: 4px;
    font-size: 13px;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  body[data-page="about-contact"] .about-story-section,
  body[data-page="about-contact"] .about-values-section,
  body[data-page="about-contact"] .about-faq-section,
  body[data-page="about-contact"] .about-contact-section {
    padding-block: 48px;
    scroll-margin-top: 112px;
  }

  body[data-page="about-contact"] .about-story-section,
  body[data-page="about-contact"] .about-values-section,
  body[data-page="about-contact"] .about-faq-section {
    scroll-margin-top: 112px;
  }

  body[data-page="about-contact"] .about-story-poster {
    min-height: 480px;
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  }

  body[data-page="about-contact"] .about-story-copy {
    align-content: center;
    gap: 18px;
    padding: 30px;
  }

  body[data-page="about-contact"] .about-story-copy h1 {
    font-size: clamp(46px, 6.4vw, 54px);
  }

  body[data-page="about-contact"] .about-story-copy .lead {
    font-size: 17px;
  }

  body[data-page="about-contact"] .about-story-visual,
  body[data-page="about-contact"] .about-story-image {
    min-height: 480px;
    height: 480px;
  }

  body[data-page="about-contact"] .about-values-ledger {
    grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
    margin-top: 24px;
  }

  body[data-page="about-contact"] .about-values-row {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 7px 12px;
    padding: 17px 18px;
  }

  body[data-page="about-contact"] .about-values-row span {
    grid-row: 1 / span 2;
    padding-top: 4px;
  }

  body[data-page="about-contact"] .about-values-row h3 {
    font-size: 26px;
    line-height: 1.02;
  }

  body[data-page="about-contact"] .about-values-row p {
    grid-column: 2;
    font-size: 14px;
    line-height: 1.4;
  }

  body[data-page="about-contact"] .about-values-media {
    min-height: 100%;
    height: auto;
    padding: 14px;
    border-top: 0;
    border-left: 1px solid var(--border);
  }

  body[data-page="about-contact"] .about-values-media img {
    min-height: 0;
    height: 100%;
  }

  body[data-page="about-contact"] .about-faq-desk {
    grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
    min-height: 0;
  }

  body[data-page="about-contact"] .about-faq-topic-rail {
    min-height: 520px;
    gap: 14px;
    padding: 28px;
    border-top: 0;
    border-right: 1px solid var(--border);
  }

  body[data-page="about-contact"] .about-faq-topic-rail h2 {
    font-size: 42px;
  }

  body[data-page="about-contact"] .about-faq-topic-rail p {
    font-size: 15px;
  }

  body[data-page="about-contact"] .about-faq-panel {
    gap: 10px;
    padding: 18px;
  }

  body[data-page="about-contact"] .about-faq-question {
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 10px;
    min-height: 68px;
    padding: 13px 14px;
  }

  body[data-page="about-contact"] .about-faq-question-copy > span:first-child {
    margin-bottom: 5px;
    font-size: 10px;
  }

  body[data-page="about-contact"] .about-faq-question-title {
    font-size: clamp(21px, 3.1vw, 26px);
  }

  body[data-page="about-contact"] .about-faq-icon {
    width: 44px;
    height: 44px;
    font-size: 23px;
  }

  body[data-page="about-contact"] .about-faq-copy p {
    padding: 13px 14px 16px;
    font-size: 15px;
    line-height: 1.48;
  }

  body[data-page="about-contact"] .about-contact-editorial {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    min-height: 0;
  }

  body[data-page="about-contact"] .about-contact-copy {
    gap: 18px;
    padding: 28px;
  }

  body[data-page="about-contact"] .about-contact-copy h2 {
    font-size: clamp(38px, 5.2vw, 46px);
    line-height: 0.98;
  }

  body[data-page="about-contact"] .about-contact-copy .lead {
    font-size: 15px;
    line-height: 1.4;
  }

  body[data-page="about-contact"] .about-contact-status-grid {
    gap: 8px;
  }

  body[data-page="about-contact"] .about-contact-status strong {
    font-size: 22px;
  }

  body[data-page="about-contact"] .about-contact-status p {
    font-size: 12px;
    line-height: 1.3;
  }

  body[data-page="about-contact"] .about-contact-form-panel {
    padding: 26px;
    border-top: 0;
    border-left: 1px solid var(--border);
  }

  body[data-page="about-contact"] .about-contact-form-panel .contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  body[data-page="about-contact"] .about-contact-form-panel .field:nth-child(n + 3),
  body[data-page="about-contact"] .about-contact-form-panel .btn,
  body[data-page="about-contact"] .about-contact-form-panel .contact-note {
    grid-column: 1 / -1;
  }

  body[data-page="about-contact"] .about-contact-form-panel .field textarea {
    min-height: 112px;
  }

  body[data-page="about-contact"] .about-contact-form-panel .contact-note {
    margin-top: 4px;
    font-size: 13px;
  }
}

@media (min-width: 761px) and (max-width: 799px) {
  body[data-page="about-contact"] .about-contact-form-panel .contact-form {
    grid-template-columns: 1fr;
  }

  body[data-page="about-contact"] .about-contact-form-panel .field,
  body[data-page="about-contact"] .about-contact-form-panel .btn,
  body[data-page="about-contact"] .about-contact-form-panel .contact-note {
    grid-column: 1;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .expanded-catalog {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }

  .expanded-catalog .product-card {
    grid-template-rows: auto minmax(0, 1fr);
  }

  .expanded-catalog .product-card .media {
    height: 184px;
    min-height: 184px;
    padding: 8px;
  }

  .expanded-catalog .product-card .media img,
  .expanded-catalog .product-card.tray-shot .media img {
    height: 160px;
    max-height: 160px;
  }

  .expanded-catalog .product-card .content {
    gap: 10px;
    padding: 12px;
  }

  .expanded-catalog .product-card h3 {
    font-size: 20px;
  }

  .expanded-catalog .product-card p {
    margin-top: 5px;
    font-size: 13px;
    line-height: 1.36;
  }

  .expanded-catalog .card-tags {
    gap: 5px;
  }

  .expanded-catalog .card-tags span {
    min-height: 25px;
    padding-inline: 6px;
    font-size: 11px;
  }

  .expanded-catalog .product-buy {
    align-items: stretch;
    flex-direction: column;
    gap: 7px;
  }

  .expanded-catalog .price {
    font-size: 22px;
  }

  .expanded-catalog .product-card-qty {
    width: 100%;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .expanded-catalog {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .expanded-catalog .product-card {
    grid-template-rows: auto minmax(0, 1fr);
  }

  .expanded-catalog .product-card .media {
    height: 230px;
    min-height: 230px;
    padding: 12px;
  }

  .expanded-catalog .product-card .media img,
  .expanded-catalog .product-card.tray-shot .media img {
    height: 204px;
    max-height: 204px;
  }

  .expanded-catalog .product-card .content {
    gap: 13px;
    padding: 16px;
  }

  .expanded-catalog .product-card h3 {
    font-size: 24px;
  }

  .expanded-catalog .product-card p {
    font-size: 14px;
  }

  .expanded-catalog .product-buy {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .expanded-catalog .product-card-qty {
    width: 100%;
  }
}

/* Responsive polish for the blush feedback pass. */
@media (max-width: 760px) {
  .retail-category-rail {
    justify-content: center;
  }

  .retail-campaign-copy {
    text-align: center;
  }

  .retail-campaign-copy p {
    margin-inline: auto;
  }

  .retail-campaign-copy .button-row {
    justify-items: stretch;
  }

  .retail-slider-controls {
    left: 50%;
    width: max-content;
    transform: translateX(-50%);
  }

  .retail-promo-card {
    text-align: center;
  }

  .retail-promo-card p {
    margin-inline: auto;
  }

  body[data-page="routine"] .routine-choice-row {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .signup-story .review-card:nth-child(-n + 2) {
    display: none;
  }

  /* The existing compact rule hides card three. Keep the everyday scenario. */
  .signup-story .review-card:nth-child(3) {
    display: grid;
  }
}

@media (min-width: 761px) and (max-width: 1020px) {
  .signup-card .signup-form {
    grid-template-columns: minmax(0, 1fr);
    max-width: none;
  }

  .signup-card .signup-form .field {
    min-width: 0;
  }

  .signup-card .signup-form .btn {
    justify-self: start;
    margin-bottom: 0;
  }

  .footer-inner,
  .footer-links,
  .footer-links > div {
    min-width: 0;
  }

  .footer-links-left,
  .footer-links-right {
    width: min(620px, 100%);
    justify-self: center;
  }

  .footer-links a,
  .footer-links span {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .dossier-fact strong {
    font-size: clamp(14px, 1.8vw, 17px);
    letter-spacing: -0.025em;
    white-space: nowrap;
  }
}

@media (min-width: 1021px) {
  .page-intro {
    padding-bottom: clamp(28px, 3vw, 44px);
  }

  #product-grid {
    padding-top: 16px;
  }
}

/* Final compact-phone header guard. This intentionally wins over the older
   condensed-header rules above, keeping the scroll geometry constant. */
@media (max-width: 760px) {
  .retail-header.is-scrolled .retail-promo-strip {
    display: grid !important;
  }

  .retail-header.is-scrolled .retail-nav-shell {
    min-height: 72px !important;
    padding-block: 12px !important;
    row-gap: 12px !important;
  }

  .retail-header.is-scrolled .retail-brand-link {
    display: flex !important;
  }

  .retail-search-form input {
    font-size: 16px !important;
    line-height: 1.2;
  }
}
