:root {
  color-scheme: dark;
  --font-main: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease-luxe: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-touch: cubic-bezier(0.2, 0.8, 0.2, 1);
  --section-x: clamp(20px, 5vw, 88px);
  --section-y: clamp(64px, 9vw, 116px);
  --section-gap: clamp(28px, 5vw, 56px);
  --content-gap: clamp(14px, 2.3vw, 22px);
  --black: #000;
  --panel: #000;
  --panel-soft: #050505;
  --ink: #f7edda;
  --muted: #cfc0a5;
  --dim: rgba(247, 237, 218, 0.68);
  --gold: #f6ce67;
  --gold-strong: #f1ad28;
  --gold-deep: #8e6322;
  --line: rgba(246, 206, 103, 0.42);
  --shadow: rgba(234, 167, 43, 0.34);
  --radius: 28px;
  --scrollbar-track: rgba(9, 7, 4, 0.72);
  --scrollbar-thumb: color-mix(in srgb, var(--gold) 58%, rgba(255, 255, 255, 0.2));
  --scrollbar-thumb-hover: color-mix(in srgb, var(--gold) 78%, rgba(255, 255, 255, 0.26));
  --finish-tint: rgba(246, 206, 103, 0.18);
  --finish-filter: saturate(1.08) contrast(1.04) brightness(1.03);
  --finish-grayscale: 0;
  --finish-sepia: 0;
  --finish-hue: 0deg;
  --finish-saturation: 1.08;
  --finish-brightness: 1.03;
  --finish-contrast: 1.04;
}

@property --gold {
  syntax: "<color>";
  inherits: true;
  initial-value: #f6ce67;
}

@property --gold-strong {
  syntax: "<color>";
  inherits: true;
  initial-value: #f1ad28;
}

@property --finish-tint {
  syntax: "<color>";
  inherits: true;
  initial-value: rgba(246, 206, 103, 0.18);
}

@property --finish-grayscale {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}

@property --finish-sepia {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}

@property --finish-hue {
  syntax: "<angle>";
  inherits: true;
  initial-value: 0deg;
}

@property --finish-saturation {
  syntax: "<number>";
  inherits: true;
  initial-value: 1.08;
}

@property --finish-brightness {
  syntax: "<number>";
  inherits: true;
  initial-value: 1.03;
}

@property --finish-contrast {
  syntax: "<number>";
  inherits: true;
  initial-value: 1.04;
}

body[data-finish="rose"] {
  --gold: #f3b7a2;
  --gold-strong: #d9866b;
  --finish-tint: rgba(242, 154, 129, 0.22);
  --finish-filter: sepia(0.28) hue-rotate(-18deg) saturate(1.28) brightness(1.04) contrast(1.04);
  --finish-grayscale: 0;
  --finish-sepia: 0.28;
  --finish-hue: -18deg;
  --finish-saturation: 1.28;
  --finish-brightness: 1.04;
  --finish-contrast: 1.04;
}

body[data-finish="silver"] {
  --gold: #dfe7ef;
  --gold-strong: #aeb9c4;
  --finish-tint: rgba(213, 225, 236, 0.18);
  --finish-filter: grayscale(0.88) sepia(0.08) saturate(0.46) brightness(1.15) contrast(1.06);
  --finish-grayscale: 0.88;
  --finish-sepia: 0.08;
  --finish-hue: 0deg;
  --finish-saturation: 0.46;
  --finish-brightness: 1.15;
  --finish-contrast: 1.06;
}

* {
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

[hidden] {
  display: none !important;
}

*::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

*::-webkit-scrollbar-track {
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    var(--scrollbar-track);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--gold) 12%, rgba(255, 255, 255, 0.08));
}

*::-webkit-scrollbar-thumb {
  border: 3px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.12) 38%, rgba(0, 0, 0, 0.1)),
    linear-gradient(180deg, var(--scrollbar-thumb), color-mix(in srgb, var(--gold-strong) 54%, rgba(0, 0, 0, 0.18)));
  background-clip: padding-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 0 14px color-mix(in srgb, var(--gold) 20%, transparent);
}

*::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.14) 38%, rgba(0, 0, 0, 0.08)),
    linear-gradient(180deg, var(--scrollbar-thumb-hover), color-mix(in srgb, var(--gold-strong) 68%, rgba(0, 0, 0, 0.12)));
  background-clip: padding-box;
}

*::-webkit-scrollbar-corner {
  background: transparent;
}

html {
  min-height: 100%;
  background: #000;
  overflow-x: hidden;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-main);
  line-height: 1.55;
  letter-spacing: 0;
  background: #000;
  overflow-x: hidden;
  transition:
    --gold 620ms cubic-bezier(0.22, 1, 0.36, 1),
    --gold-strong 620ms cubic-bezier(0.22, 1, 0.36, 1),
    --finish-tint 620ms cubic-bezier(0.22, 1, 0.36, 1),
    --finish-grayscale 760ms cubic-bezier(0.22, 1, 0.36, 1),
    --finish-sepia 760ms cubic-bezier(0.22, 1, 0.36, 1),
    --finish-hue 760ms cubic-bezier(0.22, 1, 0.36, 1),
    --finish-saturation 760ms cubic-bezier(0.22, 1, 0.36, 1),
    --finish-brightness 760ms cubic-bezier(0.22, 1, 0.36, 1),
    --finish-contrast 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-cart-open {
  overflow: hidden;
}

/* Robust scroll lock: while a popup is open the page behind cannot scroll
   (including iOS Safari rubber-banding). The scroll position is preserved in
   JS and restored on close. */
body.is-scroll-locked {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
  font: inherit;
}

.stage {
  min-height: 100svh;
  padding: 0;
  max-width: 100vw;
  overflow-x: clip;
}

.hero-shell {
  --edge: clamp(16px, 4.5vw, 76px);
  --top-offset: max(16px, env(safe-area-inset-top));
  --topbar-h: clamp(46px, 7svh, 76px);
  --bottom-space: max(18px, env(safe-area-inset-bottom));
  --hero-min-h: max(100svh, 760px);
  --art-center-y: clamp(208px, 36svh, 340px);
  --aura-tracking: 0.22em;
  --aura-center-fix: 0.11em;
  position: relative;
  min-height: var(--hero-min-h);
  overflow: hidden;
  isolation: isolate;
  padding: 0 var(--edge) var(--bottom-space);
  background: #000;
}

.topbar {
  position: absolute;
  top: var(--top-offset);
  left: var(--edge);
  right: var(--edge);
  z-index: 8;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 2vw, 10px);
  min-width: 0;
}

.brand-mark {
  width: clamp(36px, 8vw, 42px);
  height: clamp(36px, 8vw, 42px);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--gold);
  transition: color 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  filter:
    drop-shadow(0 0 11px rgba(246, 206, 103, 0.28))
    drop-shadow(0 3px 9px rgba(0, 0, 0, 0.62));
}

.brand-copy {
  display: grid;
  gap: 0;
  min-width: 0;
  text-transform: uppercase;
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
}

.brand-copy span {
  font-size: clamp(1rem, 6.4vw, 1.9rem);
  letter-spacing: 0.1em;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.72);
  white-space: nowrap;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.6rem;
  letter-spacing: clamp(0.34em, 1.5vw, 0.56em);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.72);
  transition: color 620ms cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}

.desktop-nav {
  display: none;
}

.top-actions {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.icon-button,
.round-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--gold) 24%, rgba(255, 255, 255, 0.34));
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.055) 42%, rgba(255, 255, 255, 0.018)),
    color-mix(in srgb, var(--gold) 9%, rgba(255, 255, 255, 0.04));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -18px 26px rgba(255, 255, 255, 0.045),
    0 12px 34px rgba(0, 0, 0, 0.42),
    0 0 22px color-mix(in srgb, var(--gold) 10%, transparent);
  -webkit-backdrop-filter: blur(22px) saturate(1.45);
  backdrop-filter: blur(22px) saturate(1.45);
  cursor: pointer;
  transition:
    border-color 620ms cubic-bezier(0.22, 1, 0.36, 1),
    color 620ms cubic-bezier(0.22, 1, 0.36, 1),
    background 620ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 180ms ease;
}

.icon-button::before,
.round-button::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: inherit;
  background:
    radial-gradient(ellipse at 28% 4%, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.2), transparent 46%);
  opacity: 0.72;
  pointer-events: none;
}

.icon-button > *,
.round-button > * {
  position: relative;
  z-index: 1;
}

.icon-button {
  width: 42px;
  height: 42px;
  border-color: transparent;
  border-radius: 50%;
}

.cart-count {
  position: absolute;
  right: 6px;
  top: 6px;
  min-width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  color: #1b1205;
  background: linear-gradient(135deg, #fff3b8, var(--gold));
  box-shadow: 0 0 14px color-mix(in srgb, var(--gold) 28%, transparent);
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 1;
}

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

.icon-button svg,
.round-button svg,
.feature svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-button:is(:hover, :focus-visible),
.round-button:is(:hover, :focus-visible) {
  border-color: color-mix(in srgb, var(--gold) 62%, rgba(255, 255, 255, 0.44));
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08) 42%, rgba(255, 255, 255, 0.03)),
    color-mix(in srgb, var(--gold) 15%, rgba(255, 255, 255, 0.05));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -18px 28px rgba(255, 255, 255, 0.06),
    0 16px 40px rgba(0, 0, 0, 0.5),
    0 0 34px color-mix(in srgb, var(--gold) 20%, transparent);
  outline: none;
}

.icon-button:active,
.round-button:active {
  transform: scale(0.96);
}

.mobile-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin: 12px 0 10px;
  padding: 5px;
  border: 1px solid rgba(246, 206, 103, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.mobile-tabs a {
  min-height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--dim);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.78rem, 3.1vw, 0.92rem);
  white-space: nowrap;
}

