/* ==== ORMAmate — editorial DTC polish pass ====
   Tokens live in animations/css/_tokens.css. */

* { box-sizing: border-box; }
[hidden]:not(input[type="file"]) { display: none !important; }
/* Hide file inputs without removing them from the accessibility/click tree —
   display:none breaks programmatic .click() on some browsers. */
input[type="file"][hidden] {
  display: block !important;
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  opacity: 0;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01' on, 'kern' on, 'liga' on;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-underline-offset: 3px; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; padding: 0; }

/* ============ typography ============ */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  line-height: 1.02;
  letter-spacing: -0.018em;
  margin: 0 0 0.5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 5.8vw, 4.8rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; letter-spacing: -0.012em; }
h4 { font-size: 1rem; font-weight: 600; }
p  { margin: 0 0 1em; }
em, i { font-family: var(--serif); font-style: italic; font-weight: 500; }

.display-xl {
  font-family: var(--serif);
  font-weight: 900;
  font-variation-settings: 'opsz' 144;
  font-size: clamp(2.8rem, 6.8vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.028em;
  margin: 0;
}
.display-xl em { font-weight: 500; font-style: italic; }
.display-big {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin: 0 0 0.5rem;
}
.display-big strong { font-weight: 900; }
.script {
  font-family: var(--script);
  font-weight: 500;
  font-size: 1.25em;
  letter-spacing: 0;
  color: var(--burgundy);
}
.eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 700;
  margin: 0 0 0.85rem;
}
.small-caps {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-soft);
}

/* ============ layout ============ */
.container { max-width: 1220px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.tight { padding: clamp(1.5rem, 3.5vw, 2.5rem) 0; }
.tc { text-align: center; }
.serif { font-family: var(--serif); }
.italic { font-style: italic; }

/* ============ section-label with flourish ============ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 700;
  margin: 0 0 1.25rem;
}
.section-label::before,
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  min-width: 36px;
}
.section-label--left::before { display: none; }

/* ============ buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.9rem;
  border-radius: var(--radius-lg);
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 1.4px;
  font-size: 0.82rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 140ms var(--ease-out), background 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
  line-height: 1;
}
.btn-primary { background: var(--burgundy); color: var(--cream); box-shadow: 0 6px 0 var(--burgundy-dark); }
.btn-primary:hover { background: var(--burgundy-dark); transform: translateY(2px); box-shadow: 0 4px 0 var(--burgundy-dark); }
.btn-primary:active { transform: translateY(6px); box-shadow: 0 0 0 var(--burgundy-dark); }
.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border: 1.5px solid var(--burgundy);
}
.btn-outline:hover { background: var(--burgundy); color: var(--cream); }
.btn-gold { background: var(--gold); color: var(--burgundy); box-shadow: 0 6px 0 var(--gold-dark); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(2px); box-shadow: 0 4px 0 var(--gold-dark); }
.btn-lg { padding: 1.2rem 2.25rem; font-size: 0.92rem; }
.btn-block { width: 100%; }

/* ============ sticky promo bar ============ */
.promo-bar {
  position: sticky; top: 0; z-index: 40;
  background: var(--burgundy); color: var(--cream);
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  font-weight: 600;
}
.promo-bar__inner {
  max-width: 1220px; margin: 0 auto;
  padding: 0.65rem 1.5rem;
  display: flex; justify-content: center; align-items: center;
  gap: 1.25rem; flex-wrap: wrap;
  text-transform: uppercase;
}
.promo-bar strong { color: var(--gold); font-weight: 800; }
.promo-bar__countdown-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
}
.promo-bar__sep { opacity: 0.45; }
@media (max-width: 640px) {
  .promo-bar__sep { display: none; }
  .promo-bar__inner { gap: 0.5rem 1rem; font-size: 0.72rem; }
}

/* ============ occasion deadline banner ============ */
.occasion-banner {
  background: var(--peach);
  color: var(--burgundy);
  font-size: 0.82rem;
  border-bottom: 1px solid var(--hairline);
}
.occasion-banner__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0.5rem 0.9rem;
  padding: 0.55rem 1.5rem;
}
.occasion-banner__inner .script { font-size: 1.2rem; line-height: 1; }
.occasion-banner__sep { opacity: 0.4; }
.occasion-banner strong { font-weight: 800; }
@media (max-width: 720px) {
  .occasion-banner__sep { display: none; }
  .occasion-banner__inner { font-size: 0.75rem; }
}

/* ============ header / nav ============ */
.site-header {
  padding: 1rem 0;
  background: var(--cream);
  border-bottom: 1px solid var(--hairline);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.site-header img { height: 30px; }
.site-nav { display: flex; gap: 1.5rem; align-items: center; font-size: 0.76rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; color: var(--ink-soft); }
.site-nav a { text-decoration: none; }
.site-nav a:hover { color: var(--burgundy); }
@media (max-width: 640px) {
  .site-nav { display: none; }
  /* with nav hidden, center the brand mark */
  .site-header__inner { justify-content: center; }
}

/* ============ brand mark (text wordmark replacing logo img) ============ */
.brand-mark {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  color: var(--burgundy);
  text-decoration: none;
  font-variation-settings: 'opsz' 144;
  line-height: 1;
}
.brand-mark:hover { color: var(--burgundy-dark); }

/* ============ HERO-BUYBOX — above-fold conversion unit ============ */
.heroboxx {
  background: var(--cream);
  padding: clamp(1.25rem, 2.5vw, 2rem) 0 clamp(2.5rem, 4vw, 3.5rem);
}
.heroboxx__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: start;
}
@media (max-width: 960px) { .heroboxx__grid { grid-template-columns: 1fr; gap: 1.25rem; } }

/* --- LEFT side: peach panel with product --- */
.product-panel {
  background: var(--peach);
  border-radius: var(--radius-panel);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.product-panel::before {
  content: '';
  position: absolute;
  inset: auto -40px -40px auto;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(92,10,10,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.product-panel__headline {
  font-family: var(--serif);
  font-weight: 900;
  font-variation-settings: 'opsz' 144;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 0.85;         /* tight — removes the ascender gap */
  letter-spacing: -0.025em;
  margin: 0 0 1.2rem;
  padding-top: 0.1em;        /* offset to keep cap visible */
  color: var(--burgundy);
  text-transform: uppercase;
  position: relative;
}
.product-panel__headline em {
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  color: var(--ink);
  display: block;
  font-size: 0.6em;
  margin-top: 0.3rem;
}
.product-panel__body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
}
.product-panel__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  position: relative;
}

/* ---- UGC social-proof ring around the product shot ---- */
.ugc-ring {
  display: grid;
  grid-template-columns: 1fr 2.6fr 1fr;
  grid-template-rows: 1fr 2.6fr 1fr;
  gap: 0.45rem;
  width: 100%;
}
.ugc-ring__main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 20px 40px rgba(92,10,10,0.14);
  grid-column: 2;
  grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ugc-ring__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ugc-ring__tag {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26,20,17,0.75);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  white-space: nowrap;
  pointer-events: none;
}
.ugc-ring__thumb {
  position: relative;
  margin: 0;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--peach);
  border: 2px solid var(--cream);
  box-shadow: 0 4px 12px rgba(92,10,10,0.1);
  transition: transform 260ms var(--ease-out);
}
.ugc-ring__thumb:hover { transform: scale(1.05); z-index: 2; }
.ugc-ring__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: hue-rotate(var(--ugc-hue, 0deg)) saturate(0.95);
  display: block;
}
.ugc-ring__check {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #4A8F2E;
  color: #E3F3D2;
  font-size: 9px;
  font-weight: 900;
  display: grid;
  place-items: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Fallback for older .product-panel__media img — only applies if no ugc-ring wraps it (not the case anymore) */
.product-panel__media > img {
  max-height: 360px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 45px rgba(92,10,10,0.14);
}
.photo-preview {
  display: none;
  width: 100%;
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(92, 10, 10, 0.18));
  border-radius: var(--radius);
}
.product-panel__media[data-state="active"] [data-hero-placeholder] { display: none; }
.product-panel__media[data-state="active"] .photo-preview { display: block; }
.product-panel__benefits {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
.benefit-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--cream);
  border-radius: 999px;
  padding: 0.5rem 0.85rem 0.5rem 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(92,10,10,0.06);
}
.benefit-chip__bullet {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--burgundy);
  display: grid; place-items: center;
  color: var(--gold);
  flex-shrink: 0;
}
.benefit-chip__bullet svg { width: 11px; height: 11px; }

