/* ═══════════════════════════════════════════════════════════════════════
   AURUM · v96 — god-tier smoothness & mobile refinement layer
   -------------------------------------------------------------------------
   Loaded LAST (after mobile.css). Rules:
     · animation touches only transform / opacity / filter / box-shadow
     · every entrance has a JS-off + reduced-motion safe state
     · html.au-lite (save-data / low-core devices) kills ambient motion
     · html.js-aurum is added by js/aurum.js — nothing hides without JS
   ═══════════════════════════════════════════════════════════════════════ */

:root {
  --au-spring: cubic-bezier(.34, 1.56, .64, 1);   /* overshoot spring   */
  --au-out:    cubic-bezier(.22, 1, .36, 1);     /* expo ease-out       */
  --au-soft:   cubic-bezier(.25, .46, .45, .94); /* gentle standard     */
  --au-gold:   #d4af5a;
  --au-gold-hi: #ffe9bd;
}

/* ── global smoothness guards ─────────────────────────────────────────── */
body { overflow-x: clip; }             /* body-only: keeps sticky header intact on old Safari */

html.js-aurum body { text-rendering: optimizeLegibility; }

html.js-aurum .footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

/* silky image zoom on media hovers (desktop only) */
@media (hover: hover) and (pointer: fine) {
  html.js-aurum .pc-imgwrap img { transition: transform .9s var(--au-out); }
  html.js-aurum .poster img { transition: transform 1.1s var(--au-out); }
  html.js-aurum .cat-card img { transition: transform .9s var(--au-out); }
}

/* ═══ 1 · PAGE TRANSITIONS (synchronous snapshot crossfade, JS-driven) ═══
   js/aurum.js clones the outgoing #view into .au-vt, swaps the live DOM
   synchronously (so app binding keeps working), then crossfades the
   snapshot. Works in every modern browser, not just Chromium. */
.au-vt {
  position: fixed; top: 0; left: 0; right: 0; height: 100%;
  height: 100dvh;
  z-index: 40; /* below sticky header (50) & topbar (60); chrome persists */
  overflow: hidden; pointer-events: none;
  background: var(--cream, #faf6ef);
}

.au-vt-in {
  position: absolute; top: 0; left: 0; width: 100%;
  transform: translate3d(0, var(--au-sy, 0px), 0);
  will-change: transform, opacity, filter;
}
/* the frozen snapshot never replays entrance animations */
.au-vt .au-vt-in,
.au-vt .au-vt-in *,
.au-vt .au-vt-in *::before,
.au-vt .au-vt-in *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}
@media (prefers-reduced-motion: reduce) { .au-vt { display: none; } }

/* ═══ 2 · HERO choreography upgrades ════════════════════════════════════ */
/* word-by-word heading rise */
html.js-aurum .hero h1 .au-w {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 1.08em, 0) rotate(5deg);
  animation: auWord .78s var(--au-out) both;
  animation-delay: calc(.26s + var(--i, 0) * 28ms);
  will-change: transform, opacity;
}
html.js-aurum .hero h1 em.shimmer .au-w,
html.js-aurum .hero h1 em.foil-txt .au-w {
  background: linear-gradient(100deg, #e8c877 10%, #fff3d0 35%, #e8c877 60%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  animation: auWord .78s var(--au-out) both, shimText 6s linear infinite;
  animation-delay: calc(.26s + var(--i, 0) * 28ms), calc(1.2s + var(--i, 0) * 60ms);
}
@keyframes auWord { to { opacity: 1; transform: none; } }

/* warm breathing glow behind the hero stage */
html.js-aurum:not(.au-lite) .hero-stage::before {
  content: '';
  position: absolute; z-index: 0; pointer-events: none;
  width: 62%; aspect-ratio: 1; right: 4%; top: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 90, .30), rgba(212, 175, 90, .08) 55%, transparent 70%);
  filter: blur(24px);
  animation: auGlowPulse 5.2s ease-in-out infinite;
}
html.js-aurum .hero-stage .hs-card { z-index: 1; }
@keyframes auGlowPulse { 0%, 100% { opacity: .55; transform: scale(.96); } 50% { opacity: 1; transform: scale(1.05); } }

/* ambient gold breathing on the hero CTA */
html.js-aurum:not(.au-lite) .hero-cta .btn-gold {
  animation: auCtaGlow 3.2s ease-in-out 1.6s infinite;
}
@keyframes auCtaGlow {
  0%, 100% { box-shadow: 0 8px 22px rgba(61, 14, 21, .24); }
  50%      { box-shadow: 0 12px 36px rgba(212, 175, 90, .55), 0 0 0 1px rgba(247, 230, 180, .35); }
}

/* ═══ 3 · scroll reveal system (.au-rise, IO adds .in) ═════════════════ */
html.js-aurum .au-rise {
  opacity: 0;
  transform: translate3d(0, 30px, 0) scale(.985);
  transition: opacity .7s var(--au-out), transform .8s var(--au-out);
  transition-delay: calc(var(--i, 0) * 52ms);
  will-change: opacity, transform;
}
html.js-aurum .au-rise.in { opacity: 1; transform: none; }

/* section-head gold underline draws only when scrolled into view */
html.js-aurum .sec-head h2::after {
  animation: none;
  transform: translateX(-50%) scaleX(0);
}
html.js-aurum .sec-head.rv.in h2::after,
html.js-aurum .sec-head.au-hl h2::after {
  animation: auLineDraw .85s var(--au-out) .15s both;
}
@keyframes auLineDraw {
  from { transform: translateX(-50%) scaleX(0); }
  to   { transform: translateX(-50%) scaleX(1); }
}