.mobile-tabs a[aria-current="page"] {
  color: #2a1c06;
  background: linear-gradient(135deg, #fff4ba, #f3b733 54%, #b47524);
  box-shadow: 0 8px 24px rgba(234, 166, 43, 0.16);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(clamp(350px, 52svh, 560px), 1fr) auto auto auto;
  align-content: start;
  row-gap: clamp(8px, 1.6svh, 16px);
  min-height: calc(var(--hero-min-h) - var(--bottom-space));
  padding: 0;
}

.product-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 0;
  display: grid;
  place-items: start center;
  margin: 0 calc(var(--edge) * -1);
  overflow: hidden;
  pointer-events: none;
}

.product-stage::before {
  content: "";
  position: absolute;
  top: var(--art-center-y);
  left: 50%;
  translate: -50% -50%;
  width: min(84vw, 440px);
  aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, var(--gold) 36%, transparent);
  border-radius: 50%;
  box-shadow:
    0 0 26px color-mix(in srgb, var(--gold) 34%, transparent),
    inset 0 0 42px color-mix(in srgb, var(--gold) 9%, transparent);
  opacity: 0.85;
  transition:
    border-color 620ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 620ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 620ms ease;
}

.product-stage::after {
  content: "";
  display: none;
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(circle at 49% 56%, var(--finish-tint), transparent 28%),
    linear-gradient(90deg, transparent 25%, var(--finish-tint), transparent 75%);
  mix-blend-mode: soft-light;
  opacity: 0.82;
  transition: background 520ms ease, opacity 520ms ease;
}

.product-stage img,
.product-stage video {
  background: transparent;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  z-index: 2;
  width: min(116vw, 590px);
  max-width: none;
  height: clamp(380px, 60svh, 620px);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center top;
  margin-top: 0;
  opacity: 0.96;
  mix-blend-mode: screen;
  filter:
    contrast(1.24)
    brightness(1.08)
    saturate(1.08)
    grayscale(var(--finish-grayscale))
    sepia(var(--finish-sepia))
    hue-rotate(var(--finish-hue))
    saturate(var(--finish-saturation))
    brightness(var(--finish-brightness))
    contrast(var(--finish-contrast))
    drop-shadow(0 18px 34px rgba(0, 0, 0, 0.7));
  transition:
    filter 760ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 420ms ease;
  user-select: none;
  pointer-events: none;
}

.luxe-word {
  position: absolute;
  z-index: 1;
  top: var(--art-center-y);
  left: 50%;
  translate: calc(-50% + var(--aura-center-fix)) -50%;
  color: rgba(217, 199, 160, 0.26);
  font-size: clamp(5rem, 28vw, 9.8rem);
  font-weight: 900;
  letter-spacing: var(--aura-tracking);
  line-height: 0.8;
  text-transform: uppercase;
}

.slide-count {
  position: absolute;
  right: 0;
  top: clamp(330px, 56svh, 520px);
  margin: 0;
  writing-mode: vertical-rl;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  transition: color 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-copy {
  position: relative;
  z-index: 3;
  grid-row: 2;
  margin-top: 0;
  min-width: 0;
}

.product-kicker {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: clamp(0.68rem, 2.8vw, 0.78rem);
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-copy h1 {
  max-width: min(100%, 17ch);
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 7vw, 2.85rem);
  font-weight: 500;
  line-height: 1;
  overflow-wrap: normal;
  text-wrap: balance;
}

.product-description {
  max-width: 32rem;
  margin: 10px 0 0;
  color: rgba(247, 237, 218, 0.78);
  font-size: clamp(0.82rem, 3.2vw, 1rem);
  line-height: 1.45;
}

.hero-demo-card {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  width: min(100%, 390px);
  margin: 14px 0 0;
  padding: 9px;
  border: 1px solid color-mix(in srgb, var(--gold) 28%, rgba(255, 255, 255, 0.18));
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(0, 0, 0, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 16px 36px rgba(0, 0, 0, 0.34);
}

.hero-demo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

.hero-demo-card figcaption {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.hero-demo-card figcaption span {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-demo-card figcaption strong {
  color: rgba(247, 237, 218, 0.82);
  font-size: clamp(0.74rem, 2.6vw, 0.88rem);
  font-weight: 700;
  line-height: 1.35;
}

.price {
  margin: 0;
  color: #f2c866;
  font-size: clamp(2.65rem, 14vw, 4.4rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0.04em;
  text-shadow: 0 0 22px rgba(246, 206, 103, 0.18);
}

.meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 12px 0 0;
  color: rgba(247, 237, 218, 0.86);
  font-size: clamp(0.72rem, 3vw, 0.82rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  max-width: 100%;
}

.meta span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  transition: background-color 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 14px 0 0;
  min-width: 0;
}

.product-price .price-amount {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 5.5vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-shadow: 0 0 22px rgba(246, 206, 103, 0.16);
}

.price-compare {
  color: rgba(247, 237, 218, 0.6);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 5.5vw, 2.1rem);
  font-weight: 700;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-color: rgba(246, 206, 103, 0.85);
}

.product-price .price-note {
  color: rgba(247, 237, 218, 0.55);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.price-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin: 14px 0 0;
  min-width: 0;
}

.price-eyebrow {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.price-block .product-price {
  margin: 0;
}

.price-offer-tag {
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
  padding: 3px 10px;
  border: 1px solid color-mix(in srgb, var(--gold) 30%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--gold) 9%, transparent);
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-includes {
  max-width: 44ch;
  margin: 10px 0 0;
  color: rgba(247, 237, 218, 0.62);
  font-size: 0.82rem;
  line-height: 1.55;
}

.cart-line-price {
  margin-top: 8px !important;
  color: var(--gold) !important;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* ---- Trust signals ---- */
.trust-row {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  /* Span every column of .hero-actions so it stays full-width and its 3
     columns line up with the feature row above. */
  grid-column: 1 / -1;
}

.trust-row li {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 7px;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(247, 237, 218, 0.66);
}

.trust-row svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ---- Cart drawer trust ---- */
.cart-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: rgba(247, 237, 218, 0.6);
  text-align: center;
  min-width: 0;
}

.cart-secure span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.cart-secure svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.payment-row {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(38px, 38px));
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
}

.payment-row li {
  display: inline-flex;
}

.payment-row svg {
  width: 38px;
  height: 24px;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

@media (min-width: 720px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---- Photo upload ---- */
.photo-upload {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 10px;
  min-width: 0;
  text-align: left;
}

.photo-upload-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
  color: rgba(247, 237, 218, 0.82);
  font-size: 0.74rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.photo-upload-label .photo-upload-step {
  color: rgba(247, 237, 218, 0.5);
  letter-spacing: 0.06em;
}

.photo-dropzone {
  display: grid;
  place-items: center;
  gap: 6px;
  padding: 20px 16px;
  border: 1.5px dashed color-mix(in srgb, var(--gold) 42%, rgba(255, 255, 255, 0.28));
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--gold) 10%, transparent), transparent 60%),
    rgba(255, 255, 255, 0.02);
  cursor: pointer;
  text-align: center;
  transition:
    border-color 320ms ease,
    background 320ms ease,
    transform 180ms ease;
}

.photo-dropzone:is(:hover, :focus-visible),
.photo-dropzone.is-dragover {
  border-color: color-mix(in srgb, var(--gold) 72%, rgba(255, 255, 255, 0.4));
  background:
    radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--gold) 18%, transparent), transparent 62%),
    rgba(255, 255, 255, 0.04);
  outline: none;
}

.photo-dropzone.is-dragover {
  transform: scale(1.01);
}

.photo-dropzone svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.photo-dz-title {
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
}

.photo-dz-hint {
  color: rgba(247, 237, 218, 0.55);
  font-size: 0.74rem;
  letter-spacing: 0.03em;
}

.photo-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid color-mix(in srgb, var(--gold) 34%, rgba(255, 255, 255, 0.2));
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.photo-preview[hidden] {
  display: none;
}

.photo-preview img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.photo-meta {
  display: grid;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.photo-name {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.photo-ok {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: color-mix(in srgb, var(--gold) 75%, rgba(255, 255, 255, 0.5));
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}

.photo-ok::before {
  content: "✓";
  font-weight: 800;
}

.photo-remove {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid color-mix(in srgb, var(--gold) 22%, rgba(255, 255, 255, 0.24));
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(247, 237, 218, 0.8);
  cursor: pointer;
  transition: border-color 320ms ease, color 320ms ease;
}

.photo-remove svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.photo-remove:is(:hover, :focus-visible) {
  border-color: color-mix(in srgb, var(--gold) 56%, rgba(255, 255, 255, 0.36));
  color: var(--ink);
  outline: none;
}

.photo-error {
  margin: 0;
  color: #ff9b8a;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.photo-error[hidden] {
  display: none;
}

.photo-tip {
  margin: 0;
  color: rgba(247, 237, 218, 0.5);
  font-size: 0.74rem;
  line-height: 1.45;
}

.photo-examples {
  display: grid;
  gap: 9px;
  margin-top: 2px;
}

.example-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.example-photo {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 7px;
  border: 1px solid color-mix(in srgb, var(--gold) 24%, rgba(255, 255, 255, 0.18));
  border-radius: 15px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.014)),
    rgba(255, 255, 255, 0.02);
  color: rgba(247, 237, 218, 0.78);
  cursor: pointer;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.example-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 11px;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.32);
}

.example-photo span {
  min-width: 0;
  overflow: hidden;
  color: currentColor;
  font-size: clamp(0.66rem, 2.2vw, 0.72rem);
  font-weight: 750;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.example-photo:is(:hover, :focus-visible),
.example-photo.is-selected {
  border-color: color-mix(in srgb, var(--gold) 68%, rgba(255, 255, 255, 0.26));
  color: var(--ink);
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 22px color-mix(in srgb, var(--gold) 14%, transparent);
}

.example-photo.is-selected {
  background:
    radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--gold) 18%, transparent), transparent 68%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
}

.cart-photo-status {
  color: rgba(247, 237, 218, 0.68);
}

.cart-photo-status.is-attached {
  color: color-mix(in srgb, var(--gold) 78%, rgba(255, 255, 255, 0.5)) !important;
  font-weight: 600;
}

/* ---- Judge.me reviews ---- */
[data-jdgm-mount][hidden],
[data-jdgm-fallback][hidden] {
  display: none !important;
}

