.subpage { --product-accent: var(--raspberry); --product-soft: #f2d3dc; background: var(--paper-2); }
.subpage[data-product-theme="pomme-verte"] { --product-accent: var(--apple-deep); --product-soft: #dce7b9; }
.subpage[data-product-theme="tropicale"] { --product-accent: #aa521b; --product-soft: #f6d0ac; }
[hidden] { display: none !important; }

.breadcrumbs {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  padding: 0 var(--pad);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .68rem;
}

.breadcrumbs a { color: var(--ink); }

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(400px, .9fr);
  border-bottom: 1px solid var(--line);
}

.product-gallery {
  position: sticky;
  top: 0;
  display: grid;
  height: calc(100svh - 30px);
  min-height: 720px;
  grid-template-rows: 1fr auto;
  align-self: start;
  border-right: 1px solid var(--line);
  background: var(--product-soft);
  transition: background 500ms ease;
}

.product-gallery__stage {
  position: relative;
  overflow: hidden;
  min-height: 0;
  background: var(--product-soft);
  transition: background 500ms ease;
}

.product-gallery__stage::after {
  position: absolute;
  right: -14%;
  bottom: -27%;
  width: 60%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.08), 0 0 0 140px rgba(255,255,255,.05);
  content: "";
  pointer-events: none;
}

.product-gallery__stage img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  transition: opacity 260ms ease, transform 850ms var(--ease);
}

.product-gallery__stage:hover img { transform: scale(1.018); }

.product-gallery__stage.is-label,
.product-gallery__stage.is-ritual { padding: clamp(30px, 5vw, 72px); background: var(--paper); }

.product-gallery__stage.is-label img { object-fit: contain; transform: none; }
.product-gallery__stage.is-ritual img { object-fit: cover; }

.product-gallery__note {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 24px;
  padding: 8px 12px;
  color: var(--ink);
  background: rgba(255,253,250,.88);
  backdrop-filter: blur(10px);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-gallery__index {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  color: var(--white);
  background: rgba(24,19,19,.25);
  backdrop-filter: blur(10px);
  font-size: .58rem;
  letter-spacing: .08em;
}

.product-gallery__views { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--paper-2); }

.product-view {
  display: grid;
  min-height: 72px;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 0 18px;
  border: 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: .74rem;
  text-align: left;
}

.product-view + .product-view { border-left: 1px solid var(--line); }
.product-view span { font-size: .58rem; }
.product-view.is-active { color: var(--white); background: var(--product-accent); }

.product-buy {
  display: grid;
  align-content: start;
  padding: clamp(38px, 4vw, 58px) clamp(30px, 5vw, 76px) 70px;
  background: var(--paper-2);
}

.product-buy h1 {
  margin: 18px 0 16px;
  color: var(--product-accent);
  font-family: var(--serif);
  font-size: clamp(4.2rem, 6.2vw, 7.4rem);
  font-weight: 400;
  letter-spacing: -.055em;
  transition: color 400ms ease;
}

.product-buy__meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 18px;
  align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.product-buy__meta strong { font-family: var(--serif); font-size: 1.9rem; font-weight: 400; }
.product-buy__meta span { color: var(--muted); font-size: .78rem; }
.product-buy__meta small { grid-column: 2; color: var(--muted); font-size: .67rem; }

.product-buy__intro { max-width: 42ch; margin: 17px 0 21px; color: var(--ink); font-size: 1.05rem; }

.flavour-picker { margin: 0; padding: 0; border: 0; }
.flavour-picker legend { margin-bottom: 13px; font-size: .7rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.flavour-picker > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }

.flavour-choice {
  display: grid;
  min-width: 0;
  min-height: 68px;
  grid-template-columns: 16px 1fr;
  gap: 3px 9px;
  align-content: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: border-color 220ms ease, background 220ms ease;
}