/* carousel arrow & thumbnails */
.product-panel__carousel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.carousel-arrow {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--cream);
  display: grid; place-items: center;
  color: var(--burgundy);
  transition: background 160ms, color 160ms;
  box-shadow: 0 4px 10px rgba(92,10,10,0.06);
}
.carousel-arrow:hover { background: var(--burgundy); color: var(--cream); }
.carousel-thumbs {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.carousel-thumbs button {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: var(--cream);
  opacity: 0.6;
  transition: opacity 160ms, outline-color 160ms;
  overflow: hidden;
}
.carousel-thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.carousel-thumbs button[aria-pressed="true"] { opacity: 1; outline: 1.5px solid var(--burgundy); outline-offset: 2px; }

/* --- micro-testimonial embedded in product panel --- */
.micro-review {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 1rem;
  box-shadow: 0 6px 20px rgba(92,10,10,0.06);
}
.micro-review__avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gold); color: var(--burgundy);
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 800;
  flex-shrink: 0;
}
.micro-review__stars { color: var(--gold); font-size: 0.82rem; letter-spacing: 2px; }
.micro-review__body {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0.15rem 0 0.15rem;
  line-height: 1.3;
}
.micro-review__name {
  font-size: 0.7rem;
  color: var(--mute);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* --- RIGHT side: offer + buy box --- */
.offer-col {
  display: flex;
  flex-direction: column;
  padding: 0.25rem 0.5rem 0;
}
.offer-rating {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink-soft);
  font-size: 0.85rem;
  margin: 0 0 0.7rem;
  line-height: 1;
}
.offer-rating .stars { display: inline-flex; gap: 2px; }
.offer-rating .stars svg { width: 15px; height: 15px; }
.offer-rating em { font-weight: 700; font-style: italic; color: var(--burgundy); }

.offer-headline {
  font-family: var(--serif);
  font-weight: 800;
  font-variation-settings: 'opsz' 144;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 0.8rem;
  color: var(--ink);
}
.offer-headline em { font-style: italic; font-weight: 500; color: var(--burgundy); }
.offer-headline .pop { color: var(--burgundy); }
.offer-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink-soft);
  margin: 0 0 1.1rem;
}
.offer-sub sup { color: var(--burgundy); }

/* spec pills (row of 2) */
.spec-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}
.spec-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  font-size: 0.78rem;
  line-height: 1.15;
}
.spec-pill__icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--peach);
  display: grid; place-items: center;
  color: var(--burgundy);
  flex-shrink: 0;
}
.spec-pill__icon svg { width: 13px; height: 13px; }
.spec-pill strong { display: block; font-weight: 700; font-size: 0.8rem; color: var(--ink); }
.spec-pill span { display: block; font-size: 0.68rem; color: var(--mute); letter-spacing: 0.5px; }

/* subscribe/one-time toggle */
.offer-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}
.offer-toggle button {
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius);
  text-align: left;
  background: var(--cream);
  border: 1.5px solid var(--hairline);
  transition: all 180ms var(--ease-out);
  cursor: pointer;
  line-height: 1.2;
}
.offer-toggle button strong { display: block; font-size: 0.86rem; font-weight: 700; color: var(--ink); margin-bottom: 0.15rem; }
.offer-toggle button span { font-size: 0.7rem; color: var(--mute); letter-spacing: 0.3px; }
.offer-toggle button[aria-pressed="true"] {
  background: var(--peach);
  border-color: var(--burgundy);
}
.offer-toggle button[aria-pressed="true"] strong { color: var(--burgundy); }
.offer-toggle button[aria-pressed="true"] span { color: var(--burgundy); font-weight: 600; }

/* spring discount label with flourish */
.flourish-label {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0.55rem 0;
}
.flourish-label::before, .flourish-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
}
.flourish-label__badge {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--burgundy);
  color: var(--gold);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* ============ compact tier row ============ */
.tier-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}
.tier-card {
  position: relative;
  text-align: center;
  padding: 1.2rem 0.5rem 0.85rem;
  background: var(--cream);
  border: 1.5px solid var(--hairline);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 180ms var(--ease-out);
  font-family: var(--sans);
}
.tier-card:hover {
  border-color: var(--burgundy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.tier-card[aria-pressed="true"] {
  background: var(--peach);
  border-color: var(--burgundy);
  box-shadow: var(--shadow-card);
}
.tier-card__ribbon {
  position: absolute; top: -9px; left: 50%;
  transform: translateX(-50%);
  padding: 3px 8px;
  background: var(--burgundy); color: var(--gold);
  font-size: 0.6rem; letter-spacing: 1.5px; font-weight: 700;
  border-radius: 999px;
  white-space: nowrap;
  text-transform: uppercase;
}
.tier-card__ribbon--gold { background: var(--gold); color: var(--burgundy); }
.tier-card__qty {
  display: block;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 0.05rem;
}
.tier-card__label {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 2px;
  color: var(--mute);
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}
.tier-card__price {
  display: block;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--burgundy);
  font-weight: 800;
}
.tier-card__was {
  display: block;
  font-size: 0.7rem;
  color: var(--mute);
  text-decoration: line-through;
  margin-top: 0.1rem;
}

/* free-gift thumbnails row */
.gifts-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
  margin-top: 0.55rem;
  margin-bottom: 0.9rem;
}
.gift-thumb {
  position: relative;
  aspect-ratio: 1;
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  padding: 0.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  transition: transform 200ms var(--ease-out);
}
.gift-thumb img { width: 70%; max-height: 60%; object-fit: contain; }
.gift-thumb__label {
  font-size: 0.58rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 700;
  margin-top: 0.15rem;
  line-height: 1.1;
}
.gift-thumb__free {
  position: absolute;
  top: 3px; right: 3px;
  background: var(--burgundy); color: var(--gold);
  padding: 2px 5px;
  font-size: 0.52rem;
  letter-spacing: 1px;
  font-weight: 700;
  border-radius: 999px;
  text-transform: uppercase;
}
.gift-thumb[data-locked="true"] { opacity: 0.35; filter: grayscale(1); }