/* ---- Personalize modal ---- */
body.is-personalize-open {
  overflow: hidden;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  border: 0;
  padding: 0;
  touch-action: none;
  background:
    radial-gradient(circle at 50% 30%, color-mix(in srgb, var(--gold) 14%, transparent), transparent 40%),
    rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-personalize-open .modal-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.personalize-modal {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  z-index: 41;
  display: grid;
  place-items: center;
  padding: clamp(12px, 4vw, 28px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 360ms ease, visibility 360ms ease;
}

body.is-personalize-open .personalize-modal {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.personalize-panel {
  width: min(100%, 520px);
  max-height: min(88svh, 780px);
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vw, 22px);
  border: 1px solid color-mix(in srgb, var(--gold) 26%, rgba(255, 255, 255, 0.26));
  border-radius: 28px;
  padding: clamp(20px, 4vw, 30px);
  background:
    radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--gold) 12%, transparent), transparent 58%),
    linear-gradient(180deg, rgba(22, 17, 10, 0.97), rgba(8, 7, 5, 0.98)),
    #000;
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  backdrop-filter: blur(22px) saturate(1.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 30px 80px rgba(0, 0, 0, 0.62),
    0 0 50px color-mix(in srgb, var(--gold) 12%, transparent);
  transform: translateY(14px) scale(0.985);
  transition: transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

.personalize-panel::-webkit-scrollbar,
.cart-panel::-webkit-scrollbar {
  width: 10px;
}

.personalize-panel::-webkit-scrollbar-track,
.cart-panel::-webkit-scrollbar-track {
  margin-block: 18px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(5, 4, 3, 0.5);
}

.personalize-panel::-webkit-scrollbar-thumb,
.cart-panel::-webkit-scrollbar-thumb {
  border-width: 2px;
}

body.is-personalize-open .personalize-panel {
  transform: none;
}

.personalize-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.personalize-header h2 {
  margin: 2px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 5vw, 1.9rem);
  font-weight: 500;
  color: var(--ink);
}

.personalize-body {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vw, 22px);
}

.personalize-summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid color-mix(in srgb, var(--gold) 18%, rgba(255, 255, 255, 0.12));
  color: rgba(247, 237, 218, 0.82);
  font-size: 0.95rem;
}

.personalize-summary strong {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 700;
  white-space: nowrap;
}

.lens-preview {
  display: grid;
  grid-template-columns: minmax(118px, 0.42fr) minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-width: 0;
  overflow: hidden;
  padding: 13px;
  border: 1px solid color-mix(in srgb, var(--gold) 28%, rgba(255, 255, 255, 0.18));
  border-radius: 22px;
  background:
    radial-gradient(circle at 22% 16%, color-mix(in srgb, var(--gold) 16%, transparent), transparent 46%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 46px rgba(0, 0, 0, 0.28);
}

.lens-preview-art {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--gold) 18%, rgba(255, 255, 255, 0.12));
  border-radius: 18px;
  background: #020202;
}

.lens-preview-necklace {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter:
    grayscale(var(--finish-grayscale, 0))
    sepia(var(--finish-sepia, 0))
    saturate(var(--finish-saturate, 1))
    hue-rotate(var(--finish-hue, 0deg))
    brightness(var(--finish-brightness, 1))
    contrast(1.05);
  transition: filter 650ms var(--ease-luxe);
}

.lens-preview-photo {
  position: absolute;
  right: 7%;
  bottom: 7%;
  display: grid;
  place-items: center;
  width: 27%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--gold) 60%, rgba(255, 255, 255, 0.32));
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.42), transparent 24%),
    radial-gradient(circle at 50% 50%, rgba(255, 216, 135, 0.22), rgba(0, 0, 0, 0.7));
  box-shadow:
    0 0 0 4px rgba(0, 0, 0, 0.32),
    0 0 24px color-mix(in srgb, var(--gold) 28%, transparent);
}

.lens-preview-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lens-preview-photo img[hidden],
.lens-preview-photo span[hidden] {
  display: none;
}

.lens-preview-photo span {
  color: rgba(247, 237, 218, 0.72);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.lens-preview-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.lens-preview-copy h3 {
  margin: 0;
  max-width: 100%;
  overflow: hidden;
  color: var(--ink);
  font-size: clamp(1rem, 3vw, 1.22rem);
  font-weight: 760;
  line-height: 1.18;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lens-preview-copy p:not(.field-label) {
  margin: 0;
  max-width: 100%;
  overflow: hidden;
  color: rgba(247, 237, 218, 0.62);
  font-size: 0.82rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.personalize-field {
  display: grid;
  gap: 12px;
}

.field-label {
  margin: 0;
  color: rgba(247, 237, 218, 0.7);
  font-size: 0.74rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.personalize-field .finish-options {
  justify-content: flex-start;
}

.personalize-quantity-field {
  align-items: start;
}

.modal-quantity {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  height: 46px;
  width: 150px;
  overflow: hidden;
  contain: paint;
  clip-path: inset(0 round 999px);
  border: 1px solid color-mix(in srgb, var(--gold) 34%, rgba(255, 255, 255, 0.28));
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 46px 0 0 rgba(255, 255, 255, 0.015),
    inset -46px 0 0 rgba(255, 255, 255, 0.015);
}

.modal-quantity .qty-button {
  flex: 0 0 46px;
  width: 46px;
  height: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.modal-quantity .qty-button::before {
  content: none;
  display: none;
}

.modal-quantity .qty-input {
  flex: 0 0 56px;
  width: 56px;
  height: 100%;
  border: 0;
  border-inline: 1px solid color-mix(in srgb, var(--gold) 23%, rgba(255, 255, 255, 0.16));
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  text-align: center;
}

.modal-quantity .qty-input:focus {
  outline: none;
}

.personalize-actions {
  display: grid;
  gap: 12px;
  margin-top: 2px;
}

.photo-status,
.personalize-note,
.cart-production-note,
.cart-checkout-note {
  margin: 0;
  color: rgba(247, 237, 218, 0.68);
  font-size: 0.82rem;
  line-height: 1.5;
}

.photo-status[data-state="success"],
.cart-photo-note[data-state="success"] {
  color: color-mix(in srgb, var(--gold) 82%, #fff);
}

.photo-status[data-state="warning"],
.cart-checkout-note {
  color: rgba(247, 237, 218, 0.78);
}

.photo-status[data-state="error"] {
  color: #ffb6a8;
}

.feature-row {
  position: relative;
  z-index: 3;
  grid-row: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 4px 0 0;
  min-width: 0;
}

.feature {
  min-height: 54px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 8px;
  color: var(--gold);
  text-align: center;
  transition: color 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.feature svg {
  width: 24px;
  height: 24px;
}

.feature span {
  color: rgba(247, 237, 218, 0.78);
  font-size: clamp(0.62rem, 2.7vw, 0.72rem);
  line-height: 1.2;
}

.hero-actions {
  position: relative;
  z-index: 3;
  grid-row: 4;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.hero-production-note {
  margin: -2px 0 0;
  color: rgba(247, 237, 218, 0.66);
  font-size: clamp(0.74rem, 2.8vw, 0.86rem);
  line-height: 1.4;
  text-align: center;
}

.shop-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 54px;
  width: 100%;
  min-width: 0;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--gold) 46%, rgba(255, 255, 255, 0.48));
  border-radius: 18px;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.075) 42%, rgba(255, 255, 255, 0.028)),
    linear-gradient(135deg, color-mix(in srgb, var(--gold) 20%, rgba(255, 255, 255, 0.1)), color-mix(in srgb, var(--gold-strong) 28%, rgba(255, 255, 255, 0.035)));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    inset 0 -24px 34px rgba(255, 255, 255, 0.055),
    0 18px 46px rgba(0, 0, 0, 0.48),
    0 0 42px color-mix(in srgb, var(--gold-strong) 20%, transparent);
  -webkit-backdrop-filter: blur(26px) saturate(1.55);
  backdrop-filter: blur(26px) saturate(1.55);
  font-size: clamp(0.88rem, 3.8vw, 1.03rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.6);
  transition:
    border-color 620ms cubic-bezier(0.22, 1, 0.36, 1),
    background 620ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 180ms ease;
}

.shop-button::before,
.finish-swatch::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: inherit;
  background:
    radial-gradient(ellipse at 18% 0%, rgba(255, 255, 255, 0.72), transparent 32%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.24), transparent 44%);
  opacity: 0.72;
  pointer-events: none;
}

.shop-button > *,
.finish-swatch > * {
  position: relative;
  z-index: 1;
}

.shop-button:is(:hover, :focus-visible) {
  border-color: color-mix(in srgb, var(--gold) 72%, rgba(255, 255, 255, 0.56));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    inset 0 -24px 36px rgba(255, 255, 255, 0.07),
    0 22px 56px rgba(0, 0, 0, 0.52),
    0 0 52px color-mix(in srgb, var(--gold-strong) 28%, transparent);
  outline: none;
}

.shop-button:active {
  transform: scale(0.985);
}

/* Secondary express-checkout treatment (lighter than the gold primary). */
.shop-button--ghost {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055) 48%, rgba(255, 255, 255, 0.018)),
    color-mix(in srgb, var(--gold) 7%, rgba(255, 255, 255, 0.025));
  border-color: color-mix(in srgb, var(--gold) 22%, rgba(255, 255, 255, 0.28));
  color: rgba(247, 237, 218, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -14px 22px rgba(255, 255, 255, 0.045),
    0 10px 28px rgba(0, 0, 0, 0.38);
}

.shop-button--ghost:is(:hover, :focus-visible) {
  border-color: color-mix(in srgb, var(--gold) 58%, rgba(255, 255, 255, 0.38));
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    inset 0 -14px 22px rgba(255, 255, 255, 0.055),
    0 12px 30px rgba(0, 0, 0, 0.42),
    0 0 28px color-mix(in srgb, var(--gold) 16%, transparent);
}

.finish-options {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
  justify-content: center;
}