/* ═══ 4 · product / category card richness (fine pointers) ═════════════ */
@media (hover: hover) and (pointer: fine) {
  /* pointer-tracked light across the product image */
  html.js-aurum .p-card .pc-imgwrap::after {
    content: '';
    position: absolute; inset: 0; z-index: 3; pointer-events: none;
    opacity: 0; transition: opacity .35s var(--au-soft);
    background: radial-gradient(380px circle at var(--mx, 50%) var(--my, 20%),
      rgba(255, 240, 200, .30), rgba(212, 175, 90, .08) 45%, transparent 68%);
  }
  html.js-aurum .p-card:hover .pc-imgwrap::after { opacity: 1; }

  /* travelling gold border trace (only where CSS mask compositing works) */
  @supports ((mask-composite: exclude) or (-webkit-mask-composite: xor)) {
    html.js-aurum .p-card::after {
      content: '';
      position: absolute; inset: 0; z-index: 6; pointer-events: none;
      border-radius: inherit; padding: 1.6px;
      background: conic-gradient(from var(--au-ang, 0deg),
        transparent 0 68%, rgba(247, 230, 180, .95) 82%,
        rgba(212, 175, 90, .9) 86%, transparent 100%);
      -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
              mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
      -webkit-mask-composite: xor; mask-composite: exclude;
      opacity: 0; transition: opacity .3s var(--au-soft);
    }
    html.js-aurum .p-card:hover::after { opacity: 1; animation: auAng 2.6s linear infinite; }
  }

  /* silkier quick-view bar */
  html.js-aurum .pc-quick { transition: transform .42s var(--au-spring), opacity .3s; }
}
@property --au-ang { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes auAng { to { --au-ang: 360deg; } }

/* wishlist heart spring + compare pop */
html.js-aurum .pc-wish.on svg { animation: auHeartPop .5s var(--au-spring); }
html.js-aurum .pc-compare.on svg { animation: auHeartPop .5s var(--au-spring); }
@keyframes auHeartPop {
  0% { transform: scale(.6); } 45% { transform: scale(1.35); } 70% { transform: scale(.92); } 100% { transform: scale(1); }
}

/* ═══ 5 · buttons ═══════════════════════════════════════════════════════ */
html.js-aurum .btn {
  transition: transform .35s var(--au-spring), box-shadow .3s var(--au-soft),
              background .3s, color .3s, border-color .3s, filter .3s, opacity .3s;
}
html.js-aurum:not(.au-lite) .mc-drawer.open .mc-foot .btn-gold,
html.js-aurum:not(.au-lite) .mcta-bar .btn-primary {
  animation: auCtaGlow 3s ease-in-out 1s infinite;
}
/* generic micro-ripple for small controls */
.au-rip-host { position: relative; overflow: hidden; }
.au-rip {
  position: absolute; z-index: 5; border-radius: 50%; pointer-events: none;
  width: 10px; height: 10px;
  background: radial-gradient(circle, rgba(212, 175, 90, .5), rgba(212, 175, 90, .12) 55%, transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  animation: auRip .6s var(--au-soft) forwards;
}
@keyframes auRip { to { transform: translate(-50%, -50%) scale(26); opacity: 0; } }

/* cursor glow swells over interactive elements (desktop) */
.cursor-glow { transition: width .3s var(--au-soft), height .3s var(--au-soft), opacity .3s; }
body.cursor-hot .cursor-glow.on { width: 460px; height: 460px; }

/* ═══ 6 · bottom mobile nav — sliding indicator + smart autohide ═══════ */
.mnav { transition: transform .42s var(--au-out); }
.mnav-ind {
  position: absolute; top: 5px;
  bottom: calc(5px + env(safe-area-inset-bottom, 0px));
  width: var(--au-iw, 56px);
  transform: translateX(var(--au-ix, 0));
  border-radius: 16px; pointer-events: none; z-index: 0;
  background: linear-gradient(180deg, rgba(212, 175, 90, .22), rgba(212, 175, 90, .05));
  border: 1px solid rgba(212, 175, 90, .32);
  box-shadow: inset 0 1px 0 rgba(255, 240, 200, .28), 0 6px 16px rgba(0, 0, 0, .35);
  opacity: 0;
  transition: transform .5s var(--au-spring), width .5s var(--au-spring), opacity .35s;
}
.mnav.has-ind .mnav-ind { opacity: 1; }
.mnav a { z-index: 1; }
.mnav a:active svg { transform: scale(1.28) translateY(-2px); }
.mnav a.au-tab svg { animation: auTabPop .48s var(--au-spring); }
@keyframes auTabPop {
  0% { transform: scale(.65) translateY(4px); }
  55% { transform: scale(1.32) translateY(-3px); }
  100% { transform: none; }
}
body.nav-hide .mnav { transform: translate3d(0, calc(100% + 10px), 0); }
@media (min-width: 769px) { body.nav-hide .mnav { transform: none; } }

/* ═══ 7 · scroll progress + back-to-top ════════════════════════════════ */
html.js-aurum #scrollProg {
  background: linear-gradient(90deg, #8a6a24, #d4af5a, #ffe9bd, #d4af5a);
  background-size: 200% 100%;
  animation: auProg 2.4s linear infinite;
}
@keyframes auProg { to { background-position: -200% 0; } }

html.js-aurum #backTop {
  border-color: transparent;
  background:
    radial-gradient(circle at center, var(--maroon-deep, #3d0e15) 56%, transparent 66%),
    conic-gradient(var(--au-gold-hi) calc(var(--au-p, 0) * 1turn),
      rgba(212, 175, 90, .22) 0);
  transition: opacity .3s var(--au-soft), transform .45s var(--au-spring);
}
html.js-aurum #backTop.show { transform: none; }

/* ═══ 8 · toasts — countdown bar + swipe affordance ════════════════════ */
.toast-wrap .toast {
  touch-action: pan-y;
  transition: opacity .32s var(--au-soft), transform .38s var(--au-spring), box-shadow .3s;
}
.au-tbar {
  position: absolute; left: 0; bottom: 0; height: 3px; width: 100%;
  transform-origin: left; transform: scaleX(1);
  background: linear-gradient(90deg, var(--gold, #b98a2f), var(--au-gold-hi));
  animation: auTBar 3.2s linear forwards;
  border-radius: 0 0 14px 14px;
}
.toast.ok .au-tbar  { background: linear-gradient(90deg, #15a05a, #5ee09a); }
.toast.err .au-tbar { background: linear-gradient(90deg, #c6283e, #ff8fa0); }
@keyframes auTBar { to { transform: scaleX(0); } }

/* ═══ 9 · drawer / sheet / cart polish ═════════════════════════════════ */
/* main drawer rows spring in, staggered (JS tags [data-au-nav] with --i) */
html.js-aurum .nav.open [data-au-nav] {
  animation: auNavRow .52s var(--au-spring) both;
  animation-delay: calc(.07s + var(--i, 0) * 38ms);
}
@keyframes auNavRow {
  from { opacity: 0; transform: translate3d(34px, 0, 0); }
  to   { opacity: 1; transform: none; }
}

/* mini-cart shipping meter */
html.js-aurum .mc-ship-bar i { transition: width .8s var(--au-out); }
html.js-aurum .mc-ship.is-full .mc-ship-bar i {
  background: linear-gradient(90deg, #15a05a, #54d88f) !important;
  box-shadow: 0 0 14px rgba(29, 185, 110, .55);
}
html.js-aurum .mc-ship.is-full small { color: #128c4e; }
html.js-aurum .mc-ship.is-full small b { animation: auHeartPop .6s var(--au-spring); display: inline-block; }

/* drag state for bottom sheets */
.modal.au-drag, .filters.au-drag, #cartDrawer.au-drag {
  transition: none !important;
}
.modal-au-snap { transition: transform .5s var(--au-spring) !important; }

/* scrims dim while a sheet is dragged down (var set by JS) */
.modal-overlay.open {
  background: rgba(29, 5, 9, calc(.62 * var(--au-o, 1)));
}
.mc-scrim.open {
  background: rgba(24, 6, 10, calc(.55 * var(--au-o, 1)));
}

/* touch routing for sheet gestures: grab zones own the touch axis */
.fsheet-bar { touch-action: none; user-select: none; -webkit-user-select: none; }
#cartDrawer { touch-action: pan-y; }
/* keep native pinch-zoom; only vertical single-finger swipes are ours */
#mLightbox.open img { touch-action: pan-x pinch-zoom; }
.au-grab {
  position: absolute; top: 0; left: 0; right: 0; height: 30px;
  z-index: 4; cursor: grab; touch-action: none;
}
.au-grab:active { cursor: grabbing; }
.modal-close { position: relative; z-index: 6; }
@media (min-width: 769px) { .au-grab { display: none; } }

/* scroll containment inside overlays (no chain-bounce on iOS) */
.modal, .mc-drawer, .filters { overscroll-behavior: contain; }
.modal { -webkit-overflow-scrolling: touch; }

/* PDP / checkout sticky buy bars slide in on mount */
html.js-aurum body.pdp-on #pdpBuybar { animation: auBarIn .55s var(--au-spring) both; }
@keyframes auBarIn { from { transform: translate3d(0, 110%, 0); } to { transform: none; } }

/* ═══ 10 · forms — sliders, checks, payment cards ══════════════════════ */
html.js-aurum input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 24px; background: transparent; cursor: pointer;
}
html.js-aurum input[type="range"]::-webkit-slider-runnable-track {
  height: 5px; border-radius: 99px;
  background: linear-gradient(90deg, var(--au-gold) var(--fill, 100%),
    rgba(185, 138, 47, .18) var(--fill, 100%));
}
html.js-aurum input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 19px; height: 19px; margin-top: -7px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff6da, var(--au-gold) 70%);
  border: 1px solid #8a6a24;
  box-shadow: 0 2px 8px rgba(61, 14, 21, .35);
  transition: transform .2s var(--au-spring);
}
html.js-aurum input[type="range"]:active::-webkit-slider-thumb { transform: scale(1.25); }
html.js-aurum input[type="range"]::-moz-range-track {
  height: 5px; border-radius: 99px; background: rgba(185, 138, 47, .2);
}
html.js-aurum input[type="range"]::-moz-range-progress {
  height: 5px; border-radius: 99px; background: var(--au-gold);
}
html.js-aurum input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff6da, var(--au-gold) 70%);
  border: 1px solid #8a6a24;
}
/* selected payment / radio cards settle with a spring + glow */
html.js-aurum .pay-opt:has(input:checked) {
  border-color: var(--gold, #b98a2f);
  background: var(--gold-faint, rgba(185, 138, 47, .08));
  box-shadow: 0 10px 26px rgba(139, 100, 24, .14);
  transform: translateY(-2px);
}
html.js-aurum .finq-opt input:checked ~ i { animation: auCheckPop .5s var(--au-spring); }
@keyframes auCheckPop {
  0% { transform: scale(.5) rotate(-12deg); } 50% { transform: scale(1.3) rotate(6deg); } 100% { transform: scale(1); }
}

/* ═══ 11 · loading & empty states ══════════════════════════════════════ */
html.js-aurum .loading-spin {
  position: relative;
  border-color: rgba(185, 138, 47, .16) !important;
  border-top-color: var(--gold, #b98a2f) !important;
  border-right-color: var(--au-gold) !important;
}
html.js-aurum .loading-spin::after {
  content: ''; position: absolute; inset: 7px; border-radius: 50%;
  border: 2px dashed rgba(185, 138, 47, .4);
  border-top-color: transparent; border-left-color: transparent;
  animation: auSpin 2.6s linear infinite reverse;
}
@keyframes auSpin { to { transform: rotate(360deg); } }

html.js-aurum:not(.au-lite) .empty .big,
html.js-aurum:not(.au-lite) .mc-empty-ic {
  animation: auFloatY 3.4s ease-in-out infinite;
}
@keyframes auFloatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ═══ 12 · parallax media (desktop, JS-scoped) ═════════════════════════ */
html.js-aurum .au-px {
  transform: scale(1.14) translate3d(0, var(--au-py, 0px), 0) !important;
  transition: transform .14s ease-out;
  will-change: transform;
}

/* ═══ 13 · particles & confetti ════════════════════════════════════════ */
.au-p {
  position: fixed; z-index: 4000; pointer-events: none; line-height: 1;
  font-size: var(--au-s, 12px); color: var(--au-gold);
  text-shadow: 0 0 8px rgba(212, 175, 90, .7);
  will-change: transform, opacity;
}
.au-confetti {
  position: fixed; top: -16px; z-index: 4001; pointer-events: none;
  width: 8px; height: 13px; border-radius: 2px;
  will-change: transform; opacity: .96;
}

/* ═══ 14 · order success seal ══════════════════════════════════════════ */
html.js-aurum #view .order-logo {
  animation: auSealIn .95s var(--au-spring) both;
}
@keyframes auSealIn {
  0% { opacity: 0; transform: scale(.3) rotate(-14deg); }
  60% { opacity: 1; transform: scale(1.1) rotate(4deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

/* ═══ 15 · footer + misc ambient shine ═════════════════════════════════ */
html.js-aurum:not(.au-lite) .f-wordmark {
  background: linear-gradient(100deg, #5e4620 0%, #b98a2f 28%, #ffe9bd 50%, #b98a2f 72%, #5e4620 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  animation: auShine 7.5s linear infinite;
}
@keyframes auShine { to { background-position: -200% 0; } }

html.js-aurum .see-all { transition: letter-spacing .3s var(--au-soft), color .3s; }
html.js-aurum .see-all:hover { letter-spacing: .04em; }

/* badge bump (wishlist / compare counts) */
@keyframes auBump {
  0% { transform: scale(1); } 40% { transform: scale(1.45); } 70% { transform: scale(.85); } 100% { transform: scale(1); }
}
.au-bump { animation: auBump .5s var(--au-spring); }

/* count-up numbers stay tabular */
html.js-aurum .au-num { font-variant-numeric: tabular-nums; }

/* ═══ 16 · gallery (PDP) touch affordances ═════════════════════════════ */
html.js-aurum .gal-wrap { cursor: grab; touch-action: pan-y; }
html.js-aurum .gal-wrap:active { cursor: grabbing; }
html.js-aurum .gal-track { will-change: transform; }

/* ═══════════════════════════════════════════════════════════════════════
   MOBILE BAND (≤768px) — snappier, safer thumbs, safe-area aware
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  html.js-aurum * { -webkit-tap-highlight-color: transparent; }

  /* shorter, tighter reveals on phones */
  html.js-aurum .au-rise {
    transform: translate3d(0, 22px, 0);
    transition-duration: .55s, .6s;
    transition-delay: calc(var(--i, 0) * 28ms);
  }
  html.js-aurum .hero h1 .au-w {
    animation-duration: .62s;
    animation-delay: calc(.18s + var(--i, 0) * 20ms);
  }
  html.js-aurum .hero h1 em.shimmer .au-w,
  html.js-aurum .hero h1 em.foil-txt .au-w {
    animation-duration: .62s, 6s;
    animation-delay: calc(.18s + var(--i, 0) * 20ms), calc(.9s + var(--i, 0) * 50ms);
  }

  /* 42px+ touch targets for rail / gallery / sheet controls */
  .c-arrow, .cb-arrow, .gal-nav { width: 42px; height: 42px; }
  .cb-arrow { width: 42px; height: 42px; }
  .fsheet-bar button { min-width: 42px; min-height: 42px; }
  .m-lightbox-x { width: 44px; height: 44px; }

  /* back-to-top clears the bottom nav + safe area */
  #backTop { bottom: calc(86px + env(safe-area-inset-bottom, 0px)); right: 14px; }

  /* toasts clear notch edges in landscape */
  .toast-wrap {
    left: max(12px, env(safe-area-inset-left, 0px));
    right: max(12px, env(safe-area-inset-right, 0px));
  }

  /* press feedback on extra card types */
  .cat-mini-card:active, .tv-card:active, .cert-card:active, .fine-card:active { transform: scale(.97); }

  /* fatter grab handle while sheets are open */
  .modal-overlay.open .modal::before {
    width: 46px; height: 5px; top: 8px;
    background: rgba(185, 138, 47, .55);
  }
  .modal.au-drag::before { width: 58px; background: var(--gold, #b98a2f); }
  /* (v99 already gives sheets their dvh heights — not duplicated here) */

  /* kill double-tap zoom / callouts on tappables */
  .mnav a, .cb-arrow, .c-arrow, .gal-nav, .pc-wish, .pc-compare, .pc-quick,
  .icon-btn, .chip, .size-pill, .btn, .cat-pill, .fsheet-bar {
    touch-action: manipulation;
    -webkit-touch-callout: none;
  }
  /* gallery & sheets reclaim the pan axis they need */
  .gal-wrap { touch-action: pan-y; }
  .fsheet-bar, .au-grab { touch-action: none; }

  /* WhatsApp fab clears landscape notches */
  body[data-page="product"] .wa-fab { left: max(16px, env(safe-area-inset-left, 0px)); }
}

/* small phones */
@media (max-width: 380px) {
  html.js-aurum .hero h1 .au-w { animation-delay: calc(.14s + var(--i, 0) * 15ms); }
  html.js-aurum .hero h1 em.shimmer .au-w,
  html.js-aurum .hero h1 em.foil-txt .au-w {
    animation-delay: calc(.14s + var(--i, 0) * 15ms), calc(.8s + var(--i, 0) * 40ms);
  }
  html.js-aurum .au-rise { transition-delay: calc(var(--i, 0) * 18ms); }
}

/* short landscape phones: back-to-top hugs the edge */
@media (max-height: 500px) and (pointer: coarse) {
  #backTop { bottom: 18px; }
}

/* ═══ low-power devices (save-data / ≤4 cores / ≤2GB) ══════════════════ */
html.au-lite .hero-stage::before,
html.au-lite .hero-cta .btn-gold,
html.au-lite .mc-drawer.open .mc-foot .btn-gold,
html.au-lite .mcta-bar .btn-primary,
html.au-lite .f-wordmark,
html.au-lite .empty .big,
html.au-lite .mc-empty-ic,
html.au-lite .hs-main, html.au-lite .hs-a, html.au-lite .hs-b, html.au-lite .hs-badge,
html.au-lite .wa-fab::before,
html.au-lite .loading-spin::after,
html.au-lite .p-card::after { animation: none !important; }
html.au-lite .au-px { transform: none !important; }
html.au-lite .footer { content-visibility: visible; }

/* ═══ reduced motion — total safety net ════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html.js-aurum *,
  html.js-aurum *::before,
  html.js-aurum *::after {
    animation-duration: .001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001s !important;
    scroll-behavior: auto !important;
  }
  html.js-aurum .au-rise { opacity: 1 !important; transform: none !important; }
  html.js-aurum .hero h1 .au-w { opacity: 1 !important; transform: none !important; }
  html.js-aurum .sec-head h2::after { transform: translateX(-50%) scaleX(1) !important; animation: none !important; }
  html.js-aurum .p-card::after,
  html.js-aurum .p-card .pc-imgwrap::after,
  html.js-aurum .hero-stage::before,
  html.js-aurum .au-p,
  html.js-aurum .au-confetti,
  html.js-aurum .au-tbar { display: none !important; }
  html.js-aurum .au-px { transform: none !important; }
  html.js-aurum body { scroll-behavior: auto; }
}

/* ═══════════════════════════════════════════════════════════════════════
   v101 · COMPONENT EDITION — watermark · quick view · search · footer ·
   design-selection slider · dead-stock metals · sizer · B2B cards · trust
   Mobile-first. Scoped names override styles/motion/mobile by load order.
   ═══════════════════════════════════════════════════════════════════════ */

/* ── 1 · page-hero gold-foil watermark (replaces the white logo card) ──── */
.ph-mark {
  position: absolute; z-index: 0; pointer-events: none;
  right: -3%; top: 50%; transform: translateY(-50%) rotate(-6deg);
  height: min(64%, 230px); aspect-ratio: 1900 / 880;
  background: linear-gradient(125deg, #f3d98f 0%, #d8b45e 48%, #b68a35 100%);
  -webkit-mask: url(/images/logo.png) center / contain no-repeat;
          mask: url(/images/logo.png) center / contain no-repeat;
  opacity: .09; filter: none; border-radius: 0;
}
.page-hero > .container, .page-hero > .ph-trust { position: relative; z-index: 2; }
@media (max-width: 680px) {
  .ph-mark {
    height: auto; width: min(76vw, 300px);
    top: auto; bottom: -16%; right: -12%;
    opacity: .075; transform: rotate(-9deg);
  }
}

/* ── 2 · QUICK VIEW — true bottom sheet: media, scroll body, sticky CTA ── */
.qv-modal .modal {
  padding: 0 !important; overflow: hidden;
  display: flex; flex-direction: column;
  max-width: 880px; max-height: min(86vh, 680px);
}
.qv-modal .modal::before { display: none; }   /* desktop: no grab handle */
.qv { display: grid; grid-template-columns: 1.02fr .98fr; min-height: 0; flex: 1; min-height: 480px; }
.qv-media {
  position: relative; background: var(--cream-2, #f4ecdd);
  min-height: 0; overflow: hidden;
}
.qv-media .qv-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.qv-photo.qv-swap { animation: qvPhotoIn .38s var(--au-out) both; }
@keyframes qvPhotoIn { from { opacity: .25; transform: scale(1.045); } to { opacity: 1; transform: none; } }
.qv-body { display: flex; flex-direction: column; min-height: 0; min-width: 0; background: var(--white, #fff); }
.qv-scroll { padding: 26px 26px 12px; overflow-y: auto; flex: 1 1 auto; min-height: 0; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; }
.qv-scroll h3 { font-family: var(--ff-disp); font-size: 24px; color: var(--maroon-deep); line-height: 1.2; }
.qv-foot {
  display: flex; gap: 10px; align-items: center;
  padding: 12px 26px 16px; border-top: 1px solid var(--line, #ead9c0);
  background: var(--white, #fff);
}
.qv-foot .qv-detail { flex: 0 0 auto; min-width: 132px; }
.qv-foot .qv-add { flex: 1 1 auto; }
.qv-qty { margin: 14px 0 2px; }
.qv-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255, 252, 244, .92); color: var(--maroon-deep);
  font-size: 24px; line-height: 1; display: grid; place-items: center;
  box-shadow: 0 6px 18px rgba(61, 14, 21, .28); z-index: 4;
  transition: transform .2s var(--au-spring), background .2s;
}
.qv-nav:active { transform: translateY(-50%) scale(.9); }
.qv-prev { left: 12px; } .qv-next { right: 12px; }
.qv-dots { position: absolute; left: 0; right: 0; bottom: 12px; display: flex; gap: 6px; justify-content: center; z-index: 4; }
.qv-dot { width: 7px; height: 7px; border-radius: 50%; border: 0; padding: 0; background: rgba(255, 255, 255, .6); cursor: pointer; transition: all .25s; }
.qv-dot.on { width: 20px; border-radius: 4px; background: #fff; }
.qv-wish { position: absolute; z-index: 5; top: 14px; left: 14px; right: auto; width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255, 252, 244, .92); display: grid; place-items: center; box-shadow: 0 6px 18px rgba(61,14,21,.22); }
.qv-wish svg { width: 21px; height: 21px; }
@media (max-width: 680px) {
  .qv-modal .modal {
    width: 100%; max-width: 100%; border-radius: 22px 22px 0 0;
    max-height: 94dvh; padding: 0 !important;
  }
  .qv-modal .modal::before {
    content: ''; display: block; position: absolute; z-index: 9;
    top: 8px; left: 50%; transform: translateX(-50%);
    width: 44px; height: 4px; border-radius: 4px; background: rgba(255, 255, 255, .92);
    margin: 0; box-shadow: 0 1px 4px rgba(0,0,0,.3);
  }
  .qv { grid-template-columns: 1fr; grid-template-rows: auto minmax(0, 1fr); flex: 1; min-height: 0; max-height: 94dvh; }
  .qv-media { flex: 0 0 auto; height: 36dvh; min-height: 210px; max-height: 320px; }
  .qv-body { flex: 1 1 auto; min-height: 0; }
  .qv-scroll { padding: 18px 18px 10px; }
  .qv-scroll h3 { font-size: 21px; }
  .qv-foot {
    position: sticky; bottom: 0; z-index: 6;
    padding: 10px 16px calc(12px + env(safe-area-inset-bottom));
    box-shadow: 0 -8px 22px rgba(61, 14, 21, .10);
  }
  .qv-foot .qv-detail { min-width: 116px; padding-inline: 10px; }
  .qv-wish { top: calc(10px + env(safe-area-inset-top)); }
}
/* press-and-hold steppers give tactile feedback */
.hold-btn { touch-action: manipulation; user-select: none; -webkit-user-select: none; -webkit-tap-highlight-color: transparent; }
.hold-btn:active { transform: scale(.92); }

/* ── 3 · SEARCH — full-screen command palette ──────────────────────────── */
#searchDrawer {
  position: fixed; inset: 0; top: 0; z-index: 120;
  visibility: hidden; opacity: 0; pointer-events: none;
  transform: none; transition: opacity .28s var(--au-out), visibility .28s;
  background: transparent; max-height: none; border-bottom: 0; box-shadow: none;
  overflow: hidden;
}
#searchDrawer.open { visibility: visible; opacity: 1; pointer-events: auto; transform: none; }
.search-scrim {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: 0; padding: 0; background: rgba(26, 8, 12, .58);
  backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px); cursor: none;
}
.search-panel {
  position: relative; margin: 0 auto; max-width: 760px;
  background: var(--white, #fff);
  max-height: 86dvh; display: flex; flex-direction: column;
  box-shadow: 0 30px 80px rgba(20, 5, 8, .42);
  transform: translateY(-16px) scale(.99); transform-origin: top center;
  transition: transform .38s var(--au-spring);
  border-radius: 0 0 24px 24px; overflow: hidden;
}
#searchDrawer.open .search-panel { transform: none; }
.search-panel .search-in {
  display: flex; align-items: center; gap: 12px;
  padding: calc(10px + env(safe-area-inset-top)) 18px 12px;
  border-bottom: 1px solid var(--line, #ead9c0);
  background: linear-gradient(180deg, var(--cream, #faf6ef), var(--white, #fff));
}
.search-panel .s-ico { width: 24px; height: 24px; flex: 0 0 auto; color: var(--gold, #b98a2f); }
#searchInput {
  flex: 1; min-width: 0; border: 0; background: transparent; outline: none;
  font-size: 17px; font-family: var(--ff-disp, Georgia, serif); color: var(--maroon-deep);
  padding: 10px 0; letter-spacing: .01em;
}
#searchInput::-webkit-search-cancel-button { -webkit-appearance: none; }
.s-close {
  flex: 0 0 auto; min-height: 40px; padding: 8px 16px;
  font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--maroon-deep); background: var(--gold-faint, rgba(185,138,47,.1));
  border: 1px solid var(--line, #ead9c0); border-radius: 999px;
}
.search-panel .search-sugg {
  display: none; flex-direction: column; gap: 2px;
  overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
  padding: 10px 12px; max-height: none; flex: 1 1 auto; min-height: 0;
  grid-template-columns: none;
}
.search-panel .search-sugg.open { display: flex; }
.search-panel .sugg {
  padding: 10px 12px; border-radius: 14px; border: 1px solid transparent;
  text-decoration: none; color: inherit; min-height: 48px;
}
.search-panel .sugg.sel, .search-panel .sugg:hover {
  border-color: rgba(185, 138, 47, .55); background: var(--gold-faint, rgba(185,138,47,.1));
}
.search-panel .sugg img { width: 50px; height: 50px; border-radius: 11px; object-fit: cover; }
.sugg-lbl { padding: 12px 12px 6px; }
.sugg-chip { border-radius: 999px !important; }
.sugg-cat img { background: var(--cream-2, #f4ecdd); }
.search-khint {
  display: flex; gap: 14px; flex-wrap: wrap;
  padding: 10px 18px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line, #ead9c0);
  font-size: 11px; color: var(--ink-3, #8a7d6c);
  background: var(--cream, #faf6ef);
}
.search-khint kbd {
  font-family: inherit; font-size: 10px; border: 1px solid var(--line, #ead9c0);
  border-radius: 6px; padding: 2px 6px; background: #fff; margin-right: 3px;
}
@media (min-width: 721px) {
  #searchDrawer { padding-top: 0; }
  .search-panel { margin-top: 84px; border-radius: 22px; max-height: min(72vh, 640px); }
  .search-panel .search-in { padding: 14px 20px; }
}
@media (max-width: 680px) {
  .search-khint span:last-child, .search-khint span:nth-child(2) { display: none; }
}

/* ── 4 · FOOTER v101 ──────────────────────────────────────────────────── */
.footer.fv101 {
  background: radial-gradient(1200px 520px at 50% -12%, #5c1822 0%, #3a1018 46%, #260b11 100%);
  color: #e9d5a8; padding: 0; position: relative; overflow: hidden;
}
.fv-grain { position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'%3E%3Cpath d='M32 26l6 6-6 6-6-6z' fill='%23d4af5a' fill-opacity='.045'/%3E%3C/svg%3E"); }
.fv-in { position: relative; padding-top: 46px; padding-bottom: 0; }
.fv-top { display: grid; grid-template-columns: 1.25fr .9fr; gap: 40px; align-items: start; }
.fv-mark img { height: 58px; width: auto; background: var(--cream, #faf6ef); border-radius: 13px; padding: 9px 18px; box-shadow: 0 12px 34px rgba(0,0,0,.35); }
.fv-name { font-family: var(--ff-disp, Georgia, serif); font-size: 27px; color: #fdf3dd; margin: 16px 0 2px; letter-spacing: .01em; }
.fv-name em { font-style: italic; color: var(--gold-2, #f3dfae); }
.fv-legalname { font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: rgba(233, 213, 168, .62); }
.fv-tagline { margin: 14px 0 0; max-width: 420px; font-size: 13.5px; line-height: 1.75; color: rgba(233, 213, 168, .72); font-weight: 300; }
.fv-social { display: flex; gap: 10px; margin-top: 18px; }
.fv-social a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(212, 175, 90, .4); display: grid; place-items: center;
  color: #f3dfae; background: rgba(212, 175, 90, .06);
  transition: transform .3s var(--au-spring), background .3s, color .3s, border-color .3s;
}
.fv-social a:hover { transform: translateY(-3px); background: var(--gold, #b98a2f); border-color: var(--gold, #b98a2f); color: #2a0a12; }
.fv-social svg { width: 19px; height: 19px; }
/* v101 — same row on light cards (contact page etc.): deep maroon glyphs */
.fv-social--light { margin-top: 12px; }
.fv-social--light a { width: 40px; height: 40px; color: var(--maroon-deep, #6e1e2a); background: rgba(212, 175, 90, .12); border-color: rgba(158, 116, 28, .35); }
.fv-social--light a:hover { background: var(--gold, #b98a2f); border-color: var(--gold, #b98a2f); color: #fff; }
.fv-news {
  border: 1px solid rgba(212, 175, 90, .22); border-radius: 20px;
  padding: 24px 24px 20px; background: rgba(255, 255, 255, .03);
}
.fv-news h4 { font-family: var(--ff-disp, Georgia, serif); color: #fdf3dd; font-size: 19px; margin: 8px 0 14px; line-height: 1.35; }
.fv-news .nl-form { display: flex; gap: 8px; }
.fv-news .nl-form input {
  flex: 1; min-width: 0; border-radius: 12px; border: 1px solid rgba(212,175,90,.3);
  background: rgba(0,0,0,.22); color: #f6e8c8; padding: 12px 14px; font-size: 14px; outline: none;
}
.fv-news .nl-form input::placeholder { color: rgba(233, 213, 168, .45); }
.fv-news .nl-form input:focus { border-color: var(--gold, #b98a2f); }
.fv-news .nl-form button {
  border: 0; border-radius: 12px; padding: 0 20px; cursor: pointer;
  background: linear-gradient(135deg, #e7c978, #c39a41); color: #2a0a12; font-weight: 700;
  font-family: var(--ff-label, sans-serif); letter-spacing: .08em; font-size: 12px;
}
.fv-news-note { font-size: 11.5px; color: rgba(233, 213, 168, .5); margin: 10px 0 0; }
.fv-b2b {
  margin-top: 16px; display: flex; align-items: center; gap: 9px;
  border: 1px dashed rgba(212,175,90,.45); border-radius: 13px; padding: 12px 15px;
  color: var(--gold-2, #f3dfae); font-size: 13.5px; text-decoration: none;
  transition: background .25s, border-color .25s;
}
.fv-b2b:hover { background: rgba(212,175,90,.1); border-color: var(--gold, #b98a2f); }
.fv-b2b b { margin-left: auto; }
.fv-b2b-ic { color: var(--gold, #b98a2f); }
.fv-rule { display: flex; align-items: center; gap: 14px; margin: 38px 0 30px; }
.fv-rule i { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(212,175,90,.35)); }
.fv-rule i:last-child { background: linear-gradient(90deg, rgba(212,175,90,.35), transparent); }
.fv-rule b { color: var(--gold, #b98a2f); font-size: 14px; }
.fv-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.fv-col h5 {
  font-family: var(--ff-label, sans-serif); font-size: 10.5px; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase; color: var(--gold-2, #f3dfae);
  margin: 0 0 15px;
}
.fv-col a {
  display: block; color: rgba(233, 213, 168, .78); font-size: 13.5px;
  padding: 5px 0; text-decoration: none; transition: color .2s, transform .2s;
}
.fv-col a:hover { color: #fff; transform: translateX(3px); }
#footCats { display: contents; }
.fv-chips { display: flex !important; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.fv-chips a {
  padding: 0 !important; font-size: 11px !important; transform: none !important;
  border: 1px solid rgba(212,175,90,.28); border-radius: 999px; padding: 4px 11px !important;
  color: rgba(243, 223, 174, .85) !important;
}
.fv-chips a:hover { background: rgba(212,175,90,.12); color: #fff !important; }
.fv-custom { margin-top: 8px; }
.fv-reach .fv-addr { font-style: normal; font-size: 13px; line-height: 1.75; color: rgba(233,213,168,.72); margin: 0 0 10px; }
.fv-contact { display: flex; gap: 8px; align-items: center; }
.fv-hours { font-size: 11.5px; color: rgba(233,213,168,.5); margin: 10px 0 12px; letter-spacing: .04em; }
.fv-contact-btn { color: #f3dfae !important; border-color: rgba(212,175,90,.45); display: inline-flex; width: fit-content; }
.fv-trust {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 36px; padding: 16px 0; border-top: 1px solid rgba(212,175,90,.18);
}
.fvt-id { display: flex; flex-direction: column; gap: 4px; font-size: 11.5px; color: rgba(233,213,168,.55); }
.fvt-trustlink { color: var(--gold-2, #f3dfae); font-size: 12.5px; text-decoration: none; letter-spacing: .02em; }
.fvt-trustlink:hover { text-decoration: underline; }
.fv-pay { display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-end; }
.fv-pay .pay-chip {
  border: 1px solid rgba(212,175,90,.3); color: rgba(233,213,168,.78);
  border-radius: 7px; padding: 5px 9px; font-size: 9.5px; letter-spacing: .08em; background: rgba(0,0,0,.18);
}
.fv-base {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  padding: 16px 0 22px; font-size: 11.5px; color: rgba(233,213,168,.5);
}
.fv-base-links { display: flex; flex-wrap: wrap; gap: 6px 14px; }
.fv-base-links a { color: rgba(233,213,168,.6); text-decoration: none; }
.fv-base-links a:hover { color: var(--gold-2, #f3dfae); }
.fv-wordmark {
  text-align: center; font-family: var(--ff-disp, Georgia, serif); font-weight: 700;
  font-size: clamp(58px, 17vw, 190px); line-height: .9; letter-spacing: .14em;
  background: linear-gradient(180deg, rgba(212,175,90,.20), rgba(212,175,90,0));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  -webkit-text-fill-color: transparent; pointer-events: none; user-select: none;
  margin: 6px 0 -2.2vw;
}
@media (max-width: 900px) {
  .fv-top { grid-template-columns: 1fr; gap: 26px; }
  .fv-cols { grid-template-columns: 1fr 1fr; gap: 24px 18px; }
}
@media (max-width: 560px) {
  .fv-in { padding-top: 36px; }
  .fv-mark img { height: 50px; }
  .fv-news { padding: 20px 18px; border-radius: 17px; }
  .fv-news .nl-form { flex-direction: column; }
  .fv-news .nl-form button { padding: 13px; }
  .fv-cols { grid-template-columns: 1fr 1fr; gap: 22px 16px; }
  .fv-col h5 { margin-bottom: 10px; font-size: 10px; }
  .fv-col a { font-size: 12.8px; padding: 4.5px 0; }
  .fv-reach { grid-column: 1 / -1; }
  .fv-trust { flex-direction: column; align-items: flex-start; gap: 10px; }
  .fv-pay { justify-content: flex-start; }
  .fv-base { flex-direction: column; align-items: flex-start; gap: 8px; text-align: left; }
  .fv-wordmark { letter-spacing: .1em; }
}

/* ── 5 · DESIGN SELECTION per-design photo slider ─────────────────────── */
.ds-img.ds-slider { display: block; position: relative; text-decoration: none; }
.ds-track { display: flex; width: 100%; transition: transform .38s var(--au-out); will-change: transform; }
.ds-track img { flex: 0 0 100%; width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.ds-count {
  position: absolute; top: 8px; left: 8px; z-index: 3;
  background: rgba(40, 10, 16, .78); color: #ffe9bd;
  font-size: 9.5px; letter-spacing: .08em; font-weight: 600;
  padding: 3px 8px; border-radius: 999px; backdrop-filter: blur(4px);
}
.ds-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 32px; height: 32px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255, 252, 244, .94); color: var(--maroon-deep);
  font-size: 20px; line-height: 1; display: grid; place-items: center;
  box-shadow: 0 4px 12px rgba(61,14,21,.28);
  opacity: 0; transition: opacity .25s, transform .15s;
}
.ds-slider:hover .ds-arrow, .ds-slider.has-multi .ds-arrow { opacity: 1; }
.ds-prev { left: 7px; } .ds-next { right: 7px; }
.ds-arrow:active { transform: translateY(-50%) scale(.88); }
.ds-dots { position: absolute; bottom: 7px; left: 0; right: 0; z-index: 3; display: flex; gap: 5px; justify-content: center; }
.ds-dot { width: 6px; height: 6px; border-radius: 50%; border: 0; padding: 0; background: rgba(255,255,255,.55); cursor: pointer; transition: all .25s; }
.ds-dot.on { width: 16px; border-radius: 3px; background: #fff; }
.ds-meta { display: block; text-decoration: none; color: inherit; }
.ds-meta:active { opacity: .7; }
.ds-meta b { min-height: 2.6em; }
@media (max-width: 680px) {
  /* arrows always visible & thumb-sized on touch, dots sized for fingers */
  .ds-arrow { opacity: 1; width: 34px; height: 34px; }
  .ds-dot { width: 8px; height: 8px; }
  .ds-dot.on { width: 18px; }
}

/* ── 6 · DEAD STOCK metal selector (all karats + silver) ──────────────── */
.ds-metals { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.ds-metal {
  border: 1.5px solid var(--line, #ead9c0); background: var(--white, #fff);
  border-radius: 13px; padding: 10px 6px 9px; cursor: pointer; text-align: center;
  transition: border-color .2s, background .2s, transform .15s;
  min-height: 58px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
}
.ds-metal b { font-family: var(--ff-disp, serif); font-size: 15px; color: var(--maroon-deep); line-height: 1.1; }
.ds-metal small { font-size: 9.5px; color: var(--ink-3, #8a7d6c); letter-spacing: .02em; }
.ds-metal.on {
  border-color: var(--gold, #b98a2f); background: var(--gold-faint, rgba(185,138,47,.12));
  box-shadow: 0 0 0 3px rgba(185, 138, 47, .16);
}
.ds-metal.on b { color: var(--maroon); }
.ds-metal:active { transform: scale(.95); }
@media (max-width: 680px) {
  .ds-metals { grid-template-columns: repeat(4, 1fr); gap: 7px; }
  .ds-metal { padding: 9px 3px 8px; min-height: 56px; border-radius: 11px; }
  .ds-metal b { font-size: 14px; }
  .ds-metal small { font-size: 9px; line-height: 1.2; }
}
@media (max-width: 380px) { .ds-metals { grid-template-columns: repeat(3, 1fr); } }

/* ── 7 · partner custom-order collapsed disclosure ────────────────────── */
#pcoPrime.pco-collapsed .pco-body { display: none; }
button.pco-toggle.pco-head {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  text-align: left; background: transparent; border: 0; cursor: pointer; padding: 0; color: inherit;
  font: inherit;
}
#pcoPrime .pco-sub-open { display: none; }
#pcoPrime.pco-open .pco-sub-collapsed { display: none; }
#pcoPrime.pco-open .pco-sub-open { display: block; }
.pco-chevron { transition: transform .3s var(--au-spring); font-size: 20px; color: var(--gold, #b98a2f); flex: 0 0 auto; }
#pcoPrime.pco-open .pco-chevron { transform: rotate(180deg); }
.pco-body { margin-top: 18px; animation: pcoIn .35s var(--au-out) both; }
@keyframes pcoIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.pco-actions { grid-column: 1 / -1; display: flex; gap: 10px; flex-wrap: wrap; }
#pcoHide { font-size: 12.5px; }

/* ── 8 · cart-resume mobile bar ───────────────────────────────────────── */
#backBar {
  left: 12px; right: 12px; bottom: calc(72px + env(safe-area-inset-bottom));
  transform: none; max-width: 520px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto; grid-template-areas: "ic tx x" "go go go";
  gap: 4px 12px; align-items: center;
  padding: 12px 14px; border-radius: 18px;
  background: var(--white, #fff); border: 1px solid rgba(185,138,47,.45);
  box-shadow: 0 16px 44px rgba(29, 5, 9, .28);
  animation: bbRise .45s var(--au-spring) both;
}
@keyframes bbRise { from { opacity: 0; transform: translateY(18px) scale(.97); } to { opacity: 1; transform: none; } }
#backBar .bb-ic { grid-area: ic; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, #e7c978, #b98a2f); color: #2a0a12; font-size: 16px; flex: 0 0 auto; }
#backBar .bb-tx { grid-area: tx; min-width: 0; display: flex; flex-direction: column; }
#backBar .bb-tx b { font-size: 13.5px; color: var(--maroon-deep); }
#backBar .bb-tx small { font-size: 11.5px; color: var(--ink-3, #8a7d6c); }
#backBar .bb-x { grid-area: x; width: 34px; height: 34px; border-radius: 50%; border: 0; background: var(--cream-2, #f4ecdd); color: var(--ink-3); font-size: 13px; cursor: pointer; }
#backBar .bb-go { grid-area: go; margin-top: 6px; text-decoration: none; text-align: center; }
@media (min-width: 721px) {
  #backBar {
    bottom: 30px; grid-template-areas: "ic tx go x"; grid-template-columns: auto 1fr auto auto;
    gap: 14px; align-items: center; padding: 10px 14px;
  }
  #backBar .bb-go { margin-top: 0; min-width: 170px; }
}

/* ── 9 · bullion desk — official, plain typography & numerals ─────────── */
.bd-board, .bd-board * { font-family: var(--ff-body, "Jost", system-ui, sans-serif); }
.bd-board b, .bd-board strong, .bd-board .bd-sum-buy, .bd-board .bd-kar b,
.bd-board td, .bd-board .bd-rt b, .bd-board .bd-cnum { font-variant-numeric: tabular-nums; letter-spacing: .01em; }
.bd-board em, .bd-board i { font-style: normal; }
.bd-brand { letter-spacing: .16em; }
.bd-board .bd-tabs span { letter-spacing: .06em; }
/* keep the page itself scroll-safe under the desk's bottom tab bar */
.bullion-board-wrap { padding-bottom: 8px; }
@media (max-width: 680px) {
  .bd-board { border-radius: 16px; overflow: hidden; }
}

/* ── 10 · ring sizer chart + printable strip ticks ────────────────────── */
.sz-chart-card { margin-top: 22px; }
.sz-chart-card h3 small { font-weight: 400; color: var(--ink-3, #8a7d6c); font-size: 12.5px; margin-left: 8px; }
.sz-chart { overflow-x: auto; -webkit-overflow-scrolling: touch; overscroll-behavior-x: contain; margin-top: 12px; }
.sz-table { border-collapse: collapse; width: 100%; min-width: 420px; font-size: 13px; }
.sz-table th, .sz-table td { padding: 8px 12px; text-align: center; border-bottom: 1px solid var(--line, #ead9c0); }
.sz-table th { font-family: var(--ff-label, sans-serif); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3, #8a7d6c); }
.sz-table td b { color: var(--maroon-deep); font-size: 14px; }
.sz-table tr.on { background: var(--gold-faint, rgba(185,138,47,.12)); }
.sz-table tr.on td b { color: var(--maroon); }
.sz-ruler .tick .tk-ind { display: block; font-weight: 700; color: var(--maroon-deep); font-size: 9px; line-height: 1.1; }
.sz-ruler .tick small { display: block; font-size: 8px; color: var(--ink-3); }
.sz-controls .btn { touch-action: manipulation; user-select: none; -webkit-user-select: none; }
@media (max-width: 680px) {
  .sz-controls { gap: 10px; }
  .sz-controls .btn { flex: 1; padding: 13px 8px; }
  .sz-readout { min-width: 128px; }
  .sz-cardrow { gap: 8px; }
}

/* ── 11 · B2B business-card drop zone ─────────────────────────────────── */
.kyc-card { text-align: center; cursor: pointer; transition: border-color .25s, background .25s; }
.kyc-card:hover, .kyc-card.drag { border-color: var(--gold, #b98a2f); background: var(--gold-faint, rgba(185,138,47,.1)); }
.kyc-card b { font-size: 14px; color: var(--maroon-deep); }
.kyc-card small { color: var(--ink-3, #8a7d6c); font-size: 11.5px; }

/* ── 12 · hallmark handoff page ───────────────────────────────────────── */
.hm-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.hm-hero-cta .btn-ios, .hm-hero-cta .btn-outline { color: #f3dfae; border-color: rgba(212,175,90,.5); }
.hm-handoff-grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: 22px; align-items: start; }
.hm-bigsteps { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 18px; }
.hm-bigsteps li { display: flex; gap: 14px; align-items: flex-start; }
.hm-stepn {
  flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--ff-disp, serif); font-size: 17px;
  background: linear-gradient(135deg, #e7c978, #b98a2f); color: #2a0a12; font-weight: 700;
}
.hm-bigsteps b { font-size: 15px; color: var(--maroon-deep); display: block; margin-bottom: 3px; }
.hm-bigsteps p { font-size: 13.5px; line-height: 1.65; color: var(--ink-2); margin: 0; }
.hm-bigsteps code { background: var(--gold-faint, rgba(185,138,47,.12)); padding: 1px 7px; border-radius: 7px; font-size: 12.5px; color: var(--maroon); }
.hm-appbtns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
@media (max-width: 760px) {
  .hm-handoff-grid { grid-template-columns: 1fr; }
  .hm-hero-cta .btn { flex: 1 1 auto; text-align: center; }
}

/* ── 13 · trust page: legal names + published GSTIN ───────────────────── */
.trust-name-val { font-size: 15px; color: var(--maroon-deep); font-weight: 600; }
.trust-name-row dd { display: flex; align-items: center; }
code.trust-provided {
  display: inline-block; font-size: 15px; letter-spacing: .06em; color: var(--maroon);
  background: var(--gold-faint, rgba(185,138,47,.12)); border: 1px solid rgba(185,138,47,.4);
  padding: 5px 12px; border-radius: 9px; margin-bottom: 6px;
}
.trust-provided-note { display: block; font-size: 11.5px; color: var(--ink-3); }

/* ════════════════════════════════════════════════════════════════════
   v102 — smarter refinements over the v101 surfaces (mobile-first)
   ════════════════════════════════════════════════════════════════════ */

/* Newsletter — working signup, inline thanks, remembered state */
.nl-thanks { margin: 0; font-size: 13.5px; line-height: 1.55; color: #f1e2bf; }
.nl-thanks b { color: #ffd98a; word-break: break-all; }
.nl-form button:disabled { opacity: .65; }

/* Search palette — label rows with Clear, no-results state, "/" hint */
.sugg-lbl { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.sugg-clearall { border: 0; background: none; padding: 2px 4px; font: inherit; font-size: 11.5px;
  color: var(--ink-3, #8a7d6c); text-decoration: underline; cursor: pointer; }
.sugg-clearall:hover { color: var(--maroon, #6e1423); }
.sugg-none { display: flex; flex-direction: column; gap: 4px; padding: 16px 18px 8px; }
.sugg-none b { color: var(--maroon-deep, #4a0e1a); font-size: 14.5px; }
.sugg-none span { font-size: 12.5px; color: var(--ink-3, #8a7d6c); }
.search-panel .sugg small { overflow: hidden; text-overflow: ellipsis; }

/* Quick View — share button, photo counter, zoom hint, zoomed photo */
.qv-share { position: absolute; z-index: 5; top: 14px; right: 14px; left: auto; width: 42px; height: 42px;
  border-radius: 50%; background: rgba(255,252,244,.92); display: grid; place-items: center;
  box-shadow: 0 6px 18px rgba(61,14,21,.22); border: 0; cursor: pointer; color: var(--maroon-deep); }
.qv-share svg { width: 19px; height: 19px; }
.qv-share:active { transform: scale(.9); }
.qv-count { position: absolute; right: 2px; bottom: -2px; margin-left: auto;
  background: rgba(40,10,16,.72); color: #ffe9bd; font-size: 10px; font-weight: 600;
  letter-spacing: .08em; padding: 3px 8px; border-radius: 999px; backdrop-filter: blur(4px);
  font-variant-numeric: tabular-nums; pointer-events: none; }
.qv-dots { align-items: center; }
.qv-zoom-hint { position: absolute; top: 62px; left: 50%; transform: translateX(-50%); z-index: 4;
  background: rgba(40,10,16,.62); color: #ffe9bd; font-size: 10.5px; letter-spacing: .04em;
  padding: 4px 11px; border-radius: 999px; pointer-events: none; white-space: nowrap;
  animation: qvHintFade .5s ease 3.2s forwards; }
@keyframes qvHintFade { to { opacity: 0; visibility: hidden; } }
.qv-photo { transition: transform .22s var(--au-out, ease); cursor: zoom-in; }
.qv-photo.qv-zoom { cursor: zoom-out; object-fit: contain; background: #1c090e; }
@media (max-width: 680px) {
  .qv-share { top: calc(10px + env(safe-area-inset-top)); }
}

/* Welcome-back cart bar — swipe-to-dismiss */
#backBar { transition: transform .26s var(--au-spring, cubic-bezier(.22,1,.36,1)), opacity .26s; will-change: transform; }
#backBar.bb-out { transform: translateX(calc(100% + 28px)) !important; opacity: 0; pointer-events: none; }

/* Ring sizer — persisted calibration reset, tappable chart rows */
.sz-reset { border: 0; background: none; padding: 0 0 0 6px; font: inherit; font-size: 12px;
  color: var(--gold, #b98a2f); text-decoration: underline; cursor: pointer; }
#szChart tbody tr { cursor: pointer; transition: background .15s; }
#szChart tbody tr:hover td { background: rgba(185,138,47,.12); }

/* KYC business card — attached-file state with thumbnail */
.drop-zone.kyc-card { flex-direction: column; }
.dz-idle { text-align: center; }
.dz-set { display: none; align-items: center; gap: 12px; width: 100%; text-align: left; }
.dz-set:not([hidden]) { display: flex; }
.dz-prev { width: 58px; height: 58px; flex: 0 0 auto; border-radius: 12px; overflow: hidden;
  display: grid; place-items: center; background: #fff; border: 1px solid var(--line, #ead9c0); font-size: 26px; }
.dz-prev img { width: 100%; height: 100%; object-fit: cover; }
.dz-meta { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.dz-meta b { font-size: 13.5px; color: var(--maroon-deep, #4a0e1a); white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis; }
.dz-meta small { font-size: 11.5px; color: var(--ink-3, #8a7d6c); }
.dz-x { width: 36px; height: 36px; flex: 0 0 auto; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--cream-2, #f4ecdd); color: var(--ink-3, #8a7d6c); font-size: 13px; }
.dz-x:active { transform: scale(.9); }

/* Reduced-motion: never animate the zoom hint or transforms */
@media (prefers-reduced-motion: reduce) {
  .qv-zoom-hint { animation: none; }
  .qv-photo, #backBar { transition: none !important; }
}

/* ════════════════════════════════════════════════════════════════════
   v103 — confidence & speed: delivery, data-saver, personal memory, trust
   ════════════════════════════════════════════════════════════════════ */

/* ── delivery promise (PDP + cart + checkout) ── */
.cart-delivery { margin-top: 16px; padding: 16px 18px; border-radius: 16px; }
.cd-head { display: flex; flex-direction: column; gap: 2px; margin-bottom: 10px; }
.cd-head b { font-size: 14.5px; color: var(--maroon-deep, #4a0e1a); }
.cd-head small { font-size: 12px; color: var(--ink-3, #8a7d6c); }
.cart-delivery .pin-row { max-width: 420px; }
.pin-note { display: block; font-size: 12px; margin-top: 6px; line-height: 1.55; }
.pin-note.ok { color: var(--ok, #2e7d4f); }
.pin-note.bad { color: var(--bad, #b04a4a); }

/* ── data-saver film gate in the PDP gallery ── */
.gal-vid-load { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; padding: 0;
  background: #000; cursor: pointer; display: grid; place-items: center; }
.gal-vid-load img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .78; }
.gal-vid-play { position: relative; width: 76px; height: 76px; border-radius: 50%;
  background: rgba(255, 252, 244, .94); display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35); transition: transform .2s var(--au-spring, ease); }
.gal-vid-play svg { width: 30px; height: 30px; margin-left: 4px; color: var(--maroon-deep, #4a0e1a); }
.gal-vid-load:active .gal-vid-play { transform: scale(.92); }
.gal-vid-load .gal-vid-tag { pointer-events: none; position: absolute; left: 14px; bottom: 14px; z-index: 2;
  display: inline-flex; flex-direction: column; align-items: flex-start; gap: 5px; background: rgba(12, 40, 28, .82); color: #fff;
  font: 600 11px/1 var(--ff-body, sans-serif); letter-spacing: .06em; padding: 8px 12px; border-radius: 14px; }
.gal-vid-always { pointer-events: auto; text-decoration: underline;
  text-underline-offset: 2px; font: 600 9px/1.2 var(--ff-body, sans-serif); letter-spacing: .03em;
  text-transform: none; opacity: .88; cursor: pointer; }
.gal-vid-always:hover, .gal-vid-always:focus-visible { opacity: 1; }

/* ── saved-size personalization ── */
.pc-your-size { position: absolute; top: 10px; right: 10px; z-index: 3;
  background: linear-gradient(135deg, #e7c978, #b98a2f); color: #2a0a12;
  font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px; box-shadow: 0 4px 12px rgba(61, 14, 21, .25); }
.size-match-chip { border: 1px solid rgba(185, 138, 47, .55); background: var(--gold-faint, rgba(185,138,47,.1));
  color: var(--maroon-deep, #4a0e1a); font: inherit; font-size: 12.5px; font-weight: 600;
  padding: 8px 14px; border-radius: 999px; cursor: pointer; transition: all .2s; white-space: nowrap; }
.size-match-chip.on { background: linear-gradient(135deg, #e7c978, #b98a2f); border-color: transparent; color: #2a0a12; }
.size-match-chip:active { transform: scale(.96); }

/* ── saved for later ── */
.later-sec .cart-item { opacity: .92; }

/* ── order tracker ETA ── */
.tracker-eta { margin: 8px 0 4px; padding: 10px 14px; border-radius: 12px;
  background: var(--gold-faint, rgba(185,138,47,.1)); border: 1px solid rgba(185,138,47,.3);
  font-size: 13px; color: var(--maroon-deep, #4a0e1a); }
.tracker-eta b { color: var(--maroon, #6e1423); }

/* ── trust certificate (public page + admin) ── */
.trust-cert-link { display: flex; align-items: center; gap: 14px; margin-top: 10px;
  padding: 14px 16px; border: 1.5px solid rgba(185,138,47,.5); border-radius: 14px;
  background: var(--gold-faint, rgba(185,138,47,.08)); text-decoration: none; color: inherit;
  transition: transform .2s var(--au-spring, ease), border-color .2s; }
.trust-cert-link:hover { border-color: var(--gold, #b98a2f); }
.trust-cert-link:active { transform: scale(.985); }
.trust-cert-ic { width: 46px; height: 46px; flex: 0 0 auto; border-radius: 12px; display: grid; place-items: center;
  background: #fff; border: 1px solid var(--line, #ead9c0); font-size: 22px; }
.trust-cert-link b { display: block; color: var(--maroon-deep, #4a0e1a); font-size: 14px; }
.trust-cert-link small { display: block; color: var(--ink-3, #8a7d6c); font-size: 12px; margin-top: 2px; }
.gst-cert-admin .gst-cert-current { display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 12px 14px; border: 1px solid var(--line, #ead9c0); border-radius: 14px; margin-bottom: 12px; background: var(--cream, #faf6ef); }
.gst-cert-current b { display: block; font-size: 13.5px; color: var(--maroon-deep, #4a0e1a); }
.gst-cert-current small { display: block; font-size: 11.5px; color: var(--ink-3, #8a7d6c); word-break: break-all; }
.gst-cert-current .btn { margin-left: auto; }
.gst-cert-pick { margin-top: 4px; }

@media (max-width: 680px) {
  .gst-cert-current .btn { margin-left: 0; }
  .gal-vid-play { width: 64px; height: 64px; }
}

/* ── v103 skeleton shimmer behind catalogue photos while they load
      (JS-off users keep the plain cream backdrop; reduced-motion gets a
      static warm wash instead of the sweep) ── */
html.js-motion .pc-imgwrap,
html.js-motion .tv-ph { background-color: #f1e8d6; }
html.js-motion .pc-imgwrap:not(.img-ok),
html.js-motion .tv-ph:not(.img-ok) {
  background-image: linear-gradient(100deg, #efe6d4 30%, #faf5e8 50%, #efe6d4 70%);
  background-size: 200% 100%; animation: mSkeleton 1.35s linear infinite; }
html.js-motion .pc-imgwrap.img-ok,
html.js-motion .tv-ph.img-ok { background-image: none; }

/* ── v103 smarter recently-viewed: live rate-trend hint ── */
.tv-hint { display: block; font-size: 10.5px; font-weight: 600; line-height: 1.35; margin-top: 2px; }
.tv-hint.down { color: #1f7a45; }
.tv-hint.up { color: #9a5a16; }
.tv-when { display: block; font-size: 10px; color: var(--ink-3, #8a7d6c); margin-top: 1px; }

/* ════════════════════════════════════════════════════════════════════
   v104 · COUTURE TOUCH — flagship mobile motion & platform chrome
   Every effect is transform/opacity, gated by js-aurum + pointer:coarse,
   silent under au-lite / prefers-reduced-motion, and invisible with JS
   off (the elements simply rest in their static design).
   ════════════════════════════════════════════════════════════════════ */

/* ── 1 · gold route-progress bar (native-app navigation feedback) ── */
.route-bar {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 4100;
  background: linear-gradient(90deg, #8a6a24 0%, #d4af5a 45%, #ffe9bd 75%, #d4af5a 100%);
  box-shadow: 0 0 12px rgba(212, 175, 90, .8);
  transform: scaleX(0); transform-origin: 0 50%;
  opacity: 0; pointer-events: none; will-change: transform;
}
.route-bar.on { opacity: 1; }
.route-bar.done { opacity: 0; transition: opacity .35s var(--au-out); }
@media (prefers-reduced-motion: reduce) {
  .route-bar { transition: none !important; box-shadow: none; }
}

/* ── 2 · offline / update chrome (replaces the plain red strip) ── */
.offline-bar {
  display: flex; align-items: center; gap: 10px;
  z-index: 1400; padding: calc(9px + env(safe-area-inset-top)) 16px 10px;
  background: linear-gradient(135deg, #4a0d18, #5c1420);
  color: #ffe1e3; font-size: 12px; line-height: 1.4; letter-spacing: .01em;
  box-shadow: 0 10px 30px rgba(20, 2, 6, .4);
  transform: translate3d(0, -130%, 0);
  transition: transform .5s var(--au-spring);
}
.offline-bar.show { transform: translate3d(0, 0, 0); }
.ob-dot { width: 9px; height: 9px; border-radius: 50%; flex: none;
  background: #ff7d85; box-shadow: 0 0 0 0 rgba(255, 125, 133, .55);
  animation: obPulse 1.5s ease-out infinite; }
@keyframes obPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 125, 133, .5); }
  70% { box-shadow: 0 0 0 9px rgba(255, 125, 133, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 125, 133, 0); }
}
.sw-update {
  position: fixed; left: 12px; right: 12px; z-index: 1400;
  bottom: calc(72px + env(safe-area-inset-bottom));
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 18px;
  background: linear-gradient(135deg, #2a0a12 0%, #3d0e15 70%, #4a1620 100%);
  border: 1px solid rgba(212, 175, 90, .55);
  color: #f7ead0; box-shadow: 0 22px 55px rgba(10, 2, 5, .55), inset 0 1px 0 rgba(255, 240, 200, .12);
  transform: translate3d(0, 150%, 0); opacity: 0;
  transition: transform .55s var(--au-spring), opacity .3s;
}
.sw-update.show { transform: translate3d(0, 0, 0); opacity: 1; }
body[data-page="product"] .sw-update,
body[data-page="admin"] .sw-update,
body[data-page="partner"] .sw-update,
body[data-page="cart"] .sw-update,
body[data-page="checkout"] .sw-update { bottom: calc(132px + env(safe-area-inset-bottom)); }
.swu-ic { flex: none; width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; font-size: 17px; color: #3d0e15;
  background: linear-gradient(135deg, #f3dfae, #d4af5a 60%, #b98a2f);
  box-shadow: 0 6px 16px rgba(212, 175, 90, .4); animation: swuSpin 4.5s linear infinite; }
.swu-tx { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.swu-tx b { font-size: 13px; color: #ffe9bd; }
.swu-tx small { font-size: 11px; color: rgba(247, 234, 208, .72); }
.swu-go { flex: none; border: 0; cursor: pointer; border-radius: 999px;
  min-height: 40px; padding: 9px 16px; font: 700 12px/1 var(--ff-body, sans-serif);
  letter-spacing: .06em; color: #3d0e15;
  background: linear-gradient(135deg, #f3dfae, #d4af5a 60%, #b98a2f);
  box-shadow: 0 6px 16px rgba(212, 175, 90, .35); }
.swu-go:active { transform: scale(.95); }
@keyframes swuSpin {
  0%, 82%, 100% { transform: rotate(0); }
  88% { transform: rotate(180deg); }
  94% { transform: rotate(300deg); }
}
@media (min-width: 769px) { .sw-update { left: auto; max-width: 420px; right: 22px; bottom: 22px; } }

/* ── 3 · touch — the remaining tactile surfaces (press feedback) ── */
@media (pointer: coarse) {
  html.js-aurum .pc-wish:active,
  html.js-aurum .gal-nav:active,
  html.js-aurum .c-arrow:active,
  html.js-aurum .pd-thumb:active,
  html.js-aurum .size-match-chip:active,
  html.js-aurum .gal-vid-load .gal-vid-play:active { transform: scale(.9); }
  html.js-aurum .pc-wish:active { transform: scale(.88); }
  html.js-aurum .sw-update, html.js-aurum .offline-bar { -webkit-tap-highlight-color: transparent; }
  /* no iOS long-press sheet over app chrome / imagery */
  .mnav, .mnav a, .p-card, .pc-imgwrap img, .gal-wrap, .gal-slide img,
  .cat-pill, .cp-ic, .hero-stage { -webkit-touch-callout: none; }
}

/* ── 4 · wishlist heart springs on (CSS only, class already toggles) ── */
@keyframes auHeart {
  0% { transform: scale(.55); }
  45% { transform: scale(1.35); }
  70% { transform: scale(.92); }
  100% { transform: scale(1); }
}
html.js-aurum .pc-wish.on svg { animation: auHeart .52s var(--au-spring); }

/* ── 5 · quantity number pops when it changes ── */
@keyframes auQpop {
  0% { transform: scale(1); }
  40% { transform: scale(1.45); color: var(--gold, #b98a2f); }
  100% { transform: scale(1); }
}
html.js-aurum .qty-row b.au-qpop { animation: auQpop .4s var(--au-spring); display: inline-block; }

/* ── 6 · bag rows spring in when a piece lands ── */
@keyframes auLineIn {
  from { opacity: 0; transform: translate3d(26px, 0, 0) scale(.97); }
  to { opacity: 1; transform: none; }
}
html.js-aurum .au-line-in { animation: auLineIn .5s var(--au-out); }

/* ── 7 · tracker — the current stage breathes; done stages glow ── */
@keyframes auStagePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(61, 14, 21, .35); }
  50% { box-shadow: 0 0 0 7px rgba(212, 175, 90, .14); }
}
.tracker-wrap .st-step.cur .st-ic { animation: auStagePulse 2.1s ease-in-out infinite; }
.tracker-wrap .st-step.done .st-ic { transition: transform .4s var(--au-spring); }
.tracker-wrap .st-step.done .st-ic { transform: scale(1.06); }

/* ── 8 · hero primary CTA carries a living gold halo on phones
        (the v99 perf block already frees both pseudo-elements on touch) ── */
@media (pointer: coarse) {
  html.js-aurum:not(.au-lite) .hero-cta .btn-gold { animation: auHalo 2.6s ease-in-out infinite; }
  @keyframes auHalo {
    0%, 100% { box-shadow: 0 8px 22px rgba(185, 138, 47, .3), 0 0 0 0 rgba(212, 175, 90, .32); }
    50% { box-shadow: 0 10px 30px rgba(185, 138, 47, .45), 0 0 0 9px rgba(212, 175, 90, 0); }
  }
}

/* ── 9 · PDP photo counter pill (phones; hidden on desktop & in lite) ── */
.gal-count { display: none; }
@media (max-width: 768px) {
  .gal-count {
    display: inline-block; position: absolute; top: 12px; right: 12px; z-index: 4;
    padding: 5px 11px; border-radius: 999px; font-size: 11px; font-weight: 700;
    letter-spacing: .08em; font-variant-numeric: tabular-nums;
    color: #fff8ea; background: rgba(20, 8, 10, .52);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .28);
    opacity: 0; transform: translateY(-4px);
    transition: opacity .35s var(--au-out), transform .35s var(--au-out);
  }
  .gal-count:not(:empty) { opacity: 1; transform: none; }
  /* dots keep their place; the counter rides the corner */
  .gal-dots { bottom: 12px; }
}

/* ── 10 · bottom-sheets arrive on a springier, native curve ── */
@media (max-width: 768px) {
  .modal { animation-duration: .5s; animation-timing-function: cubic-bezier(.32, .72, 0, 1); }
  .filters { transition: transform .48s cubic-bezier(.32, .72, 0, 1); }
  .mc-drawer { transition: transform .46s cubic-bezier(.32, .72, 0, 1); }
}

/* ── 11 · reduced motion — every v104 loop/entrance stands down ── */
@media (prefers-reduced-motion: reduce) {
  .ob-dot, .swu-ic, .tracker-wrap .st-step.cur .st-ic,
  html.js-aurum:not(.au-lite) .hero-cta .btn-gold { animation: none !important; }
  html.js-aurum .pc-wish.on svg,
  html.js-aurum .qty-row b.au-qpop,
  html.js-aurum .au-line-in { animation: none !important; }
  .offline-bar, .sw-update, .gal-count { transition: none !important; }
}

/* ── 12 · accessible, jewellery-grade keyboard focus ──
   Touch taps never show it (:focus-visible only fires for keyboard focus);
   inputs keep their own border focus, so the ring is scoped to controls. */
.js-aurum a:focus-visible,
.js-aurum button:focus-visible,
.js-aurum summary:focus-visible,
.js-aurum [role="button"]:focus-visible,
.js-aurum .mnav a:focus-visible {
  outline: 2px solid rgba(212, 175, 90, .95);
  outline-offset: 2px;
  border-radius: 12px;
}
.js-aurum .mnav a:focus-visible { border-radius: 16px; }
@media (pointer: coarse) {
  /* after a tap, browsers on some Androids keep a focus ring on buttons —
     remove only that case; keyboard focus (e.g. external keyboard) keeps it */
  .js-aurum button:focus:not(:focus-visible),
  .js-aurum a:focus:not(:focus-visible) { outline: none; }
}

/* ── 13 · hero stage — compositor-only float restored for phones ──
   v42 killed the old hsFloat because it animated margin-top (layout, jank).
   v104 restores the life with pure translate3d on already-promoted layers,
   strictly gated: no JS (static), au-lite budget hardware (static),
   reduced-motion (static). */
@keyframes auFloatA { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(0, -10px, 0); } }
@keyframes auFloatB { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(0, 8px, 0); } }
@keyframes auFloatC { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(0, -7px, 0); } }
@media (pointer: coarse) and (max-width: 820px) {
  html.js-aurum:not(.au-lite) .hs-main { animation: auFloatA 7s ease-in-out infinite !important; will-change: transform; }
  html.js-aurum:not(.au-lite) .hs-a { animation: auFloatB 8.5s ease-in-out -2s infinite !important; will-change: transform; }
  html.js-aurum:not(.au-lite) .hs-b { animation: auFloatC 9.5s ease-in-out -4s infinite !important; will-change: transform; }
  html.js-aurum.au-lite .hs-card { transform: none !important; }
  @media (prefers-reduced-motion: reduce) {
    html.js-aurum .hs-main, html.js-aurum .hs-a, html.js-aurum .hs-b { animation: none !important; }
  }
}

/* ── 14 · heritage carousel — slow transform Ken-Burns on the slide
        showing (transform/opacity only; the v42 ban covered a heavier
        implementation). One visible layer animates at a time. ── */
@keyframes auKen { 0% { transform: scale(1.04); } 100% { transform: scale(1.12); } }
@media (pointer: coarse) {
  html.js-aurum:not(.au-lite) .c-slide img { transform: scale(1.04); }
  html.js-aurum:not(.au-lite) .c-slide.on img { animation: auKen 7.5s ease-out both !important; }
  @media (prefers-reduced-motion: reduce) {
    html.js-aurum .c-slide.on img { animation: none !important; }
  }
}