/* offer summary — stacked: label, breakdown, grand total */
.offer-summary {
  display: block;
  padding: 0.85rem 0;
  border-top: 1px dashed var(--hairline);
  border-bottom: 1px dashed var(--hairline);
  margin: 0.6rem 0 0.9rem;
}
.offer-summary__label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  color: var(--mute);
  text-transform: uppercase;
  font-weight: 700;
}
.offer-summary__total {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--burgundy);
}
.offer-summary__was {
  font-size: 0.88rem;
  color: var(--mute);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 0.35rem;
}
.offer-summary__save {
  color: var(--gold-dark);
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 0.8rem;
}

.size-chip {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1.5px solid var(--hairline);
  background: var(--cream);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  transition: all 160ms var(--ease-out);
  min-width: 44px;
}
.size-chip:hover { border-color: var(--burgundy); }
.size-chip[aria-pressed="true"] { background: var(--burgundy); color: var(--cream); border-color: var(--burgundy); }

/* ============ quantity stepper ============ */
.qty-stepper {
  display: inline-flex;
  align-items: stretch;
  background: var(--cream);
  border: 1.5px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 0.4rem;
}
.qty-stepper__btn {
  width: 44px;
  padding: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--burgundy);
  background: transparent;
  transition: background 140ms var(--ease-out);
  line-height: 1;
}
.qty-stepper__btn:hover { background: var(--peach); }
.qty-stepper__btn:disabled { color: var(--mute); cursor: not-allowed; background: transparent; }
.qty-stepper__input {
  width: 54px;
  text-align: center;
  border: 0;
  border-left: 1px solid var(--hairline);
  border-right: 1px solid var(--hairline);
  background: transparent;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  -moz-appearance: textfield;
  appearance: textfield;
  padding: 0.55rem 0;
}
.qty-stepper__input::-webkit-outer-spin-button,
.qty-stepper__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ============ photo upload card ============ */
.dropzone__empty {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  text-align: left;
  padding: 0.1rem 0.2rem;
}
.dropzone__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--peach);
  display: grid;
  place-items: center;
  color: var(--burgundy);
  flex-shrink: 0;
}
.dropzone__body {
  flex: 1;
  min-width: 0;
  line-height: 1.2;
}
.dropzone__body strong {
  display: block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
}
.dropzone__body span {
  display: block;
  font-size: 0.72rem;
  color: var(--mute);
  letter-spacing: 0.3px;
  margin-top: 0.1rem;
}
.dropzone__nudge {
  font-size: 1.1rem;
  white-space: nowrap;
}

.photo-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0.1rem;
}
.photo-card__thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--hairline);
  background: var(--cream);
}
.photo-card__body {
  flex: 1;
  min-width: 0;
  line-height: 1.3;
}
.photo-card__label {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.photo-card__filename {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  word-break: break-all;
  margin-bottom: 0.15rem;
}
.photo-card__status {
  font-size: 0.72rem;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 0.3px;
}
.photo-card__change {
  color: var(--burgundy);
  font-family: var(--script);
  font-size: 1.05rem;
  text-decoration: underline;
  background: none;
  border: 0;
  padding: 0 0.25rem;
  flex-shrink: 0;
}
.photo-card__change:hover { color: var(--burgundy-dark); }

/* dropzone changes state when uploaded — soft border, no dashed */
.dropzone[data-state="uploaded"] {
  border-style: solid;
  border-color: var(--burgundy);
  background: var(--peach);
  padding: 0.85rem 1rem;
}

/* ============ single included-gift card (replaces 4-up gift strip) ============ */
.included-card {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  padding: 0.75rem 0.9rem;
  background: var(--cream);
  border: 1px dashed var(--gold);
  border-radius: var(--radius);
  margin-bottom: 0.9rem;
}
.included-card img {
  width: 48px; height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}
.included-card__body { line-height: 1.3; }
.included-card__label {
  font-size: 0.64rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 0.1rem;
}
.included-card__label span { color: var(--burgundy); }
.included-card__body strong {
  display: block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 0.1rem;
}
.included-card__body > span {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

/* inline add-ons inside the buy box */
.addons-inline { margin: 0.45rem 0 0.75rem; }
.addons-inline__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.45rem;
}
.addons-inline__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}
@media (max-width: 640px) { .addons-inline__grid { grid-template-columns: 1fr; } }
.addon-row {
  display: grid;
  grid-template-columns: 20px 1fr auto;
  gap: 0.6rem;
  align-items: center;
  padding: 0.55rem 0.7rem;
  background: var(--cream);
  border: 1.5px solid var(--hairline);
  border-radius: var(--radius);
  text-align: left;
  transition: border-color 160ms var(--ease-out), background 160ms var(--ease-out);
  cursor: pointer;
}
.addon-row:hover { border-color: var(--burgundy); }
.addon-row[aria-pressed="true"] {
  background: var(--peach);
  border-color: var(--burgundy);
}
.addon-row__check {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--hairline);
  background: var(--cream);
  flex-shrink: 0;
  display: grid;
  place-items: center;
}
.addon-row[aria-pressed="true"] .addon-row__check {
  background: var(--burgundy);
  border-color: var(--burgundy);
}
.addon-row[aria-pressed="true"] .addon-row__check::after {
  content: '✓';
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}
.addon-row__body {
  min-width: 0;
  line-height: 1.2;
}
.addon-row__body strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.addon-row__body span {
  display: block;
  font-size: 0.66rem;
  color: var(--mute);
  letter-spacing: 0.2px;
}
.addon-row__price {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--burgundy);
  font-variant-numeric: tabular-nums;
}

.specs {
  margin-top: 0.75rem;
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 0.85rem 1rem 0.75rem;
}
.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  font-variant-numeric: tabular-nums;
}
.specs-table th {
  text-align: left;
  font-size: 0.66rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 700;
  padding: 0 0.5rem 0.45rem 0;
  border-bottom: 1px solid var(--hairline);
}
.specs-table td {
  padding: 0.4rem 0.5rem 0.4rem 0;
  border-bottom: 1px solid var(--hairline);
  color: var(--ink);
  font-weight: 600;
}
.specs-table tbody tr:last-child td { border-bottom: 0; }
.specs-table td:first-child { font-family: var(--serif); font-weight: 800; color: var(--burgundy); }
.specs-note { font-size: 0.72rem; color: var(--mute); margin: 0.6rem 0 0; line-height: 1.45; }


.fomo-note {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  margin: 0.65rem 0 0;
  padding: 0.65rem 0.85rem;
  background: linear-gradient(135deg, rgba(197,165,90,0.14), rgba(240,220,196,0.45));
  border: 1px dashed var(--gold-dark);
  border-radius: var(--radius);
  animation: fomoBump 480ms var(--ease-out);
}
.fomo-note__icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.fomo-note__body { line-height: 1.35; }
.fomo-note__body strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
}
.fomo-note__body > span {
  display: block;
  font-size: 0.74rem;
  color: var(--ink-soft);
}
.fomo-note__upgrade {
  display: inline;
  padding: 0;
  background: none;
  border: 0;
  color: var(--burgundy);
  font-family: var(--script);
  font-size: 0.95rem;
  text-decoration: underline;
  cursor: pointer;
}
.fomo-note__upgrade:hover { color: var(--burgundy-dark); }