.finish-swatch {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid color-mix(in srgb, var(--gold) 18%, rgba(255, 255, 255, 0.26));
  border-radius: 999px;
  color: rgba(247, 237, 218, 0.82);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.052) 48%, rgba(255, 255, 255, 0.018)),
    color-mix(in srgb, var(--gold) 7%, rgba(255, 255, 255, 0.025));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    inset 0 -12px 18px rgba(255, 255, 255, 0.04),
    0 8px 22px rgba(0, 0, 0, 0.34);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  backdrop-filter: blur(20px) saturate(1.4);
  cursor: pointer;
  white-space: nowrap;
  transition:
    border-color 620ms cubic-bezier(0.22, 1, 0.36, 1),
    color 620ms cubic-bezier(0.22, 1, 0.36, 1),
    background 620ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 180ms ease;
}

.finish-swatch.is-selected {
  border-color: color-mix(in srgb, var(--gold) 62%, rgba(255, 255, 255, 0.36));
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.07) 48%, rgba(255, 255, 255, 0.026)),
    color-mix(in srgb, var(--gold) 16%, rgba(255, 255, 255, 0.035));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.46),
    inset 0 -14px 22px rgba(255, 255, 255, 0.055),
    0 10px 26px rgba(0, 0, 0, 0.4),
    0 0 26px color-mix(in srgb, var(--gold) 18%, transparent);
}

.finish-swatch:is(:hover, :focus-visible) {
  border-color: color-mix(in srgb, var(--gold) 58%, rgba(255, 255, 255, 0.38));
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.07) 48%, rgba(255, 255, 255, 0.026)),
    color-mix(in srgb, var(--gold) 14%, rgba(255, 255, 255, 0.035));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    inset 0 -14px 22px rgba(255, 255, 255, 0.055),
    0 12px 30px rgba(0, 0, 0, 0.42),
    0 0 28px color-mix(in srgb, var(--gold) 16%, transparent);
}

.finish-swatch:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--gold) 84%, transparent);
  outline-offset: 2px;
}

.swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.38);
  transition:
    background 620ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 620ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.swatch.gold {
  background: linear-gradient(135deg, #fff1a6, #d99622);
}

.swatch.rose {
  background: linear-gradient(135deg, #ffd7cc, #bf6b56);
}

.swatch.silver {
  background: linear-gradient(135deg, #f8fbff, #a9b1bd);
}

.round-button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.round-button.accent {
  border-color: color-mix(in srgb, var(--gold) 72%, rgba(255, 255, 255, 0.38));
  color: var(--gold);
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  border: 0;
  padding: 0;
  touch-action: none;
  background:
    radial-gradient(circle at 72% 28%, color-mix(in srgb, var(--gold) 15%, transparent), transparent 34%),
    rgba(0, 0, 0, 0.54);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 31;
  width: min(100vw, 460px);
  padding: clamp(10px, 2vw, 18px);
  pointer-events: none;
  contain: layout paint;
  transform: translateX(108%);
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-personalize-open .cart-drawer[aria-hidden="true"] {
  visibility: hidden;
}

.cart-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 3vh, 30px);
  overflow: auto;
  overscroll-behavior: contain;
  border: 1px solid color-mix(in srgb, var(--gold) 24%, rgba(255, 255, 255, 0.28));
  border-radius: 28px;
  padding: clamp(20px, 4vw, 30px);
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.055) 35%, rgba(255, 255, 255, 0.018)),
    color-mix(in srgb, var(--gold) 8%, rgba(0, 0, 0, 0.78));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    inset 0 -30px 48px rgba(255, 255, 255, 0.035),
    -28px 0 70px rgba(0, 0, 0, 0.58),
    0 0 42px color-mix(in srgb, var(--gold) 14%, transparent);
  -webkit-backdrop-filter: blur(30px) saturate(1.42);
  backdrop-filter: blur(30px) saturate(1.42);
}

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

body.is-cart-open .cart-drawer {
  pointer-events: auto;
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.cart-header h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 7vw, 3.2rem);
  font-weight: 500;
  line-height: 0.95;
}

.cart-close {
  flex: 0 0 auto;
}

.cart-items {
  display: grid;
  gap: 14px;
}

.cart-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding: 14px;
  border: 1px solid color-mix(in srgb, var(--gold) 18%, rgba(255, 255, 255, 0.14));
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition:
    opacity 280ms ease,
    transform 280ms ease;
}

.cart-item[data-finish-slug="gold"] {
  --gold: #f6ce67;
  --gold-strong: #f1ad28;
}

.cart-item[data-finish-slug="rose"] {
  --gold: #f3b7a2;
  --gold-strong: #d9866b;
}

.cart-item[data-finish-slug="silver"] {
  --gold: #dfe7ef;
  --gold-strong: #aeb9c4;
}

.cart-thumb {
  --cart-thumb-grayscale: 0;
  --cart-thumb-sepia: 0;
  --cart-thumb-hue: 0deg;
  --cart-thumb-saturation: 1.08;
  --cart-thumb-brightness: 1.03;
  --cart-thumb-contrast: 1.04;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.035) 8%, rgba(246, 206, 103, 0.16) 18%, rgba(255, 255, 255, 0.035) 33%),
    radial-gradient(circle at 50% 46%, color-mix(in srgb, var(--gold) 20%, transparent), transparent 58%),
    #000;
  background-size: 220% 100%, auto, auto;
  animation: mediaSkeleton 1.8s ease-in-out infinite;
}

.cart-thumb[data-finish-slug="rose"] {
  --cart-thumb-grayscale: 0;
  --cart-thumb-sepia: 0.28;
  --cart-thumb-hue: -18deg;
  --cart-thumb-saturation: 1.28;
  --cart-thumb-brightness: 1.04;
  --cart-thumb-contrast: 1.04;
}

.cart-thumb[data-finish-slug="silver"] {
  --cart-thumb-grayscale: 0.88;
  --cart-thumb-sepia: 0.08;
  --cart-thumb-hue: 0deg;
  --cart-thumb-saturation: 0.46;
  --cart-thumb-brightness: 1.15;
  --cart-thumb-contrast: 1.06;
}

.cart-thumb.is-media-loaded {
  animation: none;
}

.cart-thumb--photo img {
  filter: none;
}

.cart-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter:
    grayscale(var(--cart-thumb-grayscale))
    sepia(var(--cart-thumb-sepia))
    hue-rotate(var(--cart-thumb-hue))
    saturate(var(--cart-thumb-saturation))
    brightness(var(--cart-thumb-brightness))
    contrast(var(--cart-thumb-contrast));
}

.cart-item-copy {
  min-width: 0;
}

.cart-item-copy h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.05;
}

.cart-item-copy p {
  margin: 0;
  color: rgba(247, 237, 218, 0.68);
  font-size: 0.86rem;
  line-height: 1.5;
}

.cart-remove,
.qty-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--gold) 20%, rgba(255, 255, 255, 0.28));
  color: rgba(247, 237, 218, 0.82);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055) 48%, rgba(255, 255, 255, 0.018)),
    color-mix(in srgb, var(--gold) 7%, rgba(255, 255, 255, 0.025));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -10px 16px rgba(255, 255, 255, 0.04),
    0 8px 22px rgba(0, 0, 0, 0.34);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  backdrop-filter: blur(18px) saturate(1.35);
  cursor: pointer;
  transition:
    border-color 620ms cubic-bezier(0.22, 1, 0.36, 1),
    color 620ms cubic-bezier(0.22, 1, 0.36, 1),
    background 620ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 620ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease,
    transform 180ms ease;
}

.cart-remove::before,
.qty-button::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: inherit;
  background:
    radial-gradient(ellipse at 28% 4%, rgba(255, 255, 255, 0.56), transparent 34%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.16), transparent 46%);
  opacity: 0.72;
  pointer-events: none;
}

.cart-remove > *,
.qty-button > * {
  position: relative;
  z-index: 1;
}

.cart-remove svg,
.qty-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-remove:is(:hover, :focus-visible),
.qty-button:is(:hover, :focus-visible) {
  border-color: color-mix(in srgb, var(--gold) 58%, rgba(255, 255, 255, 0.38));
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    inset 0 -10px 18px rgba(255, 255, 255, 0.055),
    0 10px 26px rgba(0, 0, 0, 0.42),
    0 0 24px color-mix(in srgb, var(--gold) 14%, transparent);
  outline: none;
}

.cart-remove:active,
.qty-button:active {
  transform: scale(0.94);
}