.flavour-choice > span { grid-row: 1 / 3; align-self: center; width: 13px; height: 13px; border-radius: 50%; background: var(--raspberry); }
.flavour-choice--apple > span { background: var(--apple); }
.flavour-choice--tropical > span { background: var(--tropical); }
.flavour-choice b { overflow: hidden; font-size: .7rem; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
.flavour-choice small { color: var(--muted); font-size: .62rem; }
.flavour-choice:hover { border-color: var(--ink); }
.flavour-choice.is-selected { border-color: var(--product-accent); background: var(--product-soft); }

.product-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-facts li { display: grid; min-height: 66px; place-content: center start; gap: 2px; }
.product-facts li + li { padding-left: 18px; border-left: 1px solid var(--line); }
.product-facts strong { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.product-facts span { color: var(--muted); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }

.purchase-row { display: grid; grid-template-columns: 112px 1fr; gap: 10px; }
.quantity { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); background: var(--white); }
.quantity button { border: 0; color: var(--ink); background: transparent; cursor: pointer; font-size: 1.1rem; }
.quantity output { display: grid; place-items: center; font-size: .78rem; }
.add-to-cart { background: var(--product-accent); transition: background 260ms ease, transform 260ms var(--ease); }
.add-to-cart:hover { background: var(--ink); transform: translateY(-2px); }

.purchase-reassurance { display: grid; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.purchase-reassurance p { display: grid; grid-template-columns: 24px 1fr; gap: 1px 8px; color: var(--ink); }
.purchase-reassurance p > span { grid-row: 1 / 3; color: var(--product-accent); }
.purchase-reassurance strong { font-size: .76rem; }
.purchase-reassurance small { color: var(--muted); font-size: .66rem; }
.purchase-reassurance > div { display: flex; gap: 20px; }
.purchase-reassurance a { padding-bottom: 3px; border-bottom: 1px solid currentColor; font-size: .68rem; }

.product-accordions { margin-top: 16px; }
.product-accordions details { border-bottom: 1px solid var(--line); }
.product-accordions summary { display: grid; min-height: 62px; grid-template-columns: 1fr auto; align-items: center; cursor: pointer; font-size: .76rem; font-weight: 600; }
.product-accordions summary span { font-family: var(--serif); font-size: 1.35rem; transition: transform 260ms var(--ease); }
.product-accordions details[open] summary span { transform: rotate(45deg); }
.product-accordions details p { padding: 0 30px 22px 0; font-size: .8rem; line-height: 1.65; }

.product-sensory {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 7vw;
  align-items: center;
  padding: clamp(82px, 10vw, 150px) var(--pad);
  background: var(--paper);
}

.product-sensory figure { overflow: hidden; }
.product-sensory figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.product-sensory figcaption { padding-top: 10px; color: var(--muted); font-size: .65rem; }
.product-sensory h2 { max-width: 9ch; margin: 36px 0 30px; font-size: clamp(3.4rem, 6vw, 7rem); }
.product-sensory > div > p:last-child { max-width: 42ch; line-height: 1.7; }

.product-information { padding: clamp(82px, 9vw, 140px) var(--pad); background: #dce5ca; }
.product-information header { display: grid; grid-template-columns: .35fr 1fr; gap: 4vw; align-items: start; margin-bottom: 70px; }
.product-information header h2 { max-width: 9ch; font-size: clamp(3.5rem, 7vw, 7.8rem); }
.product-information__grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(24,19,19,.28); border-bottom: 1px solid rgba(24,19,19,.28); }
.product-information article { min-height: 280px; padding: 30px; }
.product-information article + article { border-left: 1px solid rgba(24,19,19,.28); }
.product-information article > span { font-size: .66rem; }
.product-information h3 { margin: 70px 0 20px; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 3rem); font-weight: 400; letter-spacing: -.035em; }
.product-information article p { max-width: 34ch; color: rgba(24,19,19,.68); font-size: .82rem; }

.product-next { display: grid; grid-template-columns: .9fr 1.1fr; gap: 8vw; padding: clamp(82px, 9vw, 140px) var(--pad); background: var(--paper-2); }
.product-next h2 { max-width: 9ch; margin-top: 34px; font-size: clamp(3.2rem, 6vw, 7rem); }
.next-links { border-top: 1px solid var(--line); }
.next-links a { display: grid; min-height: 118px; grid-template-columns: 120px 1fr auto; gap: 22px; align-items: center; border-bottom: 1px solid var(--line); }
.next-links a > span { color: var(--muted); font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; }
.next-links strong { font-family: var(--serif); font-size: clamp(1.4rem, 2.5vw, 2.5rem); font-weight: 400; }
.next-links b { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: .78rem; transition: color 240ms ease, background 240ms ease, transform 240ms var(--ease); }
.next-links a:hover b { color: var(--white); background: var(--ink); transform: rotate(10deg); }

.mobile-purchase { display: none; }

/* Account */
.account-main { display: grid; min-height: calc(100svh - 118px); grid-template-columns: minmax(0, 1fr) minmax(420px, .78fr); gap: clamp(44px, 7vw, 112px); align-items: center; padding: clamp(52px, 6vw, 86px) var(--pad) clamp(68px, 7vw, 100px); background: linear-gradient(118deg, var(--paper) 0 64%, #eadde2 64%); }
.account-intro { display: block; max-width: 700px; margin: 0; }
.account-intro h1 { max-width: 8.5ch; margin-top: 30px; font-size: clamp(4rem, 6.1vw, 6.8rem); }
.account-intro h1 em { color: var(--raspberry); font-family: var(--serif); font-weight: 400; }
.account-intro > p:last-child { max-width: 38ch; margin-top: 30px; line-height: 1.7; }
.account-card { width: 100%; max-width: 610px; margin: 0; padding: clamp(26px, 3.5vw, 44px); border: 1px solid var(--line); background: rgba(255,253,250,.94); backdrop-filter: blur(12px); }
.auth-tabs { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 34px; border-bottom: 1px solid var(--line); }
.auth-tabs button { min-height: 52px; border: 0; border-bottom: 2px solid transparent; color: var(--muted); background: transparent; cursor: pointer; font-size: .74rem; font-weight: 600; }
.auth-tabs button[aria-selected="true"] { border-color: var(--raspberry); color: var(--ink); }
.auth-form { display: grid; gap: 20px; }
.auth-form > label, .field { display: grid; gap: 8px; color: var(--ink); font-size: .7rem; font-weight: 600; letter-spacing: .05em; }
.auth-form input, .field input, .field select { width: 100%; min-height: 52px; padding: 0 14px; border: 1px solid var(--line); border-radius: 0; color: var(--ink); background: var(--white); outline: none; }
.auth-form input[type="checkbox"] { width: 16px; height: 16px; min-height: 16px; padding: 0; accent-color: var(--raspberry); }
.auth-form input:focus, .field input:focus, .field select:focus { border-color: var(--raspberry); box-shadow: 0 0 0 2px rgba(185,31,82,.12); }
.auth-form__options { display: flex; align-items: center; justify-content: space-between; gap: 18px; color: var(--muted); font-size: .7rem; }
.auth-form__options label { display: flex; align-items: center; gap: 7px; }
.link-button { padding: 0; border: 0; border-bottom: 1px solid currentColor; color: inherit; background: transparent; cursor: pointer; font-size: .7rem; }
.prototype-note { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); font-size: .66rem; }
.auth-status { min-height: 20px; margin-top: 10px; color: var(--raspberry); font-size: .7rem; }
.account-dashboard { grid-column: 1 / -1; margin-top: 12px; padding: clamp(28px, 4vw, 54px); border: 1px solid var(--line); background: var(--paper-2); }
.account-dashboard[hidden] { display: none; }
.account-dashboard > header { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 36px; }
.account-dashboard h2 { margin-top: 14px; font-family: var(--serif); font-size: 4rem; font-weight: 400; }
.dashboard-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.dashboard-card { min-height: 280px; padding: 26px; }
.dashboard-card + .dashboard-card { border-left: 1px solid var(--line); }
.dashboard-card > span { color: var(--muted); font-size: .64rem; text-transform: uppercase; letter-spacing: .1em; }
.dashboard-card h3 { margin: 68px 0 16px; font-family: var(--serif); font-size: 1.8rem; font-weight: 400; letter-spacing: -.035em; }
.dashboard-card p { margin-bottom: 24px; font-size: .78rem; }
.dashboard-card a:not(.button) { border-bottom: 1px solid currentColor; font-size: .7rem; }
.dashboard-demo-status { margin-top: 14px; color: var(--raspberry); font-size: .7rem; }

/* Delivery */
.delivery-main { padding: clamp(50px, 5vw, 74px) var(--pad) 96px; background: var(--paper-2); }
.delivery-intro { display: grid; max-width: 1320px; grid-template-columns: 1.15fr .55fr; gap: 7vw; align-items: end; margin-bottom: 42px; }
.delivery-intro .eyebrow { grid-column: 1 / -1; }
.delivery-intro h1 { max-width: 11ch; font-size: clamp(3.8rem, 5.8vw, 6.8rem); }
.delivery-intro h1 em { color: var(--raspberry); font-family: var(--serif); font-weight: 400; }
.delivery-intro > p:last-child { max-width: 40ch; padding-bottom: 10px; line-height: 1.7; }
.checkout-steps { display: grid; grid-template-columns: repeat(4, 1fr); margin-bottom: 38px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.checkout-steps li { display: flex; min-height: 58px; align-items: center; gap: 10px; color: var(--muted); font-size: .72rem; }
.checkout-steps li + li { padding-left: 18px; border-left: 1px solid var(--line); }
.checkout-steps span { display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: .62rem; }
.checkout-steps .is-complete, .checkout-steps .is-current { color: var(--ink); }
.checkout-steps .is-complete span { color: var(--white); background: var(--ink); }
.checkout-steps .is-current span { border-color: var(--raspberry); color: var(--white); background: var(--raspberry); }
.delivery-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 5vw, 76px); align-items: start; }
.delivery-form { display: grid; gap: 24px; }
.form-heading { display: grid; grid-template-columns: 44px 1fr; gap: 18px; margin-top: 24px; padding-top: 28px; border-top: 1px solid var(--line); }
.form-heading:first-child { margin-top: 0; }
.form-heading > span { font-size: .66rem; }
.form-heading h2 { margin-bottom: 8px; font-family: var(--serif); font-size: 2.3rem; font-weight: 400; letter-spacing: -.035em; }
.form-heading p { font-size: .76rem; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field--full { grid-column: 1 / -1; }
.prototype-note--left { margin: 0; padding: 0; border: 0; }
.destination-status { padding: 12px 14px; color: var(--apple-deep); background: rgba(191,213,110,.26); font-size: .72rem; }
.international-note { padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: .7rem; }
.delivery-submit { width: 100%; }
.delivery-demo-status { min-height: 24px; color: var(--raspberry); font-size: .72rem; }
.order-summary { position: sticky; top: 28px; padding: 30px; border: 1px solid var(--line); background: var(--paper); }
.order-summary > header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.order-summary h2 { font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.order-summary .text-link { padding: 0 0 4px; border: 0; border-bottom: 1px solid currentColor; color: var(--ink); background: transparent; cursor: pointer; }
.checkout-items { display: grid; gap: 18px; }
.checkout-empty { padding: 28px 0; font-size: .78rem; }
.checkout-empty a { border-bottom: 1px solid currentColor; }
.checkout-item { display: grid; grid-template-columns: 70px 1fr auto; gap: 14px; align-items: center; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.checkout-item img { width: 70px; height: 86px; object-fit: cover; }
.checkout-item div { display: grid; gap: 4px; }
.checkout-item div strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; }
.checkout-item div span, .checkout-item > b { color: var(--muted); font-size: .66rem; }
.order-summary__line, .order-summary__total { display: flex; align-items: baseline; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: .76rem; }
.order-summary__total { font-weight: 600; }
.order-summary__total strong { font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }
.order-summary > p { margin-top: 16px; font-size: .66rem; }
.delivery-principles { margin-top: 110px; }
.delivery-principles > h2 { max-width: 9ch; margin: 36px 0 60px; font-size: clamp(3.5rem, 7vw, 7.6rem); }
.delivery-principles > div { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.delivery-principles article { min-height: 240px; padding: 28px; }
.delivery-principles article + article { border-left: 1px solid var(--line); }
.delivery-principles article > span { font-size: .66rem; }
.delivery-principles h3 { margin: 64px 0 16px; font-family: var(--serif); font-size: 1.7rem; font-weight: 400; letter-spacing: -.035em; }
.delivery-principles p { max-width: 30ch; font-size: .76rem; }

@media (max-width: 1050px) {
  .product-detail { grid-template-columns: 1fr 1fr; }
  .product-gallery { min-height: 660px; }
  .product-buy { padding-inline: 34px; }
  .flavour-choice { grid-template-columns: 12px 1fr; padding-inline: 8px; }
  .flavour-choice small { display: none; }
  .purchase-row { grid-template-columns: 96px 1fr; }
  .product-information header { grid-template-columns: 1fr; }
  .delivery-intro { grid-template-columns: 1fr .65fr; }
  .delivery-intro > p:last-child { max-width: 46ch; }
  .dashboard-grid { grid-template-columns: 1fr 1fr; }
  .dashboard-card--wide { grid-column: 1 / -1; border-bottom: 1px solid var(--line); }
  .delivery-layout { grid-template-columns: 1fr .8fr; }
}

@media (max-width: 860px) {
  .product-detail { grid-template-columns: 1fr; }
  .product-gallery { position: relative; top: auto; height: auto; min-height: 0; border-right: 0; }
  .product-gallery__stage { height: min(110vw, 760px); }
  .product-gallery__views { position: relative; z-index: 2; }
  .product-buy { padding: 56px 22px 72px; }
  .product-buy h1 { font-size: clamp(4.5rem, 14vw, 7rem); }
  .product-sensory { grid-template-columns: 1fr; gap: 56px; padding: 78px 22px; }
  .product-sensory > div { padding-left: 12%; }
  .product-information { padding: 78px 22px; }
  .product-information__grid { grid-template-columns: 1fr; }
  .product-information article { min-height: 190px; }
  .product-information article + article { border-top: 1px solid rgba(24,19,19,.28); border-left: 0; }
  .product-information h3 { margin-top: 42px; }
  .product-next { grid-template-columns: 1fr; gap: 56px; padding: 78px 22px; }
  .mobile-purchase { position: fixed; z-index: 80; right: 12px; bottom: 12px; left: 12px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 18px; padding: 10px 10px 10px 16px; color: var(--white); background: rgba(24,19,19,.94); backdrop-filter: blur(14px); box-shadow: 0 16px 44px rgba(24,19,19,.22); transform: translateY(0); transition: transform 420ms var(--ease); }
  .mobile-purchase.is-visible { transform: translateY(0); }
  .mobile-purchase > div { display: grid; }
  .mobile-purchase strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; }
  .mobile-purchase span { color: rgba(255,255,255,.62); font-size: .64rem; }
  .mobile-purchase button { min-height: 44px; padding: 0 20px; border: 0; color: var(--white); background: var(--product-accent); cursor: pointer; font-size: .72rem; font-weight: 600; }
  .account-main { grid-template-columns: 1fr; gap: 42px; align-items: start; padding: 54px 22px 80px; }
  .delivery-main { padding: 50px 22px 80px; }
  .account-intro, .delivery-intro { grid-template-columns: 1fr; margin-bottom: 38px; }
  .account-intro h1 { max-width: 9ch; }
  .account-card { max-width: none; margin-left: 0; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .dashboard-card--wide { grid-column: auto; }
  .dashboard-card + .dashboard-card { border-top: 1px solid var(--line); border-left: 0; }
  .delivery-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; order: -1; }
  .delivery-principles { margin-top: 80px; }
  .delivery-principles > div { grid-template-columns: 1fr; }
  .delivery-principles article + article { border-top: 1px solid var(--line); border-left: 0; }
}

@media (min-width: 700px) and (max-width: 860px) {
  .product-detail { grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); }
  .product-gallery { position: sticky; top: 0; height: calc(100svh - 30px); min-height: 680px; align-self: start; border-right: 1px solid var(--line); }
  .product-gallery__stage { height: auto; }
  .product-buy { padding: 30px 26px 54px; }
  .product-buy h1 { margin-block: 12px; font-size: clamp(3.5rem, 8vw, 4.7rem); }
  .product-buy__intro { margin-block: 12px 16px; }
  .flavour-choice { min-height: 58px; }
  .product-facts { margin-block: 14px; }
  .purchase-reassurance { padding-block: 16px; }
  .mobile-purchase { display: none; }
}

@media (max-width: 560px) {
  .breadcrumbs { min-height: 48px; padding-inline: 16px; }
  .product-gallery__stage { height: 78vw; min-height: 292px; }
  .product-gallery__note { top: 14px; left: 14px; font-size: .55rem; }
  .product-gallery__index { right: 14px; bottom: 14px; }
  .product-view { min-height: 60px; gap: 7px; padding-inline: 9px; font-size: .65rem; }
  .product-buy { padding: 34px 18px 62px; }
  .product-buy h1 { font-size: clamp(3.5rem, 15vw, 4.8rem); }
  .product-buy__meta { grid-template-columns: 1fr auto; }
  .product-buy__meta small { grid-column: 1 / -1; }
  .flavour-picker > div { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .flavour-choice { min-height: 62px; grid-template-columns: 12px 1fr; gap: 5px; padding-inline: 8px; }
  .flavour-choice > span { width: 10px; height: 10px; }
  .flavour-choice b { font-size: .63rem; }
  .flavour-choice small { display: none; }
  .purchase-row { grid-template-columns: 92px 1fr; }
  .purchase-reassurance > div { flex-wrap: wrap; }
  .product-sensory > div { padding-left: 0; }
  .product-sensory figure img { aspect-ratio: 1 / .86; }
  .next-links a { min-height: 96px; grid-template-columns: 82px 1fr auto; gap: 12px; }
  .next-links strong { font-size: 1.25rem; }
  .account-intro h1, .delivery-intro h1 { font-size: clamp(3.2rem, 14vw, 4.5rem); }
  .account-card { padding: 22px 16px; }
  .auth-tabs button { font-size: .66rem; }
  .auth-form__options { align-items: start; flex-direction: column; }
  .account-dashboard { padding: 24px 16px; }
  .account-dashboard > header { align-items: start; flex-direction: column; }
  .field-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .checkout-steps { grid-template-columns: repeat(4, 1fr); overflow: visible; }
  .checkout-steps li { min-width: 0; min-height: 66px; flex-direction: column; justify-content: center; gap: 5px; padding-inline: 3px; font-size: .55rem; text-align: center; }
  .checkout-steps li + li { padding-left: 3px; }
  .checkout-steps span { width: 24px; height: 24px; }
  .order-summary { padding: 22px 16px; }
  .delivery-principles article { min-height: 190px; }
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(*), ::view-transition-old(*), ::view-transition-new(*) { animation-duration: .01ms !important; }
}