@keyframes fomoBump {
  0%   { opacity: 0; transform: translateY(-3px); }
  70%  { transform: translateY(1px); }
  100% { opacity: 1; transform: translateY(0); }
}

.cutoff-line {
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin: 0.65rem 0 0;
  letter-spacing: 0.3px;
}
.cutoff-line strong { color: var(--burgundy); font-weight: 800; font-variant-numeric: tabular-nums; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  justify-content: center;
  margin-top: 0.7rem;
  font-size: 0.7rem;
  color: var(--mute);
  letter-spacing: 0.5px;
}
.trust-row span { display: inline-flex; align-items: center; gap: 0.3rem; }

/* ============ add-ons "complete the gift" ============ */
.addons { background: var(--cream-warm); padding: clamp(2.5rem, 5vw, 4rem) 0; }
.addons__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.addons__head h2 { margin: 0; }
.addons__head-total {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
  background: var(--cream);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--hairline);
}
.addons__head-total strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--burgundy);
  font-variant-numeric: tabular-nums;
}
.addons__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
@media (max-width: 900px) { .addons__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .addons__grid { grid-template-columns: 1fr; } }
.addon-tile {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 1rem 1.1rem 1rem 1rem;
  background: var(--cream);
  border: 1.5px solid var(--hairline);
  border-radius: var(--radius);
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  transition: all 180ms var(--ease-out);
}
.addon-tile:hover {
  border-color: var(--burgundy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.addon-tile[aria-pressed="true"] {
  background: var(--peach);
  border-color: var(--burgundy);
  box-shadow: var(--shadow-card);
}
.addon-tile__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--peach);
  display: grid;
  place-items: center;
  color: var(--burgundy);
  flex-shrink: 0;
}
.addon-tile[aria-pressed="true"] .addon-tile__icon { background: var(--cream); }
.addon-tile__copy strong {
  display: block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: -0.012em;
  margin-bottom: 0.1rem;
}
.addon-tile__copy span {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.35;
}
.addon-tile__price {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--burgundy);
  font-variant-numeric: tabular-nums;
}
.addon-tile__check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--hairline);
  background: var(--cream);
}
.addon-tile[aria-pressed="true"] .addon-tile__check {
  background: var(--burgundy);
  border-color: var(--burgundy);
}
.addon-tile[aria-pressed="true"] .addon-tile__check::after {
  content: '✓';
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.addons__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px dashed var(--hairline);
  font-size: 0.95rem;
  flex-wrap: wrap;
}
.addons__summary strong {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--burgundy);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

/* ============ press strip ============ */
.press { background: var(--cream-warm); }
.press__label {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 4px;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* ============ featured testimonial ============ */
.featured-quote {
  background: var(--burgundy);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.featured-quote::before, .featured-quote::after {
  content: '"';
  position: absolute;
  font-family: var(--serif);
  font-size: clamp(8rem, 22vw, 20rem);
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.14;
  font-weight: 900;
}
.featured-quote::before { top: 20%; left: 4%; }
.featured-quote::after { bottom: 5%; right: 4%; transform: rotate(180deg); }
.featured-quote blockquote {
  margin: 0 auto;
  max-width: 820px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  line-height: 1.35;
  position: relative;
  z-index: 1;
}
.featured-quote cite { display: block; margin-top: 1.8rem; font-style: normal; font-size: 0.78rem; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; font-weight: 700; }

/* ============ pillars ============ */
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (max-width: 900px) { .pillars__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pillars__grid { grid-template-columns: 1fr; } }
.pillar {
  background: var(--peach);
  padding: 1.75rem 1.25rem;
  border-radius: var(--radius-lg);
  text-align: center;
}
.pillar__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--cream);
  display: grid; place-items: center;
  color: var(--burgundy);
  box-shadow: var(--shadow-card);
}
.pillar__icon svg { width: 28px; height: 28px; }
.pillar h3 { font-size: 1.15rem; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.pillar p { color: var(--ink-soft); font-size: 0.9rem; margin: 0; }

/* ============ comparison table ============ */
.compare { background: var(--cream-warm); }
.compare__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 2rem;
  font-size: 0.9rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.compare__table th, .compare__table td {
  padding: 0.9rem 0.85rem;
  text-align: center;
  border-bottom: 1px solid var(--hairline);
}
.compare__table tr:last-child td { border-bottom: 0; }
.compare__table th { font-weight: 700; font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-soft); background: var(--cream-warm); }
.compare__table td:first-child, .compare__table th:first-child { text-align: left; }
.compare__table td.us { background: var(--peach); color: var(--burgundy); font-weight: 700; }
.compare__table th.us { background: var(--burgundy); color: var(--gold); }
.compare__check { color: var(--burgundy); font-weight: 700; }
.compare__footer { text-align: center; margin-top: 1.25rem; font-family: var(--script); color: var(--burgundy); font-size: 1.25rem; }

/* ============ how-it-works ============ */
.how { background: var(--cream); }
.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 820px) { .how__grid { grid-template-columns: 1fr; } }
.step {
  background: var(--peach);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  position: relative;
}
.step__num {
  font-family: var(--serif); font-size: 4.5rem;
  color: var(--burgundy); line-height: 0.85;
  margin: 0 0 0.5rem;
  font-weight: 900;
  font-variation-settings: 'opsz' 144;
  letter-spacing: -0.03em;
}
.step__label {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: lowercase;
  color: var(--burgundy);
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
}
.step h3 { font-size: 1.3rem; margin-bottom: 0.55rem; letter-spacing: -0.012em; }
.step p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* ============ craft ============ */
.craft { background: var(--burgundy); color: var(--cream); }
.craft h2 { color: var(--cream); }
.craft .section-label { color: var(--gold); }
.craft .section-label::before, .craft .section-label::after { background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent); }
.craft__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (max-width: 820px) { .craft__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .craft__grid { grid-template-columns: 1fr; } }
.craft-card { background: rgba(250, 248, 242, 0.08); border-radius: var(--radius); padding: 1.25rem; }
.craft-card img { border-radius: var(--radius-sm); margin-bottom: 0.85rem; aspect-ratio: 3/2; object-fit: cover; width: 100%; }
.craft-card h4 { font-family: var(--sans); font-size: 0.68rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 0.4rem; }
.craft-card p { font-size: 0.88rem; color: rgba(250, 248, 242, 0.78); margin: 0; }