.cart-remove {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

/* Quantity stepper = one cohesive pill: [ − | input | + ] */
.cart-quantity {
  grid-column: 2 / 4;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  height: 42px;
  border: 1px solid color-mix(in srgb, var(--gold) 30%, rgba(255, 255, 255, 0.26));
  border-radius: 999px;
  contain: paint;
  clip-path: inset(0 round 999px);
  background:
    linear-gradient(to right, transparent 41px, color-mix(in srgb, var(--gold) 22%, transparent) 42px, transparent 43px, transparent 92px, color-mix(in srgb, var(--gold) 22%, transparent) 93px, transparent 94px),
    linear-gradient(150deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.cart-quantity .qty-button {
  width: 42px;
  height: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--gold);
  overflow: hidden;
}

.cart-quantity .qty-button::before {
  content: none;
}

.cart-quantity .qty-button:is(:hover, :focus-visible) {
  background: transparent;
  box-shadow: none;
  color: var(--ink);
}

.cart-quantity .qty-button:active {
  transform: none;
  background: color-mix(in srgb, var(--gold) 12%, transparent);
}

.qty-input {
  width: 50px;
  height: 100%;
  text-align: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  -moz-appearance: textfield;
  appearance: textfield;
  transition: background 320ms ease;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.qty-input:focus-visible {
  outline: none;
  background: transparent;
}

.cart-empty {
  display: grid;
  gap: 8px;
  padding: 26px;
  border: 1px solid color-mix(in srgb, var(--gold) 18%, rgba(255, 255, 255, 0.14));
  border-radius: 22px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

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

.cart-item[hidden],
.cart-summary[hidden],
.cart-checkout[hidden],
.cart-add-photo[hidden] {
  display: none;
}

.cart-add-photo {
  margin-top: 10px;
}

.cart-checkout.is-disabled {
  opacity: 0.58;
  cursor: not-allowed;
  filter: grayscale(0.25);
}

.cart-checkout.is-loading {
  cursor: progress;
}

.cart-checkout-note {
  grid-column: 1 / -1;
  padding: 10px 12px;
  border: 1px solid color-mix(in srgb, var(--gold) 22%, rgba(255, 255, 255, 0.14));
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.cart-empty p {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.cart-empty span {
  color: rgba(247, 237, 218, 0.64);
  font-size: 0.92rem;
  line-height: 1.45;
}

.cart-summary {
  display: grid;
  gap: 12px;
  margin-top: clamp(22px, 5vh, 58px);
  padding-top: 18px;
  border-top: 1px solid color-mix(in srgb, var(--gold) 22%, rgba(255, 255, 255, 0.16));
}

.cart-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cart-summary span {
  color: rgba(247, 237, 218, 0.62);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cart-summary strong {
  color: var(--ink);
  font-weight: 700;
  text-align: right;
}

.cart-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  min-width: 0;
}

.cart-checkout {
  min-height: 58px;
  width: 100%;
  justify-self: stretch;
  min-width: 0;
  padding-inline: clamp(14px, 4vw, 24px);
}

.cart-checkout span {
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  text-align: center;
}

.cart-secondary {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--gold) 22%, rgba(255, 255, 255, 0.28));
  border-radius: 18px;
  color: rgba(247, 237, 218, 0.86);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055) 48%, rgba(255, 255, 255, 0.018)),
    color-mix(in srgb, var(--gold) 7%, rgba(255, 255, 255, 0.025));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -14px 22px rgba(255, 255, 255, 0.045),
    0 10px 28px rgba(0, 0, 0, 0.38);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  backdrop-filter: blur(20px) saturate(1.4);
  cursor: pointer;
  font-weight: 800;
  width: 100%;
  justify-self: stretch;
  min-width: 0;
  padding-inline: 16px;
  transition:
    border-color 620ms cubic-bezier(0.22, 1, 0.36, 1),
    color 620ms cubic-bezier(0.22, 1, 0.36, 1),
    background 620ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 180ms ease;
}

.cart-secondary::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: inherit;
  background:
    radial-gradient(ellipse at 18% 0%, rgba(255, 255, 255, 0.58), transparent 32%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.18), transparent 44%);
  opacity: 0.72;
  pointer-events: none;
}

.cart-secondary > * {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.cart-secondary:is(:hover, :focus-visible) {
  border-color: color-mix(in srgb, var(--gold) 58%, rgba(255, 255, 255, 0.38));
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    inset 0 -14px 22px rgba(255, 255, 255, 0.055),
    0 12px 30px rgba(0, 0, 0, 0.42),
    0 0 28px color-mix(in srgb, var(--gold) 16%, transparent);
  outline: none;
}

.cart-secondary:active {
  transform: scale(0.985);
}

@media (min-width: 720px) {
  .cart-drawer {
    width: min(92vw, 560px);
    padding: clamp(16px, 2vw, 24px);
  }

  .cart-panel {
    gap: 22px;
    padding: clamp(28px, 3vw, 36px);
  }

  .cart-header h2 {
    font-size: clamp(2.45rem, 4vw, 3.35rem);
  }

  .cart-item {
    grid-template-columns: 108px minmax(0, 1fr) 42px;
    gap: 18px;
    padding: 18px;
  }

  .cart-item-copy h3 {
    max-width: 18rem;
    font-size: 1.35rem;
  }

  .cart-quantity {
    grid-column: 2 / 3;
    margin-top: 2px;
  }

  .cart-summary {
    margin-top: clamp(20px, 5vh, 58px);
  }

  .cart-actions {
    grid-template-columns: minmax(0, 1fr) minmax(170px, 0.76fr);
    gap: 12px 14px;
    align-items: center;
  }

  .cart-checkout {
    grid-column: 1 / -1;
    min-height: 62px;
  }

  .cart-secondary {
    min-height: 56px;
  }

  .cart-secure {
    justify-content: flex-start;
    margin-top: 0;
    text-align: left;
  }

  .payment-row {
    grid-column: 1 / -1;
    margin-top: 0;
    justify-content: start;
  }
}

@media (max-width: 360px) {
  .hero-shell {
    --edge: 14px;
    --hero-min-h: max(100svh, 740px);
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-copy span {
    font-size: 1rem;
  }

  .brand-copy small {
    letter-spacing: 0.42em;
  }

  .icon-button {
    width: 36px;
    height: 36px;
  }

  .hero-grid {
    grid-template-rows: minmax(clamp(320px, 48svh, 430px), 1fr) auto auto auto;
  }

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

  .product-stage img,
  .product-stage video {
    width: min(122vw, 500px);
    height: clamp(350px, 56svh, 500px);
  }

  .round-button {
    width: 48px;
    height: 48px;
  }
}

@media (min-width: 720px) and (max-width: 979px) {
  .hero-shell {
    --edge: clamp(28px, 5vw, 48px);
    --hero-min-h: max(100svh, 820px);
    --art-center-y: clamp(268px, 38svh, 410px);
  }

  .hero-grid {
    grid-template-rows: minmax(clamp(430px, 56svh, 620px), 1fr) auto auto auto;
  }

  .product-stage img,
  .product-stage video {
    width: min(92vw, 780px);
    height: clamp(520px, 66svh, 700px);
  }

  .product-stage::before {
    width: min(64vw, 560px);
  }

  .luxe-word {
    font-size: min(21vw, 11rem);
  }

  .product-copy h1 {
    max-width: 14ch;
    font-size: clamp(2.7rem, 7.1vw, 4.25rem);
  }

  .hero-actions {
    grid-template-columns: minmax(280px, 0.85fr) minmax(280px, 1fr);
    align-items: start;
  }

  .shop-button {
    align-self: start;
  }

  .finish-options {
    justify-content: flex-end;
  }

}

@media (min-width: 980px) {
  body {
    background: #000;
  }

  .stage {
    padding: 0;
  }

  .hero-shell {
    --edge: clamp(38px, 4.5vw, 76px);
    --hero-min-h: max(100svh, 680px);
    --art-center-y: clamp(325px, 49svh, 535px);
    width: 100%;
    min-height: var(--hero-min-h);
    display: flex;
    flex-direction: column;
    padding: 0 var(--edge) clamp(28px, 3.4vw, 58px);
  }

  .desktop-nav {
    display: inline-flex;
    gap: clamp(42px, 7vw, 84px);
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
  }

  .desktop-nav a[aria-current="page"] {
    color: var(--gold);
  }

  .mobile-tabs {
    display: none;
  }

  .topbar {
    left: var(--edge);
    right: var(--edge);
    height: clamp(60px, 7vh, 84px);
  }

  .hero-grid {
    flex: 1;
    min-height: calc(var(--hero-min-h) - clamp(28px, 3.4vw, 58px));
    grid-template-columns: minmax(220px, 0.72fr) minmax(300px, 1.36fr) minmax(220px, 0.68fr);
    grid-template-rows: minmax(clamp(240px, 38svh, 560px), 1fr) auto auto;
    column-gap: clamp(18px, 2.6vw, 44px);
    row-gap: clamp(8px, 1.6svh, 18px);
    align-content: start;
    align-items: start;
    padding: 0;
  }

  .product-stage {
    grid-column: 1 / 4;
    grid-row: 1 / 4;
    min-height: 0;
    margin: 0 calc(var(--edge) * -1);
    overflow: hidden;
  }

  .product-stage img,
  .product-stage video {
    width: min(72vw, 1160px);
    height: clamp(600px, 84svh, 900px);
    object-fit: cover;
    object-position: center top;
    margin-top: 0;
  }

  .product-stage::before {
    left: 50%;
    translate: -50% -50%;
    width: min(50vw, 780px);
  }

  .luxe-word {
    font-size: clamp(9rem, 24vw, 21rem);
  }

  .slide-count {
    right: 0;
    top: clamp(320px, 48svh, 520px);
  }

  .product-copy {
    grid-column: 1;
    grid-row: 2;
    margin-top: 0;
    align-self: end;
  }

  .product-copy h1 {
    max-width: 13ch;
    font-size: clamp(2.25rem, 3.2vw, 4.6rem);
  }

  .product-description {
    max-width: 25rem;
    font-size: clamp(0.9rem, 1vw, 1rem);
  }

  .feature-row {
    grid-column: 1;
    grid-row: 3;
    margin-bottom: 0;
  }

  .hero-actions {
    grid-column: 1 / 4;
    grid-row: 3;
    grid-template-columns: minmax(220px, 0.72fr) minmax(280px, 430px) minmax(220px, 0.68fr);
    column-gap: clamp(18px, 2.6vw, 44px);
    align-self: start;
  }

  .shop-button {
    grid-column: 2;
  }

  .finish-options {
    grid-column: 3;
    justify-self: end;
    max-width: 100%;
    justify-content: flex-end;
  }

  .shop-button {
    min-height: 68px;
  }
}

@media (min-width: 980px) and (max-height: 820px) {
  .hero-shell {
    --hero-min-h: max(100svh, 620px);
    --art-center-y: clamp(286px, 48svh, 410px);
  }

  .hero-grid {
    grid-template-rows: minmax(clamp(210px, 32svh, 360px), 1fr) auto auto;
  }

  .product-stage img,
  .product-stage video {
    width: min(66vw, 980px);
    height: clamp(520px, 78svh, 760px);
  }

  .product-stage::before {
    width: min(44vw, 620px);
  }

  .luxe-word {
    font-size: clamp(8rem, 21vw, 17rem);
  }

  .product-copy h1 {
    font-size: clamp(2.05rem, 2.85vw, 3.7rem);
  }

  .product-description {
    font-size: 0.9rem;
  }

  .feature {
    min-height: 48px;
    gap: 5px;
  }

  .shop-button {
    min-height: 58px;
  }
}

@media (max-height: 560px) and (max-width: 979px) {
  .hero-shell {
    --hero-min-h: 690px;
    --art-center-y: 232px;
  }

  .hero-grid {
    grid-template-rows: minmax(300px, 1fr) auto auto auto;
  }

  .product-stage img,
  .product-stage video {
    width: min(112vw, 540px);
    height: 430px;
  }

  .product-stage::before {
    width: min(78vw, 390px);
  }
}

.details-section {
  padding: clamp(56px, 9vw, 120px) clamp(20px, 5vw, 88px);
  color: var(--ink);
  background: #000;
}

.details-layout {
  width: min(100%, 1440px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(44px, 7vw, 90px);
  margin-inline: auto;
}

.details-slider-column,
.details-content {
  min-width: 0;
}

.product-image-card-slider {
  display: grid;
  gap: 18px;
  width: min(100%, 760px);
  margin-inline: auto;
}

.slider-shell {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: clamp(8px, 2vw, 18px);
}

.slider-track {
  position: relative;
  min-height: clamp(320px, 78vw, 560px);
  overflow: visible;
  isolation: isolate;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.slider-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(72%, 420px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  translate: -50% -50%;
  border: 1px solid color-mix(in srgb, var(--gold) 62%, rgba(255, 255, 255, 0.2));
  border-radius: clamp(18px, 2.3vw, 26px);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.035) 8%, rgba(246, 206, 103, 0.15) 18%, rgba(255, 255, 255, 0.035) 33%),
    radial-gradient(circle at 50% 38%, color-mix(in srgb, var(--gold) 16%, transparent), transparent 58%),
    #000;
  background-size: 220% 100%, auto, auto;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 18px 56px rgba(0, 0, 0, 0.58),
    0 0 34px color-mix(in srgb, var(--gold) 18%, transparent);
  opacity: 0;
  pointer-events: none;
  transform-origin: center center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, opacity;
  transition:
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 520ms ease-in-out;
  animation: mediaSkeleton 1.8s ease-in-out infinite;
}

.slider-card.is-media-loaded {
  animation: none;
}

.slider-card[data-position="previous"] {
  z-index: 30;
  opacity: 0.82;
  transform: translateX(-34%) translateZ(-90px) rotateY(18deg) rotateZ(-7deg) scale(0.9);
}

.slider-card[data-position="active"] {
  z-index: 50;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) translateZ(80px) rotateY(0deg) rotateZ(0deg) scale(1);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 24px 64px rgba(0, 0, 0, 0.68),
    0 0 44px color-mix(in srgb, var(--gold) 30%, transparent);
}

.slider-card[data-position="next"] {
  z-index: 30;
  opacity: 0.82;
  transform: translateX(34%) translateZ(-90px) rotateY(-18deg) rotateZ(7deg) scale(0.9);
}

.slider-card[data-position="back-previous"] {
  z-index: 10;
  opacity: 0;
  transform: translateX(-58%) translateZ(-220px) rotateY(30deg) rotateZ(-10deg) scale(0.78);
}

.slider-card[data-position="back-next"] {
  z-index: 10;
  opacity: 0;
  transform: translateX(58%) translateZ(-220px) rotateY(-30deg) rotateZ(10deg) scale(0.78);
}

.slider-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
  backface-visibility: hidden;
}

.slider-arrow {
  position: relative;
  isolation: isolate;
  z-index: 60;
  overflow: hidden;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--gold) 34%, rgba(255, 255, 255, 0.28));
  border-radius: 50%;
  color: var(--gold);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055) 48%, rgba(255, 255, 255, 0.018)),
    color-mix(in srgb, var(--gold) 8%, rgba(255, 255, 255, 0.025));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 10px 28px rgba(0, 0, 0, 0.42),
    0 0 22px color-mix(in srgb, var(--gold) 12%, transparent);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  backdrop-filter: blur(18px) saturate(1.35);
  cursor: pointer;
  transition:
    border-color 500ms cubic-bezier(0.22, 1, 0.36, 1),
    color 500ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 500ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 180ms ease;
}

.slider-arrow::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: inherit;
  background:
    radial-gradient(ellipse at 30% 4%, rgba(255, 255, 255, 0.54), transparent 34%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.16), transparent 46%);
  opacity: 0.72;
  pointer-events: none;
}

.slider-arrow svg {
  position: relative;
  z-index: 1;
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.slider-arrow:is(:hover, :focus-visible) {
  border-color: color-mix(in srgb, var(--gold) 66%, rgba(255, 255, 255, 0.38));
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    0 12px 32px rgba(0, 0, 0, 0.48),
    0 0 32px color-mix(in srgb, var(--gold) 20%, transparent);
  outline: none;
}

.slider-arrow:active {
  transform: scale(0.94);
}

.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 0 16px color-mix(in srgb, var(--gold) 18%, transparent);
  cursor: pointer;
  transition:
    background-color 500ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 500ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 180ms ease,
    box-shadow 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.slider-dot.is-active {
  background: var(--gold);
  box-shadow: 0 0 18px color-mix(in srgb, var(--gold) 42%, transparent);
}

.slider-dot:is(:hover, :focus-visible) {
  transform: scale(1.2);
  outline: none;
}

.details-intro h2 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 0.98;
}

.details-intro p:not(.product-kicker),
.care-copy {
  max-width: 720px;
  color: rgba(247, 237, 218, 0.72);
  font-size: clamp(1rem, 2.1vw, 1.22rem);
  line-height: 1.65;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(26px, 5vw, 46px);
}

.how-steps article,
.emotion-grid article {
  min-width: 0;
  border: 1px solid color-mix(in srgb, var(--gold) 24%, rgba(255, 255, 255, 0.12));
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    #050403;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
}

.how-steps article {
  display: grid;
  gap: 10px;
  padding: clamp(18px, 3vw, 24px);
}

.step-pill {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--gold) 55%, rgba(255, 255, 255, 0.2));
  border-radius: 50%;
  color: var(--gold);
  background: color-mix(in srgb, var(--gold) 11%, transparent);
  font-weight: 900;
}

.how-steps h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-main);
  font-size: clamp(1.1rem, 2.1vw, 1.28rem);
  line-height: 1.2;
}

.how-steps p,
.emotion-grid p {
  margin: 0;
  color: rgba(247, 237, 218, 0.7);
  line-height: 1.56;
}

@keyframes mediaSkeleton {
  0% {
    background-position: 180% 0, center, center;
  }

  100% {
    background-position: -60% 0, center, center;
  }
}

.detail-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: clamp(34px, 6vw, 72px) 0;
  border-top: 1px solid rgba(246, 206, 103, 0.22);
  border-bottom: 1px solid rgba(246, 206, 103, 0.22);
  background: rgba(246, 206, 103, 0.18);
}

.detail-grid article {
  min-height: 220px;
  padding: clamp(24px, 3vw, 42px);
  background: rgba(5, 4, 3, 0.9);
}

.detail-grid h3 {
  margin: 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 500;
}

.detail-grid p {
  color: rgba(247, 237, 218, 0.72);
  line-height: 1.6;
}

.spec-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  width: 100%;
}

.spec-list {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(246, 206, 103, 0.2);
}

.spec-list div {
  display: grid;
  grid-template-columns: minmax(110px, 0.42fr) 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(246, 206, 103, 0.16);
}

.spec-list dt {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.spec-list dd {
  margin: 0;
  color: rgba(247, 237, 218, 0.78);
}

@media (max-width: 719px) {
  .hero-shell {
    --aura-tracking: 0.16em;
    --aura-center-fix: 0.08em;
  }

  .luxe-word {
    font-size: clamp(5rem, 30vw, 12rem);
  }

  .detail-grid,
  .spec-layout {
    grid-template-columns: 1fr;
  }

  .detail-grid article {
    min-height: auto;
  }

  .spec-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (min-width: 980px) {
  .details-layout {
    grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
    align-items: center;
  }

  .details-slider-column {
    position: sticky;
    top: clamp(30px, 8vh, 96px);
    align-self: center;
  }

  .product-image-card-slider {
    margin: clamp(18px, 4vh, 42px) auto 0;
  }
}

@media (max-width: 520px) {
  .slider-shell {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 4px;
  }

  .slider-arrow {
    width: 38px;
    height: 38px;
  }

  .slider-track {
    min-height: clamp(300px, 86vw, 430px);
  }

  .slider-card {
    width: min(78%, 320px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .slider-card,
  .cart-thumb {
    animation: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .product-stage img {
    animation: jewelFloat 6s ease-in-out infinite;
  }

  .product-stage::before {
    animation: haloPulse 7s ease-in-out infinite;
  }
}

@keyframes jewelFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes haloPulse {
  0%,
  100% {
    opacity: 0.65;
  }

  50% {
    opacity: 1;
  }
}

/* Final cart footer guard: keep global hero button/grid rules out of the drawer. */
.cart-panel .cart-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  width: 100%;
  min-width: 0;
}

.cart-panel .cart-actions > .shop-button,
.cart-panel .cart-actions > .cart-secondary,
.cart-panel .cart-actions > .cart-secure,
.cart-panel .cart-actions > .payment-row {
  grid-column: 1 / -1;
  width: 100%;
  max-width: none;
  justify-self: stretch;
}

.cart-panel .cart-checkout {
  min-width: 0;
  min-height: 62px;
  padding-inline: clamp(14px, 5vw, 28px);
}

.cart-panel .cart-checkout span {
  width: 100%;
  max-width: 100%;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
}

.cart-panel .cart-secondary {
  min-height: 56px;
}

.cart-panel .cart-secure {
  justify-content: center;
  text-align: center;
  margin-top: 0;
}

.cart-panel .payment-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, 38px);
  justify-content: center;
  margin-top: 0;
}

/* ---- Checklist conversion polish ---- */
.product-reassurance {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px 10px;
  margin: 10px 0 0;
  color: rgba(247, 237, 218, 0.76);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.product-reassurance span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-reassurance span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 10px color-mix(in srgb, var(--gold) 44%, transparent);
}

.brand-payment-row {
  list-style: none;
  grid-column: 1 / -1;
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 42px);
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.brand-payment-row li {
  display: inline-flex;
}

.brand-payment-row svg {
  width: 42px;
  height: 27px;
  border-radius: 5px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16),
    0 8px 22px rgba(0, 0, 0, 0.28);
}

.shop-button:disabled,
.shop-button[disabled] {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 8px 24px rgba(0, 0, 0, 0.32);
}

.final-sale-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 14px;
  border: 1px solid color-mix(in srgb, var(--gold) 28%, rgba(255, 255, 255, 0.16));
  border-radius: 16px;
  background: color-mix(in srgb, var(--gold) 7%, rgba(255, 255, 255, 0.025));
  color: rgba(247, 237, 218, 0.74);
  font-size: 0.84rem;
  line-height: 1.45;
}