/* ============ gallery ============ */
.gallery { background: var(--cream); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  margin-top: 2rem;
}
@media (max-width: 820px) { .gallery__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .gallery__grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-item {
  aspect-ratio: 1/1;
  background: var(--peach);
  border-radius: var(--radius);
  overflow: hidden;
}

/* ============ benefits ============ */
.benefits { background: var(--cream-warm); }
.benefits__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 2.5rem;
}
@media (max-width: 820px) { .benefits__grid { grid-template-columns: 1fr; } }
.benefit {
  background: var(--cream);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
}
.benefit__marker {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
  font-variation-settings: 'opsz' 144;
}
.benefit h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.benefit p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* ============ reviews ============ */
.reviews { background: var(--cream); }
.reviews__header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--hairline);
}
@media (max-width: 700px) { .reviews__header { grid-template-columns: 1fr; text-align: left; } }
.reviews__score { font-family: var(--serif); font-size: 3.2rem; color: var(--burgundy); line-height: 1; font-weight: 900; }
.reviews__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
@media (max-width: 900px) { .reviews__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .reviews__grid { grid-template-columns: 1fr; } }
.review-card {
  background: var(--cream-warm);
  border-radius: var(--radius);
  padding: 1.25rem 1.25rem 1rem;
  border: 1px solid var(--hairline);
}
.review-card__head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.7rem; }
.review-card__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold); color: var(--burgundy);
  display: grid; place-items: center; font-family: var(--serif); font-weight: 800;
}
.review-card__meta { font-size: 0.68rem; color: var(--mute); letter-spacing: 1.5px; text-transform: uppercase; }
.review-card__name { font-weight: 700; font-size: 0.95rem; color: var(--ink); }
.review-card h4 { font-family: var(--serif); font-size: 1.08rem; margin: 0.5rem 0 0.25rem; font-weight: 700; letter-spacing: -0.012em; }
.review-card p { font-size: 0.9rem; color: var(--ink-soft); margin: 0; line-height: 1.5; }

/* ============ videos ============ */
.videos { background: var(--cream-warm); }
.videos__strip {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.75rem;
  margin-top: 2rem;
}
@media (max-width: 900px) { .videos__strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .videos__strip { grid-template-columns: repeat(2, 1fr); } }
.video-thumb {
  aspect-ratio: 9/16; border-radius: var(--radius);
  background: var(--peach); overflow: hidden; position: relative;
  display: grid; place-items: center;
  cursor: pointer;
}
.video-thumb::after {
  content: '▶'; color: var(--cream); font-size: 1.1rem;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(92,10,10,0.85); display: grid; place-items: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  padding-left: 3px;
}

/* ============ subscribe ============ */
.subscribe { background: var(--cream); }
.subscribe__card {
  background: var(--burgundy); color: var(--cream);
  border-radius: var(--radius-panel);
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.subscribe__card::before {
  content: '';
  position: absolute;
  inset: auto -100px -100px auto;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(197,165,90,0.18), transparent 55%);
}
.subscribe__card h2 { color: var(--cream); position: relative; }
.subscribe__card .section-label { color: var(--gold); }
.subscribe__card .section-label::before, .subscribe__card .section-label::after { background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent); }
.subscribe__bullets {
  list-style: none; padding: 0; margin: 1.25rem 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.4rem 1.25rem;
  font-size: 0.85rem; color: var(--gold);
  position: relative;
}
.subscribe__price { font-family: var(--serif); font-size: 2.4rem; color: var(--gold); margin: 1rem 0; font-weight: 900; position: relative; }

/* ============ faq ============ */
.faq-section { background: var(--cream); }
.faq-list { margin-top: 2rem; }

/* ============ final CTA ============ */
.final {
  background: var(--peach);
  text-align: center;
  position: relative;
}
.final__inner {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 1.2rem;
  justify-items: center;
}
.final__seal { width: 130px; margin: 0 auto; }
.final__recap { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.5rem; color: var(--ink-soft); font-size: 0.9rem; }

/* ============ footer ============ */
.site-footer {
  padding: 2.5rem 0 3rem;
  font-size: 0.78rem;
  color: var(--mute);
  text-align: center;
  background: var(--cream-warm);
}
.site-footer a { color: var(--mute); margin: 0 0.5rem; }

/* ============ toast ============ */
.toast__close {
  margin-left: auto;
  color: var(--mute);
  width: 24px; height: 24px;
  display: grid; place-items: center;
  border-radius: 50%;
}
.toast__close:hover { color: var(--burgundy); }

/* ============ helpers ============ */
.price-strike { text-decoration: line-through; color: var(--mute); font-weight: 400; }
.hidden { display: none !important; }

.paper-divider {
  display: block;
  height: 24px;
  background: url('./assets/graphics/decorations/divider-torn-paper.svg') repeat-x center / auto 100%;
}

.arrow-scribble {
  display: inline-block;
  color: var(--burgundy);
  width: 80px;
  vertical-align: middle;
}

/* ============ plan toggle (Just One vs A Pair) ============ */
.plan-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}
.plan-option {
  position: relative;
  padding: 0.7rem 0.85rem 0.65rem;
  background: var(--cream);
  border: 1.5px solid var(--hairline);
  border-radius: var(--radius);
  text-align: left;
  cursor: pointer;
  font-family: var(--sans);
  transition: all 180ms var(--ease-out);
}
.plan-option:hover { border-color: var(--burgundy); }
.plan-option[aria-pressed="true"] {
  background: var(--peach);
  border-color: var(--burgundy);
  box-shadow: var(--shadow-card);
}
.plan-option__ribbon {
  position: absolute; top: -8px; right: 10px;
  padding: 2px 7px;
  background: var(--gold);
  color: var(--burgundy);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 999px;
}
.plan-option__label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 700;
  margin-bottom: 0.1rem;
}
.plan-option[aria-pressed="true"] .plan-option__label { color: var(--burgundy); }
.plan-option__price {
  display: block;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.1rem;
  font-variation-settings: 'opsz' 144;
}
.plan-option__price small {
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--mute);
  letter-spacing: 0.5px;
  margin-left: 0.1rem;
}
.plan-option__sub {
  display: block;
  font-size: 0.64rem;
  color: var(--mute);
  letter-spacing: 0.2px;
}

/* ============ hoodie configurators ============ */
.hoodies { display: grid; gap: 0.7rem; margin-bottom: 0.7rem; }
.hoodie-config { display: grid; gap: 0.55rem; }
.hoodies[data-mode="pair"] .hoodie-config {
  padding: 0.7rem;
  background: var(--cream-warm);
  border-radius: var(--radius);
  border: 1px dashed var(--hairline);
}
.hoodie-config__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.1rem;
}
.hoodie-config__title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 800;
}
.hoodie-config__badge {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.75rem;
  font-weight: 900;
  display: grid;
  place-items: center;
}
/* hide Hoodie 1 heading in single mode (cleaner) */
.hoodies[data-mode="single"] .hoodie-config[data-hoodie="1"] .hoodie-config__head { display: none; }

.field-group { border: 0; padding: 0; margin: 0; }
.field-group legend {
  padding: 0;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.field-group legend .size-help {
  background: none; border: 0;
  color: var(--burgundy);
  font-family: var(--script);
  font-size: 1rem;
  padding: 0 0.15rem;
  cursor: pointer;
  margin-left: auto;
}

/* ============ color cards (2 options) ============ */
.color-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}
.color-card {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.7rem;
  background: var(--cream);
  border: 1.5px solid var(--hairline);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 160ms var(--ease-out);
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
}
.color-card:hover { border-color: var(--burgundy); }
.color-card[aria-pressed="true"] {
  background: var(--peach);
  border-color: var(--burgundy);
}
.color-card__swatch {
  position: relative;
  width: 26px; height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
}
.color-card__swatch[data-outlined] { outline: 1px solid var(--hairline); }
.color-card__base {
  position: absolute; inset: 0; border-radius: 50%;
}
.color-card__thread {
  position: absolute; inset: 35% 35% 35% 35%; border-radius: 50%;
}
.color-card__label { line-height: 1.15; }