.final-sale-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--gold);
}

.customer-choice-section,
.conversion-section,
.launch-section,
.faq-section,
.review-placeholder-section {
  padding: clamp(56px, 9vw, 112px) clamp(20px, 5vw, 88px);
  background: #000;
  color: var(--ink);
}

.story-copy,
.section-heading,
.split-blocks,
.craftsmanship-strip,
.accordion-grid,
.choice-grid,
.launch-card,
.review-placeholder-card,
.site-footer {
  width: min(100%, 1180px);
  margin-inline: auto;
}

.story-copy,
.section-heading {
  display: grid;
  gap: 14px;
}

.story-copy h2,
.section-heading h2 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 6vw, 4.6rem);
  font-weight: 500;
  line-height: 0.98;
}

.story-copy p:not(.product-kicker),
.section-heading p:not(.product-kicker) {
  max-width: 760px;
  margin: 0;
  color: rgba(247, 237, 218, 0.72);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}

.projection-proof-card {
  display: grid;
  gap: 10px;
  margin: clamp(18px, 4vw, 30px) 0 0;
  max-width: 520px;
}

.projection-proof-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid color-mix(in srgb, var(--gold) 34%, rgba(255, 255, 255, 0.16));
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.48),
    0 0 32px color-mix(in srgb, var(--gold) 14%, transparent);
}

.projection-proof-card figcaption {
  color: rgba(247, 237, 218, 0.68);
  font-size: 0.9rem;
  line-height: 1.5;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 18px);
  margin-top: clamp(28px, 5vw, 52px);
}

.choice-grid article {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 100%;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid color-mix(in srgb, var(--gold) 22%, rgba(255, 255, 255, 0.12));
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 0%, color-mix(in srgb, var(--gold) 12%, transparent), transparent 50%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.014));
}

.choice-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid color-mix(in srgb, var(--gold) 44%, rgba(255, 255, 255, 0.16));
  border-radius: 999px;
  background: color-mix(in srgb, var(--gold) 12%, rgba(255, 255, 255, 0.04));
  color: var(--gold);
}

.choice-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.choice-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.22;
}

.choice-grid p {
  margin: 0;
  color: rgba(247, 237, 218, 0.68);
  line-height: 1.55;
}

.emotion-grid {
  width: min(100%, 1180px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: clamp(28px, 5vw, 52px) auto 0;
}

.emotion-grid article {
  display: grid;
  gap: 8px;
  padding: clamp(16px, 2.6vw, 22px);
}

.emotion-grid span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.split-blocks {
  display: grid;
  gap: clamp(24px, 5vw, 46px);
  margin-top: clamp(36px, 7vw, 76px);
}

.split-block {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
}

.split-block--reverse picture {
  order: 2;
}

.split-block picture {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--gold) 32%, rgba(255, 255, 255, 0.14));
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.54),
    0 0 38px color-mix(in srgb, var(--gold) 12%, transparent);
}

.split-block img,
.ugc-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-block h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
}

.split-block p:not(.product-kicker) {
  color: rgba(247, 237, 218, 0.72);
  font-size: clamp(1rem, 1.9vw, 1.12rem);
  line-height: 1.65;
}

.craftsmanship-strip {
  margin-top: clamp(32px, 6vw, 70px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid color-mix(in srgb, var(--gold) 24%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--gold) 24%, transparent);
}

.craftsmanship-strip div {
  display: grid;
  gap: 6px;
  padding: clamp(18px, 3vw, 30px);
  border-right: 1px solid color-mix(in srgb, var(--gold) 18%, transparent);
}

.craftsmanship-strip div:last-child {
  border-right: 0;
}

.craftsmanship-strip strong {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.78rem;
}

.craftsmanship-strip span {
  color: rgba(247, 237, 218, 0.74);
  line-height: 1.45;
}

.accordion-grid {
  display: grid;
  gap: 12px;
  margin-top: clamp(30px, 6vw, 68px);
}

.info-accordion {
  border: 1px solid color-mix(in srgb, var(--gold) 24%, rgba(255, 255, 255, 0.12));
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    #050403;
  overflow: hidden;
}

.info-accordion summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.info-accordion summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
}

.info-accordion[open] summary::after {
  content: "-";
}

.info-accordion p {
  margin: 0;
  padding: 0 22px 20px;
  color: rgba(247, 237, 218, 0.7);
  line-height: 1.65;
}

.launch-section {
  padding-block: clamp(46px, 7vw, 86px);
}

.launch-card,
.review-placeholder-card {
  display: grid;
  gap: 12px;
  border: 1px solid color-mix(in srgb, var(--gold) 24%, rgba(255, 255, 255, 0.12));
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 0%, color-mix(in srgb, var(--gold) 13%, transparent), transparent 54%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.012)),
    #050403;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 54px rgba(0, 0, 0, 0.42);
}

.launch-card {
  max-width: 920px;
  padding: clamp(22px, 4vw, 38px);
}

.launch-card h2,
.review-placeholder-card h2 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 500;
  line-height: 1;
}

.launch-card p:not(.product-kicker),
.review-placeholder-card p:not(.product-kicker) {
  max-width: 780px;
  margin: 0;
  color: rgba(247, 237, 218, 0.72);
  line-height: 1.65;
}

.review-placeholder-section {
  padding-top: 0;
}

.review-placeholder-card {
  max-width: 900px;
  padding: clamp(20px, 4vw, 32px);
}

.ugc-section {
  padding-top: clamp(40px, 7vw, 86px);
}

.ugc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 24px);
  margin-top: clamp(28px, 5vw, 52px);
}

.ugc-card {
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--gold) 24%, rgba(255, 255, 255, 0.12));
  border-radius: 20px;
  background: #050403;
}

.ugc-card img {
  aspect-ratio: 4 / 5;
}