/* ============ approve-outline toggle (compact card) ============ */
.approve-toggle {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 0.6rem 0.8rem;
  margin: 0.35rem 0 0.75rem;
  cursor: pointer;
  line-height: 1.3;
}
.approve-toggle input[type="checkbox"] {
  margin: 0.2rem 0 0;
  accent-color: var(--burgundy);
  flex-shrink: 0;
}
.approve-toggle > span { flex: 1; }
.approve-toggle strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.1rem;
}
.approve-toggle > span > span {
  display: block;
  font-size: 0.68rem;
  color: var(--mute);
  letter-spacing: 0.2px;
}
.approve-toggle__price {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 1px 7px;
  background: var(--gold);
  color: var(--burgundy);
  font-family: var(--serif);
  font-weight: 800;
  font-size: 0.72rem;
  border-radius: 999px;
  letter-spacing: 0.3px;
  vertical-align: baseline;
}
.approve-toggle:has(input:checked) {
  background: var(--peach);
  border-color: var(--burgundy);
}
.approve-toggle:has(input:checked) strong { color: var(--burgundy); }

/* ============ compaction: tighten spacing inside buy box ============ */
.offer-col {
  /* top padding = product-panel's top padding, so the stars line up with
     the left-panel headline baseline */
  padding: clamp(1.5rem, 3vw, 2.25rem) 0.5rem 0;
}
.offer-rating {
  font-size: 0.8rem;
  margin-bottom: 0.45rem;
}
.offer-col .spec-row { display: none; } /* move specs into trust-row below CTA */
.offer-col .field-group { margin: 0; }
.offer-col .sizes {
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
}
.offer-col .size-chip {
  padding: 0.42rem 0.75rem;
  font-size: 0.75rem;
}
.offer-summary { margin: 0.5rem 0 0.7rem; padding: 0.6rem 0; }
.offer-summary__total { font-size: 1.6rem; }

/* animated price flash on change */
.offer-summary__total[data-flash="true"] {
  animation: totalFlash 360ms var(--ease-out);
  display: inline-block;
}
@keyframes totalFlash {
  0%   { transform: scale(1); color: var(--gold-dark); }
  45%  { transform: scale(1.08); color: var(--burgundy); }
  100% { transform: scale(1); color: var(--burgundy); }
}

/* ============ mystery gift card (pair mode only) ============ */
.mystery-card {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  padding: 0.8rem 0.9rem;
  margin: 0 0 0.8rem;
  background: linear-gradient(135deg, var(--peach) 0%, var(--gold-light) 100%);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  animation: mysteryReveal 420ms var(--ease-out);
}
.mystery-card::after {
  content: '';
  position: absolute;
  inset: auto -20px -20px auto;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(197,165,90,0.4), transparent 70%);
  pointer-events: none;
}
.mystery-card img {
  width: 52px; height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 10px rgba(92,10,10,0.15));
}
.mystery-card__body { line-height: 1.3; flex: 1; min-width: 0; }
.mystery-card__label {
  font-size: 0.64rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 800;
  margin-bottom: 0.15rem;
}
.mystery-card__body strong {
  display: block;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: -0.012em;
  margin-bottom: 0.1rem;
}
.mystery-card__body > span {
  display: block;
  font-size: 0.72rem;
  color: var(--ink-soft);
}
@keyframes mysteryReveal {
  from { opacity: 0; transform: translateY(-4px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ============ upsells (mirrors real PDP) ============ */
.upsells {
  display: grid;
  gap: 0.4rem;
  margin: 0.5rem 0 0.75rem;
}
.upsell-row {
  position: relative;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  padding: 0.55rem 0.8rem;
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.8rem;
  line-height: 1.4;
  transition: border-color 160ms var(--ease-out), background 160ms var(--ease-out);
  color: var(--ink);
}
.upsell-row:hover { border-color: var(--burgundy); }
.upsell-row:has(input:checked) {
  background: var(--peach);
  border-color: var(--burgundy);
}
.upsell-row input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  inset: 0;
}
.upsell-row__box {
  width: 16px; height: 16px;
  border-radius: 3px;
  border: 1.5px solid var(--hairline);
  background: var(--cream);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: all 160ms;
}
.upsell-row:has(input:checked) .upsell-row__box {
  background: var(--burgundy);
  border-color: var(--burgundy);
}
.upsell-row:has(input:checked) .upsell-row__box::after {
  content: '';
  position: absolute;
  left: 4px; top: 1px;
  width: 4px; height: 8px;
  border: solid var(--gold);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.upsell-row__text { flex: 1; }
.upsell-row__price {
  font-family: var(--serif);
  font-weight: 800;
  color: var(--burgundy);
  white-space: nowrap;
  margin-left: 0.2rem;
}
.upsell-row--featured {
  background: var(--peach);
  border-color: var(--burgundy);
}
.upsell-row--skip {
  background: transparent;
  border-style: dashed;
  color: var(--mute);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  width: 100%;
}
.upsell-row--skip:hover { border-color: var(--burgundy); color: var(--ink); }
.upsell-row--skip.is-selected {
  background: rgba(74, 143, 46, 0.08);
  border-color: #4A8F2E;
  border-style: solid;
  color: var(--ink);
}
.upsell-row--skip.is-selected .upsell-row__box {
  background: #4A8F2E;
  border-color: #4A8F2E;
}
.upsell-row--skip.is-selected .upsell-row__box::after {
  content: '';
  position: absolute;
  left: 4px; top: 1px;
  width: 4px; height: 8px;
  border: solid #E3F3D2;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.upsell-row__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.4rem;
  padding: 0.22rem 0.6rem;
  background: var(--gold);
  color: var(--burgundy);
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  border-radius: 999px;
  width: max-content;
  line-height: 1.3;
}

/* ============ numbered buy-box steps (bordered cards) ============ */
.buy-step {
  display: grid;
  gap: 0.6rem;
  margin: 0 0 0.65rem;
  padding: 0.85rem 1rem 0.95rem;
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  transition:
    opacity 320ms var(--ease-out),
    filter 320ms var(--ease-out),
    border-color 260ms var(--ease-out),
    background 260ms var(--ease-out),
    box-shadow 260ms var(--ease-out);
}
.buy-step.is-locked {
  opacity: 0.32;
  filter: saturate(0.5);
  pointer-events: none;
  user-select: none;
  background: transparent;
  border-style: dashed;
}
.buy-step.is-active {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 2px rgba(92, 10, 10, 0.08), var(--shadow-card);
}
.buy-step.is-active .step-num {
  box-shadow: 0 0 0 4px rgba(197, 165, 90, 0.3);
}
.buy-step.is-done {
  background: rgba(74, 143, 46, 0.08);
  border-color: rgba(74, 143, 46, 0.5);
}
.buy-step.is-done .step-num {
  background: #4A8F2E;
  color: #E3F3D2;
}
/* Shake when user hits Add To Cart before filling a required step */
.buy-step.is-error-shake {
  animation: stepShake 520ms cubic-bezier(.36,.07,.19,.97);
  border-color: #c94c2f !important;
  box-shadow: 0 0 0 2px rgba(201, 76, 47, 0.18) !important;
}
@keyframes stepShake {
  10%, 90%  { transform: translateX(-2px); }
  20%, 80%  { transform: translateX(4px); }
  30%, 50%, 70% { transform: translateX(-6px); }
  40%, 60%  { transform: translateX(6px); }
  0%, 100%  { transform: translateX(0); }
}

/* Options step 4 — keep the same card look but the nested upsells shouldn't double-border */
.buy-step--options { padding: 0.85rem 0.85rem 0.95rem; }
.buy-step--options .upsells { margin: 0; }

/* Pair mode: drop the outer dashed hoodie-config wrapper — each step is its own card */
.hoodies[data-mode="pair"] .hoodie-config {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  margin-bottom: 0.3rem;
}
.hoodies[data-mode="pair"] .hoodie-config__head {
  padding: 0 0.1rem;
  margin-bottom: 0.4rem;
}
.step-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 800;
  line-height: 1;
}
.step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 0.78rem;
  font-weight: 900;
  flex-shrink: 0;
  line-height: 1;
}
.step-num--final {
  background: var(--gold);
  color: var(--burgundy);
}
.step-label .size-help {
  background: none;
  border: 0;
  color: var(--burgundy);
  font-family: var(--script);
  font-size: 0.95rem;
  padding: 0 0.2rem;
  margin-left: auto;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
}
.buy-step--final { margin-bottom: 0.2rem; }

/* ============ unlock celebration banner (all 4 steps done) ============ */
.unlock-msg {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  margin: 0.6rem 0 0.85rem;
  background: linear-gradient(135deg, #E3F3D2 0%, #B7DE8B 100%);
  border: 1.5px solid #4A8F2E;
  border-radius: var(--radius);
  color: #1E4A10;
  position: relative;
  overflow: hidden;
  animation: unlockReveal 520ms var(--ease-out);
}
.unlock-msg::after {
  content: '';
  position: absolute;
  inset: auto -30px -30px auto;
  width: 110px;
  height: 110px;
  background: radial-gradient(circle, rgba(74,143,46,0.25), transparent 65%);
  pointer-events: none;
}
.unlock-msg[data-fresh="true"] {
  animation: unlockRevealBig 820ms var(--ease-out);
}
.unlock-msg__icon {
  font-size: 1.7rem;
  line-height: 1;
  flex-shrink: 0;
  display: inline-block;
  animation: unlockIconPop 720ms var(--ease-out);
}
.unlock-msg__body { flex: 1; line-height: 1.3; min-width: 0; }
.unlock-msg__body strong {
  display: block;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 1.05rem;
  color: #14330A;
  letter-spacing: -0.01em;
}
.unlock-msg__body > span {
  display: block;
  font-size: 0.78rem;
  color: #2D5A1A;
  font-weight: 500;
}
.unlock-msg__check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #4A8F2E;
  color: #E3F3D2;
  font-weight: 900;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}
@keyframes unlockReveal {
  0%   { opacity: 0; transform: translateY(-6px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes unlockRevealBig {
  0%   { opacity: 0; transform: translateY(-10px) scale(0.92); }
  55%  { transform: translateY(2px) scale(1.03); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes unlockIconPop {
  0%, 20%  { transform: scale(0.4) rotate(-15deg); opacity: 0; }
  55%      { transform: scale(1.25) rotate(8deg); opacity: 1; }
  75%      { transform: scale(0.95) rotate(-4deg); }
  100%     { transform: scale(1) rotate(0deg); opacity: 1; }
}

/* ============ transparent price breakdown ============ */
.breakdown {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0.55rem;
  display: grid;
  gap: 0.45rem;
}
.breakdown__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.35;
}
.breakdown__label {
  flex: 1;
  min-width: 0;
}
.breakdown__plus {
  color: var(--mute);
  margin-right: 0.1rem;
  font-weight: 700;
}
.breakdown__sub {
  display: block;
  font-size: 0.68rem;
  color: var(--gold-dark);
  margin-top: 0.15rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.breakdown__price {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 0.05rem;
}
.breakdown__row--upsell {
  color: var(--ink-soft);
}
.breakdown__row--upsell .breakdown__price {
  color: var(--burgundy);
}
.breakdown__row--free {
  color: var(--ink-soft);
}
.breakdown__row--free .breakdown__price {
  color: #4A8F2E;
  letter-spacing: 1.5px;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.78rem;
}

.offer-summary__grand {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  padding-top: 0.7rem;
  margin-top: 0.55rem;
  border-top: 1.5px solid var(--hairline);
}
.offer-summary__grand-label {
  font-size: 0.74rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 700;
  white-space: nowrap;
}
.offer-summary__total {
  font-family: var(--serif);
  font-weight: 900;
  color: var(--burgundy);
  font-size: 1.75rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  line-height: 1;
}

/* tighter dropzone inside the buy box */
.offer-col .dropzone { padding: 0.6rem 0.8rem; margin-bottom: 0; }
.offer-col .dropzone__body strong { font-size: 0.9rem; }
.offer-col .dropzone__body span { font-size: 0.66rem; }
.offer-col .dropzone__nudge { font-size: 1rem; }
.offer-col .photo-card__thumb { width: 56px; height: 56px; }
.offer-col .photo-card__filename { font-size: 0.82rem; }
.offer-col .photo-card__status { font-size: 0.66rem; }

/* ============================================================
   MOBILE RESPONSIVE OVERRIDES
   Breakpoints: 960 (hero stacks), 720 (tablet), 520 (phone), 400 (small phone)
   ============================================================ */

/* ---- stacked hero (<=960px) ---- */
@media (max-width: 960px) {
  .heroboxx { padding: 1rem 0 2rem; }
  .offer-col {
    padding: 0.75rem 0 0;
  }
  /* nothing's sticky on mobile — both columns scroll naturally */
  /* (sticky was removed — this override is no longer needed) */
}

/* ---- tablet (<=720px) ---- */
@media (max-width: 720px) {
  .container, .container-narrow { padding: 0 1rem; }
  section { padding: clamp(2.5rem, 6vw, 4rem) 0; }

  /* promo bar — force a single line on mobile */
  .promo-bar__inner {
    flex-wrap: nowrap;
    gap: 0.4rem;
    padding: 0.5rem 0.6rem;
    font-size: 0.62rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
  }
  .promo-bar__countdown-pill {
    padding: 0.18rem 0.45rem;
    gap: 0.15rem;
    font-size: 0.62rem;
    flex-shrink: 0;
  }

  /* featured quote: shrink giant decorative marks */
  .featured-quote::before, .featured-quote::after { font-size: 6rem; line-height: 0.5; }

  /* comparison table scrolls sideways rather than cramming */
  .compare__table {
    font-size: 0.76rem;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .compare__table th, .compare__table td { padding: 0.55rem 0.55rem; }

  /* reviews two-col grid collapses */
  .reviews__grid { grid-template-columns: 1fr 1fr; }

  /* pillars 2-col */
  .pillars__grid { grid-template-columns: 1fr 1fr; }
}

/* ---- phone (<=520px) ---- */
@media (max-width: 520px) {
  h1 { font-size: clamp(1.9rem, 8vw, 2.4rem); }
  h2 { font-size: clamp(1.55rem, 6vw, 2rem); }

  /* brand + header */
  .site-header { padding: 0.75rem 0; }
  .brand-mark { font-size: 1.35rem; }

  /* product panel shrinks */
  .product-panel { padding: 1.25rem; }
  .product-panel__headline {
    font-size: clamp(1.55rem, 7vw, 2rem);
    margin-bottom: 0.9rem;
  }
  .product-panel__media { min-height: 180px; }
  .product-panel__media img { max-height: 260px; }
  .product-panel__body { gap: 0.75rem; }

  /* UGC ring — collapse to just a top + bottom strip on phones */
  .ugc-ring {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto;
    gap: 0.35rem;
  }
  .ugc-ring__main {
    grid-column: 1 / -1;
    grid-row: 2;
  }
  /* top strip (first 4) */
  .ugc-ring__thumb:nth-child(1) { grid-column: 1; grid-row: 1; }
  .ugc-ring__thumb:nth-child(2) { grid-column: 2; grid-row: 1; }
  .ugc-ring__thumb:nth-child(3) { grid-column: 3; grid-row: 1; }
  .ugc-ring__thumb:nth-child(4) { grid-column: 4; grid-row: 1; }
  /* main is 5th child */
  /* bottom strip (6,7,8,9 — skip element 5 which is main) */
  .ugc-ring__thumb:nth-child(6) { grid-column: 1; grid-row: 3; }
  .ugc-ring__thumb:nth-child(7) { grid-column: 2; grid-row: 3; }
  .ugc-ring__thumb:nth-child(8) { grid-column: 3; grid-row: 3; }
  .ugc-ring__thumb:nth-child(9) { grid-column: 4; grid-row: 3; }
  .ugc-ring__tag { font-size: 0.52rem; letter-spacing: 1px; padding: 0.25rem 0.55rem; }

  /* benefits: keep 2-per-row on mobile too, just tighter */
  .product-panel__benefits { gap: 0.35rem; }
  .benefit-chip { font-size: 0.72rem; padding: 0.4rem 0.7rem 0.4rem 0.35rem; }
  .benefit-chip__bullet { width: 18px; height: 18px; }
  .benefit-chip__bullet svg { width: 10px; height: 10px; }

  /* carousel thumbs compact */
  .carousel-thumbs button { width: 32px; height: 32px; }
  .carousel-arrow { width: 30px; height: 30px; }

  /* plan toggle takes full width, stays 2-up */
  .plan-option { padding: 0.65rem 0.7rem 0.6rem; }
  .plan-option__price { font-size: 1.3rem; }

  /* hoodie config in pair mode — tighter padding */
  .hoodies[data-mode="pair"] .hoodie-config { padding: 0.6rem; }

  /* upsell rows shrink */
  .upsell-row { padding: 0.5rem 0.65rem; font-size: 0.76rem; }
  .upsell-row__price { font-size: 0.8rem; }

  /* numbered step labels — tighter on phone */
  .buy-step { gap: 0.35rem; margin-bottom: 0.55rem; }
  .step-label { font-size: 0.68rem; letter-spacing: 1.5px; gap: 0.45rem; }
  .step-num { width: 20px; height: 20px; font-size: 0.72rem; }
  .step-label .size-help { font-size: 0.9rem; }

  /* price breakdown rows — fit tighter */
  .breakdown { gap: 0.4rem; margin: 0.35rem 0 0.5rem; }
  .breakdown__row { font-size: 0.82rem; gap: 0.5rem; }
  .breakdown__sub { font-size: 0.62rem; letter-spacing: 0.3px; }
  .breakdown__price { font-size: 0.92rem; }
  .offer-summary__grand { padding-top: 0.55rem; margin-top: 0.45rem; gap: 0.4rem; }
  .offer-summary__grand-label { font-size: 0.68rem; letter-spacing: 2px; }
  .offer-summary__total { font-size: 1.55rem; }

  /* upsell with badge — ensure badge wraps nicely */
  .upsell-row__badge { font-size: 0.62rem; padding: 0.18rem 0.5rem; letter-spacing: 0.3px; }

  /* mystery card — compact */
  .mystery-card { padding: 0.7rem 0.8rem; gap: 0.7rem; }
  .mystery-card img { width: 44px; height: 44px; }
  .mystery-card__body strong { font-size: 0.9rem; }
  .mystery-card__body > span { font-size: 0.68rem; }

  /* FOMO note — tighter */
  .fomo-note { padding: 0.55rem 0.7rem; gap: 0.55rem; }
  .fomo-note__body strong { font-size: 0.8rem; }
  .fomo-note__body > span { font-size: 0.7rem; }
  .fomo-note__upgrade { font-size: 0.9rem; }

  /* unlock celebration — tighter on phone */
  .unlock-msg { padding: 0.7rem 0.85rem; gap: 0.7rem; }
  .unlock-msg__icon { font-size: 1.4rem; }
  .unlock-msg__body strong { font-size: 0.95rem; }
  .unlock-msg__body > span { font-size: 0.72rem; }
  .unlock-msg__check { width: 24px; height: 24px; font-size: 0.82rem; }

  /* CTA stays full width */
  .btn-lg { padding: 1.05rem 1.5rem; font-size: 0.85rem; }

  /* trust row smaller, two rows */
  .trust-row { gap: 0.35rem 0.75rem; font-size: 0.66rem; }

  /* reviews -> 1 column */
  .reviews__grid { grid-template-columns: 1fr; }
  .pillars__grid { grid-template-columns: 1fr; }

  /* steps stack full-width */
  .step { padding: 1.25rem 1.1rem; }
  .step__num { font-size: 3.5rem; }

  /* subscribe card tighter */
  .subscribe__card { padding: 1.75rem 1.25rem; }
  .subscribe__price { font-size: 1.9rem; }

  /* featured pull quote tightens */
  .featured-quote blockquote { font-size: 1.3rem; line-height: 1.3; }
  .featured-quote cite { font-size: 0.68rem; }

  /* final CTA section */
  .final__seal { width: 100px; }
  .final__recap { font-size: 0.8rem; gap: 0.35rem 1rem; }

  /* toast + sticky buybox don't overlap */
  .toast { left: 0.5rem; right: 0.5rem; bottom: 5.25rem; max-width: none; }
  .sticky-buybox { padding: 0.6rem 0.85rem calc(0.6rem + env(safe-area-inset-bottom)); }
}

/* ---- small phone (<=400px) ---- */
@media (max-width: 400px) {
  .promo-bar__inner { font-size: 0.55rem; letter-spacing: 0.3px; gap: 0.3rem; padding: 0.45rem 0.5rem; }
  .promo-bar__countdown-pill { font-size: 0.58rem; letter-spacing: 0.3px; padding: 0.15rem 0.4rem; }

  /* color grid becomes single column on narrow */
  .color-grid { grid-template-columns: 1fr; }

  /* sizes smaller */
  .size-chip { min-width: 36px; padding: 0.4rem 0.6rem; font-size: 0.72rem; }

  /* plan toggle could stack but stays 2-up for tap ease */
  .plan-option__sub { font-size: 0.6rem; }

  /* step label on tiny phones */
  .step-label { font-size: 0.62rem; letter-spacing: 1px; gap: 0.4rem; }
  .step-num { width: 18px; height: 18px; font-size: 0.68rem; }

  /* breakdown tightens on tiny phones */
  .breakdown__row { font-size: 0.78rem; gap: 0.4rem; }
  .breakdown__price { font-size: 0.86rem; }
  .offer-summary__total { font-size: 1.4rem; }
  .offer-summary__grand-label { font-size: 0.64rem; letter-spacing: 1.5px; }
}