.ugc-card div {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.media-label {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ugc-card p {
  margin: 0;
  color: rgba(247, 237, 218, 0.78);
  line-height: 1.55;
}

.site-footer {
  display: grid;
  gap: 18px;
  padding: 38px clamp(20px, 5vw, 88px) max(38px, env(safe-area-inset-bottom));
  border-top: 1px solid color-mix(in srgb, var(--gold) 18%, rgba(255, 255, 255, 0.12));
  background: #000;
  color: rgba(247, 237, 218, 0.7);
}

.footer-brand {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.site-footer a {
  color: rgba(247, 237, 218, 0.78);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer p {
  max-width: 760px;
  margin: 0;
  color: rgba(247, 237, 218, 0.58);
  line-height: 1.5;
}

.mobile-sticky-cta {
  position: fixed;
  right: max(14px, env(safe-area-inset-right));
  bottom: 0;
  left: max(14px, env(safe-area-inset-left));
  z-index: 32;
  display: none;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
  border: 1px solid color-mix(in srgb, var(--gold) 32%, rgba(255, 255, 255, 0.22));
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(8, 7, 5, 0.9);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
  backdrop-filter: blur(22px) saturate(1.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 48px rgba(0, 0, 0, 0.56),
    0 0 34px color-mix(in srgb, var(--gold) 14%, transparent);
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
  transition: transform 360ms var(--ease-luxe), opacity 260ms ease;
}

.mobile-sticky-cta > div {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.mobile-sticky-cta strong {
  color: var(--ink);
  font-size: 1.02rem;
}

.mobile-sticky-cta span {
  color: rgba(247, 237, 218, 0.68);
  font-size: 0.76rem;
  line-height: 1.25;
}

.mobile-sticky-cta .shop-button {
  min-height: 46px;
  border-radius: 16px;
  font-size: clamp(0.76rem, 2.7vw, 0.86rem);
  letter-spacing: 0.1em;
}

body.is-personalize-open .mobile-sticky-cta,
body.is-cart-open .mobile-sticky-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}

@media (max-width: 719px) {
  body.has-mobile-sticky-cta {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }

  .mobile-sticky-cta {
    display: grid;
  }

  .mobile-sticky-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.is-personalize-open .mobile-sticky-cta,
  body.is-cart-open .mobile-sticky-cta {
    opacity: 0;
    pointer-events: none;
    transform: translateY(120%);
  }

  .slide-count {
    display: none;
  }

  .hero-shell {
    --hero-min-h: max(100svh, 820px);
    --art-center-y: clamp(172px, 27svh, 258px);
  }

  .hero-grid {
    grid-template-rows: minmax(clamp(250px, 34svh, 340px), 1fr) auto auto auto;
    row-gap: 8px;
  }

  .product-stage img,
  .product-stage video {
    width: min(104vw, 470px);
    height: clamp(300px, 42svh, 410px);
    opacity: 0.96;
  }

  .product-stage::before {
    width: min(72vw, 350px);
  }

  .product-copy h1 {
    max-width: 18ch;
    font-size: clamp(1.66rem, 6.35vw, 2.32rem);
    line-height: 1.02;
  }

  .product-description {
    max-width: 34rem;
  }

  .brand-payment-row {
    margin-top: -2px;
  }

  .hero-demo-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 10px;
    margin-top: 12px;
    padding: 8px;
  }

  .how-steps,
  .emotion-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .finish-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    width: 100%;
  }

  .hero-actions .finish-swatch {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    justify-content: center;
    gap: 6px;
    padding: 0 8px;
    font-size: clamp(0.74rem, 3vw, 0.86rem);
    line-height: 1.05;
    white-space: normal;
    text-align: center;
  }

  .hero-actions .swatch {
    width: 12px;
    height: 12px;
  }

  .trust-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .trust-row li {
    justify-content: flex-start;
    text-align: left;
  }

  .split-block,
  .split-block--reverse {
    grid-template-columns: 1fr;
  }

  .split-block--reverse picture {
    order: 0;
  }

  .craftsmanship-strip,
  .ugc-grid {
    grid-template-columns: 1fr;
  }

  .craftsmanship-strip div {
    border-right: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--gold) 18%, transparent);
  }

  .craftsmanship-strip div:last-child {
    border-bottom: 0;
  }
}

@media (min-width: 720px) and (max-width: 979px) {
  .how-steps,
  .emotion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 340px) {
  .mobile-sticky-cta {
    grid-template-columns: minmax(0, 0.68fr) minmax(0, 1fr);
    gap: 8px;
    padding-inline: 8px;
  }

  .mobile-sticky-cta span {
    font-size: 0.7rem;
  }

  .mobile-sticky-cta .shop-button {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }
}

@media (min-width: 980px) {
  .hero-actions .brand-payment-row {
    grid-column: 2;
    justify-content: center;
  }

  .hero-actions .trust-row {
    align-self: center;
  }
}

/* ---- Motion and vertical rhythm polish ---- */
body,
button,
input,
summary {
  font-family: var(--font-main);
}

.brand-copy,
.desktop-nav,
.mobile-tabs a,
.product-copy h1,
.details-intro h2,
.story-copy h2,
.section-heading h2,
.split-block h3,
.personalize-header h2,
.cart-header h2,
.cart-item-copy h3,
.cart-empty p,
.footer-brand {
  font-family: var(--font-main);
}

p,
li,
dd,
.product-description,
.care-copy,
.photo-tip,
.photo-status,
.personalize-note,
.cart-production-note,
.cart-checkout-note,
.how-steps p,
.choice-grid p,
.emotion-grid p,
.split-block p:not(.product-kicker),
.section-heading p:not(.product-kicker),
.story-copy p:not(.product-kicker),
.info-accordion p,
.launch-card p,
.review-placeholder-card p,
.ugc-card p,
.site-footer p,
.cart-item-copy p,
.cart-empty span,
.final-sale-check {
  line-height: 1.56;
}

.product-copy h1,
.details-intro h2,
.story-copy h2,
.section-heading h2,
.split-block h3,
.personalize-header h2,
.cart-header h2 {
  line-height: 1.05;
}

.details-section,
.customer-choice-section,
.conversion-section,
.launch-section,
.faq-section,
.review-placeholder-section {
  padding: var(--section-y) var(--section-x);
}

.details-layout {
  gap: clamp(42px, 7vw, 88px);
}

.story-copy,
.section-heading {
  gap: var(--content-gap);
}

.story-copy p,
.section-heading p,
.details-intro p,
.product-description,
.care-copy {
  margin-block: 0;
}

.details-intro,
.story-copy,
.split-block > div,
.section-heading {
  align-content: start;
}

.split-blocks,
.accordion-grid,
.choice-grid,
.ugc-grid,
.reviews {
  margin-top: var(--section-gap);
}

.split-blocks {
  gap: clamp(36px, 7vw, 72px);
}

.split-block {
  gap: clamp(26px, 5vw, 64px);
}

.split-block > div {
  display: grid;
  gap: var(--content-gap);
}

.split-block p:not(.product-kicker),
.choice-grid p,
.launch-card p,
.review-placeholder-card p,
.ugc-card p,
.info-accordion p,
.site-footer p {
  max-width: 66ch;
}

.info-accordion summary {
  padding: clamp(18px, 3vw, 24px) clamp(18px, 3vw, 26px);
  line-height: 1.35;
}

.info-accordion p {
  padding: 0 clamp(18px, 3vw, 26px) clamp(20px, 3vw, 26px);
}

.ugc-card div {
  padding: clamp(18px, 3vw, 24px);
}

.site-footer {
  padding: clamp(42px, 6vw, 68px) var(--section-x) max(clamp(42px, 6vw, 68px), env(safe-area-inset-bottom));
}

a,
button,
summary,
label,
.shop-button,
.finish-swatch,
.icon-button,
.round-button,
.slider-arrow,
.slider-dot,
.cart-secondary,
.cart-remove,
.qty-button,
.photo-dropzone,
.photo-remove,
.example-photo,
.info-accordion,
.ugc-card,
.split-block picture,
.brand-payment-row svg,
.payment-row svg {
  touch-action: manipulation;
}

.shop-button,
.finish-swatch,
.icon-button,
.round-button,
.slider-arrow,
.slider-dot,
.cart-secondary,
.cart-remove,
.qty-button,
.photo-dropzone,
.photo-remove,
.example-photo,
.brand-payment-row svg,
.payment-row svg,
.site-footer a,
.info-accordion summary {
  transition:
    transform 220ms var(--ease-touch),
    border-color 420ms var(--ease-luxe),
    color 420ms var(--ease-luxe),
    background-color 420ms var(--ease-luxe),
    box-shadow 420ms var(--ease-luxe),
    opacity 260ms ease;
}

.shop-button:is(:hover, :focus-visible),
.cart-secondary:is(:hover, :focus-visible),
.photo-dropzone:is(:hover, :focus-visible),
.info-accordion summary:is(:hover, :focus-visible) {
  transform: translateY(-2px);
}

.finish-swatch:is(:hover, :focus-visible),
.icon-button:is(:hover, :focus-visible),
.round-button:is(:hover, :focus-visible),
.slider-arrow:is(:hover, :focus-visible),
.cart-remove:is(:hover, :focus-visible),
.qty-button:is(:hover, :focus-visible),
.photo-remove:is(:hover, :focus-visible),
.example-photo:is(:hover, :focus-visible),
.brand-payment-row svg:hover,
.payment-row svg:hover {
  transform: translateY(-1px) scale(1.03);
}

.slider-dot:is(:hover, :focus-visible) {
  transform: scale(1.28);
}

.site-footer a:is(:hover, :focus-visible),
.info-accordion summary:is(:hover, :focus-visible) {
  color: var(--gold);
  outline: none;
}

.shop-button:active,
.cart-secondary:active,
.finish-swatch:active,
.icon-button:active,
.round-button:active,
.slider-arrow:active,
.cart-remove:active,
.qty-button:active,
.photo-dropzone:active,
.photo-remove:active,
.example-photo:active {
  transform: translateY(0) scale(0.97);
}

.info-accordion {
  transition:
    border-color 420ms var(--ease-luxe),
    background-color 420ms var(--ease-luxe),
    box-shadow 420ms var(--ease-luxe);
}

.info-accordion[open] {
  border-color: color-mix(in srgb, var(--gold) 42%, rgba(255, 255, 255, 0.18));
  box-shadow: 0 0 28px color-mix(in srgb, var(--gold) 10%, transparent);
}

.info-accordion summary::after {
  transition: transform 260ms var(--ease-touch), color 420ms var(--ease-luxe);
}

.info-accordion[open] summary::after {
  transform: rotate(180deg);
}

.ugc-card,
.split-block picture,
.slider-card {
  transition:
    transform 520ms var(--ease-luxe),
    border-color 420ms var(--ease-luxe),
    box-shadow 520ms var(--ease-luxe);
}

.ugc-card:is(:hover, :focus-within),
.split-block picture:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--gold) 48%, rgba(255, 255, 255, 0.18));
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.6),
    0 0 46px color-mix(in srgb, var(--gold) 17%, transparent);
}

.personalize-panel,
.cart-drawer {
  transition-timing-function: var(--ease-luxe);
}

@media (max-width: 719px) {
  :root {
    --section-y: clamp(52px, 12vw, 72px);
    --section-gap: clamp(26px, 8vw, 40px);
    --content-gap: 14px;
  }

  .details-section,
  .customer-choice-section,
  .conversion-section,
  .launch-section,
  .faq-section,
  .review-placeholder-section {
    padding-inline: clamp(18px, 5vw, 24px);
  }

  .hero-actions {
    gap: 14px;
  }

  .product-copy {
    display: grid;
    gap: 10px;
  }

  .product-description,
  .meta,
  .product-price,
  .product-reassurance {
    margin-top: 0;
  }

  .split-block picture,
  .choice-grid article,
  .launch-card,
  .review-placeholder-card,
  .ugc-card,
  .info-accordion {
    border-radius: 18px;
  }

  .choice-grid,
  .emotion-grid,
  .ugc-grid {
    grid-template-columns: 1fr;
  }

  .personalize-panel,
  .cart-panel {
    padding: clamp(22px, 6vw, 28px);
  }

  .personalize-body,
  .cart-panel,
  .cart-items,
  .cart-actions {
    gap: 16px;
  }

  .lens-preview {
    grid-template-columns: 1fr;
  }

  .lens-preview-art {
    width: min(100%, 210px);
    justify-self: center;
  }

  .lens-preview-copy {
    text-align: center;
  }

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

  .shop-button,
  .finish-swatch,
  .cart-secondary,
  .slider-arrow,
  .icon-button,
  .round-button {
    min-height: 44px;
  }

  .hero-actions {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  #personalize.finish-options {
    display: grid;
    grid-template-columns: 0.85fr 1fr 0.85fr;
    gap: 7px;
    width: min(100%, 330px, calc(100vw - (var(--edge) * 2)));
    max-width: min(100%, 330px, calc(100vw - (var(--edge) * 2)));
    justify-self: start;
    overflow: hidden;
  }

  #personalize .finish-swatch {
    width: 100%;
    min-width: 0;
    min-height: 38px;
    justify-content: center;
    gap: 5px;
    padding: 0 7px;
    font-size: clamp(0.72rem, 2.75vw, 0.82rem);
    line-height: 1.05;
    white-space: normal;
    text-align: center;
  }

  #personalize .swatch {
    width: 11px;
    height: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

/* Price typography cleanup */
.product-price .price-amount,
.cart-line-price,
.personalize-summary strong,
.cart-summary strong,
[data-unit-price],
[data-cart-total],
[data-checkout-total] {
  font-family: var(--font-main);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "kern" 1;
  letter-spacing: 0;
}

.product-price .price-amount,
[data-unit-price] {
  color: var(--ink);
  font-size: clamp(1.28rem, 4.8vw, 1.72rem);
  font-weight: 800;
  line-height: 1.08;
}

.product-price .price-note {
  font-family: var(--font-main);
  font-weight: 700;
}
