:root {
  --color-bg: #fcfbf9;
  --color-surface: #f4f0ea;
  --color-ink: #1b1c1e;
  --color-muted: #6b6660;
  --color-accent: #8e1312;
  --color-accent-hover: #a81820;
  --color-accent-soft: #f7e8e8;
  --color-gold: #c98e3f;
  --color-gold-soft: #f5ecd8;
  --color-border: #e6e0d6;
  --color-border-strong: #d2c9bb;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --shadow-lift: 0 24px 60px rgba(27, 28, 30, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
html, body {
  max-width: 100%;
  overflow-x: clip;
}
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(201,142,63,.06), transparent 50%), var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-body);
  letter-spacing: .01em;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
main { flex: 1; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--color-ink); color: #fff; padding: .75rem 1rem; z-index: 100;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container { width: min(80rem, calc(100% - 2rem)); margin-inline: auto; }
@media (max-width: 480px) {
  .container { width: calc(100% - 1.25rem); }
}
.section-pad { padding-block: clamp(3.5rem, 7vw, 6rem); }
.gold-rule { width: 3rem; height: 1px; background: var(--color-gold); display: block; margin-bottom: 1.25rem; }
.brand-mark { font-family: var(--font-display); font-weight: 500; letter-spacing: -.02em; line-height: .95; }
.display { font-family: var(--font-display); }
.muted { color: var(--color-muted); }
.eyebrow { font-size: .8rem; font-weight: 500; text-transform: uppercase; letter-spacing: .22em; color: var(--color-gold); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .9rem 1.75rem; font-size: .8rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .14em; border: 1px solid transparent;
  transition: .3s ease; cursor: pointer;
}
.btn-primary { background: var(--color-accent); color: #f8f6f1; }
.btn-primary:hover { background: var(--color-accent-hover); transform: translateY(-2px); }
.btn-secondary { border-color: rgba(27,28,30,.25); color: var(--color-ink); background: transparent; }
.btn-secondary:hover { border-color: var(--color-accent); color: var(--color-accent); }
.btn-light { background: #f8f6f1; color: var(--color-ink); }
.btn-light:hover { background: var(--color-gold-soft); transform: translateY(-2px); }
.btn-ghost { padding: 0; text-transform: none; letter-spacing: .02em; font-size: .95rem; border: 0; background: none; }
.btn-ghost:hover { text-decoration: underline; }


.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  overflow: visible;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
.site-header.is-solid {
  background: rgba(252,251,249,.96);
  border-bottom: 1px solid rgba(22,20,17,.08);
  box-shadow: 0 8px 28px rgba(27,28,30,.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--color-ink);
}
.site-header.is-transparent {
  background: rgba(252,251,249,.9);
  border-bottom: 1px solid rgba(22,20,17,.06);
  box-shadow: 0 6px 22px rgba(27,28,30,.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--color-ink);
}

.header-gold {
  height: 2px;
  background: linear-gradient(90deg, rgba(201,142,63,.15), rgba(201,142,63,.7), rgba(201,142,63,.15));
  opacity: .85;
  transition: opacity .35s ease;
}
.site-header.is-transparent .header-gold { opacity: .55; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.6rem;
  gap: 1.25rem;
  overflow: visible;
}
.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  overflow: visible;
  text-decoration: none;
}
.logo img {
  display: block;
  height: 2.85rem;
  width: auto;
  max-width: min(13.5rem, 52vw);
  object-fit: contain;
  object-position: left center;
}

.footer-logo {
  display: inline-flex;
  line-height: 0;
  background: #fff;
  padding: .45rem .6rem;
  border-radius: 2px;
}
.footer-logo img {
  display: block;
  height: 3.15rem;
  width: auto;
  max-width: 14.5rem;
  object-fit: contain;
}

.nav-desktop {
  display: none;
  gap: 1.65rem;
  align-items: center;
}
.nav-desktop a {
  position: relative;
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--color-ink);
  opacity: .82;
  transition: opacity .2s ease, color .2s ease;
}
.nav-desktop a:hover,
.nav-desktop a.active {
  opacity: 1;
  color: var(--color-accent);
}
.nav-desktop a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.45rem;
  height: 1px;
  background: var(--color-gold);
  opacity: .85;
}
.header-actions {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  flex-shrink: 0;
}
.header-actions a {
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--color-ink);
  opacity: .82;
  transition: opacity .2s ease, color .2s ease;
}
.header-actions a:hover {
  opacity: 1;
  color: var(--color-accent);
}
.cart-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  opacity: 1 !important;
  color: var(--color-ink);
  border-radius: 999px;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.cart-link:hover {
  color: var(--color-accent);
  background: rgba(142,19,18,.07);
  transform: translateY(-1px);
}
.cart-link__icon {
  display: block;
  width: 1.55rem;
  height: 1.55rem;
}
.cart-link {
  position: relative;
}
.cart-link__count {
  position: absolute;
  top: .15rem;
  right: .05rem;
  min-width: 1.15rem;
  height: 1.15rem;
  padding-inline: .28rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1;
  color: #f8f6f1;
  background: var(--color-accent);
  border-radius: 999px;
  box-shadow: 0 0 0 2px rgba(252, 251, 249, 0.95);
  transition: transform .28s cubic-bezier(.34,1.56,.64,1), background .2s ease;
}
.cart-link.is-bump .cart-link__count {
  transform: scale(1.28);
  background: var(--color-gold);
}
.cart-link.is-catch {
  animation: cartCatch .45s ease;
}
.cart-fly {
  position: fixed;
  z-index: 90;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(27, 28, 30, 0.1);
  border-radius: .45rem;
  overflow: hidden;
  pointer-events: none;
  background: #f7f4ef;
  box-shadow:
    0 10px 28px rgba(27, 28, 30, 0.2),
    0 2px 8px rgba(27, 28, 30, 0.1);
  will-change: transform, opacity;
  transform-origin: center center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.cart-fly img {
  position: static !important;
  inset: auto !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block;
  margin: 0;
  padding: 0;
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  max-width: none !important;
  max-height: none !important;
}
.pdp-buy__added {
  margin: .75rem 0 0;
  font-size: .88rem;
  font-weight: 550;
  color: var(--color-accent);
  letter-spacing: .02em;
}
/* busy handled on .pdp-buy__form.is-busy */

@keyframes cartCatch {
  0% { transform: scale(1); }
  30% { transform: scale(1.16); }
  55% { transform: scale(0.94); }
  100% { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .cart-fly { transition: none !important; }
  .cart-link.is-catch { animation: none; }
  .cart-link__count { transition: none; }
}
.menu-btn {
  border: 1px solid rgba(27,28,30,.28);
  background: rgba(252,251,249,.85);
  color: var(--color-ink);
  padding: .48rem .9rem;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.menu-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: #fff;
}
.mobile-nav {
  display: none;
  background: rgba(252,251,249,.98);
  color: var(--color-ink);
  border-top: 1px solid rgba(22,20,17,.08);
  padding: 1rem 1.25rem 1.35rem;
  backdrop-filter: blur(12px);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: .55rem 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--color-ink);
  border-bottom: 1px solid rgba(22,20,17,.06);
}
.mobile-nav a:last-child { border-bottom: 0; }
.mobile-nav a:hover { color: var(--color-accent); }
.header-spacer { height: calc(4.6rem + 2px); }

.hero-bleed {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #100e0c;
  color: #f8f6f1;
  margin-top: -4.75rem;
}
.hero-bleed__media,
.hero-bleed__veil,
.hero-bleed__glow { position: absolute; inset: 0; }
.hero-bleed__media { overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.5s cubic-bezier(.4,0,.2,1), visibility 1.5s;
  z-index: 0;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 48%;
  transform: scale(1.08);
  filter: saturate(1.15) contrast(1.05) brightness(.95);
  transition: transform 1.5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.hero-slide.is-active img {
  transform: scale(1);
  animation: heroKen 7s cubic-bezier(.25,.1,.25,1) both;
}
.hero-bleed__veil {
  z-index: 2;
  background:
    linear-gradient(105deg,
      rgba(8,6,5,.86) 0%,
      rgba(8,6,5,.45) 30%,
      rgba(8,6,5,.1) 55%,
      transparent 72%
    ),
    linear-gradient(180deg,
      rgba(8,6,5,.35) 0%,
      transparent 28%,
      transparent 62%,
      rgba(8,6,5,.82) 100%
    );
  pointer-events: none;
}
.hero-bleed__glow {
  z-index: 2;
  pointer-events: none;
  transition: background .9s ease, opacity .9s ease;
  opacity: .9;
  mix-blend-mode: screen;
  background: radial-gradient(ellipse 50% 55% at 78% 55%, rgba(201,142,63,.2), transparent 70%);
}
.hero-bleed__glow[data-tone="ruby"] {
  background: radial-gradient(ellipse 50% 55% at 75% 55%, rgba(190,45,55,.28), transparent 70%);
}
.hero-bleed__glow[data-tone="emerald"] {
  background: radial-gradient(ellipse 50% 55% at 75% 55%, rgba(30,140,90,.26), transparent 70%);
}
.hero-bleed__glow[data-tone="sapphire"] {
  background: radial-gradient(ellipse 50% 55% at 75% 55%, rgba(40,80,190,.28), transparent 70%);
}
.hero-bleed__glow[data-tone="gold"] {
  background: radial-gradient(ellipse 50% 55% at 78% 55%, rgba(201,142,63,.2), transparent 70%);
}




/* Wearable finger ring — transparent PNG, side placed */
.hero-ring {
  position: absolute;
  z-index: 3;
  right: clamp(1.5rem, 4vw, 3.5rem);
  top: auto;
  bottom: 18%;
  transform: none;
  width: min(280px, 26vw);
  height: min(280px, 26vw);
  pointer-events: none;
}
.hero-ring__turntable {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1100px;
  animation: ringFloat 6s ease-in-out infinite;
}
.hero-ring__shadow {
  position: absolute;
  left: 22%;
  right: 22%;
  bottom: 2%;
  height: 12%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,0,0,.4), transparent 70%);
  filter: blur(8px);
}
.hero-ring__spin {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  animation: ringTurn 10s ease-in-out infinite;
}
.hero-ring__spin img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.35));
  transition: opacity .4s ease, transform .4s ease;
}
.hero-ring__spin.is-swap img {
  opacity: 0;
  transform: scale(.94);
}

@keyframes ringTurn {
  0% { transform: rotateY(-24deg) rotateX(6deg); }
  50% { transform: rotateY(24deg) rotateX(10deg); }
  100% { transform: rotateY(-24deg) rotateX(6deg); }
}
@keyframes ringFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.hero-side {
  position: absolute;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(250,247,242,.18);
  background: rgba(8,6,5,.28);
  color: #faf7f2;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background .25s ease, border-color .25s ease, opacity .25s ease;
  opacity: .7;
}
.hero-side:hover { opacity: 1; border-color: rgba(250,247,242,.55); background: rgba(8,6,5,.5); }
.hero-side--prev { left: 1.25rem; }
.hero-side--next { right: 1.25rem; }

.hero-bleed__stage {
  position: relative;
  z-index: 3;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 7rem 0 0;
  pointer-events: none;
}
.hero-bleed__stage .container,
.hero-bleed__stage .hero-footer,
.hero-bleed__stage a,
.hero-bleed__stage button { pointer-events: auto; }

.hero-copy {
  max-width: 34rem;
  padding-bottom: 5.5rem;
}
.hero-copy .brand-mark {
  margin: 0;
  font-size: clamp(4.5rem, 12vw, 7.5rem);
  line-height: .88;
  letter-spacing: -.04em;
  font-weight: 500;
  color: #faf7f2;
  text-shadow: 0 20px 60px rgba(0,0,0,.4);
  animation: heroRise 1s cubic-bezier(.22,1,.36,1) both;
}
.hero-copy h1 {
  margin: 1.2rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.4vw, 2.55rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -.015em;
  color: rgba(250,247,242,.92);
  animation: heroRise 1.05s cubic-bezier(.22,1,.36,1) .08s both;
}
.hero-copy h1 em {
  font-style: italic;
  color: #efe2c8;
}
.hero-stone {
  margin: 1.15rem 0 0;
  min-height: 1.2em;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--color-gold);
  transition: opacity .4s ease, transform .4s ease;
  animation: heroRise 1.1s cubic-bezier(.22,1,.36,1) .14s both;
}
.hero-stone.is-out {
  opacity: 0;
  transform: translateY(6px);
}
.hero-actions {
  margin-top: 2rem;
  animation: heroRise 1.15s cubic-bezier(.22,1,.36,1) .2s both;
}
.btn-hero {
  min-width: 11.5rem;
  padding: 1.1rem 2.2rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  border: 0;
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
}
.btn-light.btn-hero {
  background: #faf7f2;
  color: #161411;
}
.btn-light.btn-hero:hover {
  background: var(--color-gold);
  color: #161411;
  transform: translateY(-2px);
}

.hero-footer {
  border-top: 1px solid rgba(250,247,242,.1);
  background: linear-gradient(180deg, transparent, rgba(8,6,5,.35));
  backdrop-filter: blur(4px);
}
.hero-footer__inner {
  display: grid;
  grid-template-columns: 4rem 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.15rem 0;
}
.hero-count {
  margin: 0;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  color: rgba(250,247,242,.45);
}
.hero-count span { color: #faf7f2; }
.hero-count__sep { margin: 0 .2rem; color: rgba(250,247,242,.3); }
.hero-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
}
.hero-dot {
  position: relative;
  width: 2.75rem;
  height: 2px;
  padding: 0;
  border: 0;
  background: rgba(250,247,242,.2);
  cursor: pointer;
  overflow: hidden;
}
.hero-dot span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--color-gold);
}
.hero-dot.is-active span {
  animation: heroProgress 7s linear both;
}
.hero-hint {
  margin: 0;
  justify-self: end;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(250,247,242,.4);
  transition: opacity .35s ease;
}
.hero-bleed.is-paused .hero-dot.is-active span {
  animation-play-state: paused;
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroKen {
  from { transform: scale(1.04); }
  to { transform: scale(1.1); }
}
@keyframes heroProgress {
  from { width: 0; }
  to { width: 100%; }
}


@media (max-width: 1100px) {
  .hero-ring {
    width: min(240px, 28vw);
    height: min(240px, 28vw);
    right: 1rem;
    bottom: 16%;
  }
}
@media (max-width: 900px) {
  .hero-side { display: none; }
  .hero-ring {
    width: 150px;
    height: 150px;
    right: .75rem;
    bottom: 22%;
  }
}
@media (max-width: 560px) {
  .hero-ring {
    width: 120px;
    height: 120px;
    right: .5rem;
    bottom: 24%;
    opacity: .95;
  }
}
@media (max-width: 767px) {
  .hero-slide img { object-position: 82% 42%; }
  .hero-bleed__veil {
    background: linear-gradient(180deg, rgba(8,6,5,.4) 0%, rgba(8,6,5,.15) 40%, rgba(8,6,5,.9) 100%);
  }
  .hero-copy {
    padding-bottom: 1.5rem;
  }
  .hero-copy .brand-mark { font-size: clamp(3.5rem, 15vw, 4.6rem); }
  .btn-hero { width: 100%; }
  .hero-footer__inner {
    grid-template-columns: 3.5rem 1fr;
    gap: 1rem;
  }
  .hero-hint { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide img { transition: none; }
  .hero-slide.is-active img { animation: none; transform: scale(1); }
  .hero-copy .brand-mark,
  .hero-copy h1,
  .hero-stone,
  .hero-actions { animation: none; }
  .hero-dot.is-active span { animation: none; width: 100%; }
  .hero-ring__turntable,
  .hero-ring__spin { animation: none; }
}

.shop-strip {
  background: rgba(250,248,244,.92);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(8px);
}
.shop-strip__inner {
  display: flex; align-items: center; gap: clamp(1.1rem, 2.8vw, 2rem);
  overflow-x: auto; scrollbar-width: none; padding: 1.25rem 0;
}
.shop-strip__inner::-webkit-scrollbar { display: none; }
.shop-strip__label {
  flex: 0 0 auto; font-size: .66rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .22em; color: var(--color-muted);
}
.shop-strip__item {
  flex: 0 0 auto; font-family: var(--font-display); font-size: 1.2rem; font-weight: 500;
  color: var(--color-ink); opacity: .45; white-space: nowrap;
  transition: opacity .25s ease, color .25s ease;
}
.shop-strip__item:hover { opacity: 1; color: var(--color-accent); }
.shop-strip__all {
  flex: 0 0 auto; margin-left: auto; font-size: .68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .16em; color: var(--color-gold); white-space: nowrap;
}
.shop-strip__all:hover { color: var(--color-accent); }

.section-head {
  display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1.25rem;
}
.section-lead { max-width: 34rem; margin-top: .9rem; line-height: 1.7; font-size: 1.05rem; }
.eyebrow { margin: 0; color: var(--color-gold); }







/* Featured jewel lane — light theme, refined */
/* Featured jewel lane — light theme, refined */
.jewel-lane {
  position: relative;
  overflow: hidden;
  padding: clamp(2.25rem, 4.5vw, 3.75rem) 0 2.15rem;
  background:
    radial-gradient(ellipse 50% 45% at 0% 30%, rgba(142,19,18,.06), transparent 55%),
    #f3efe7;
  color: var(--color-ink);
  border-top: 1px solid rgba(22,20,17,.06);
}
.jewel-lane__ambient {
  position: absolute;
  inset: -15% -8%;
  pointer-events: none;
  transition: background .9s ease, opacity .9s ease;
  opacity: .7;
  background: radial-gradient(ellipse 42% 48% at 28% 55%, rgba(190,45,55,.12), transparent 68%);
}
.jewel-lane__ambient[data-tone="ruby"] {
  background: radial-gradient(ellipse 42% 48% at 32% 52%, rgba(190,45,55,.14), transparent 68%);
}
.jewel-lane__ambient[data-tone="emerald"] {
  background: radial-gradient(ellipse 42% 48% at 32% 52%, rgba(30,140,90,.13), transparent 68%);
}
.jewel-lane__ambient[data-tone="blue-sapphire"] {
  background: radial-gradient(ellipse 42% 48% at 32% 52%, rgba(45,85,200,.13), transparent 68%);
}
.jewel-lane__ambient[data-tone="yellow-sapphire"] {
  background: radial-gradient(ellipse 42% 48% at 32% 52%, rgba(200,150,40,.14), transparent 68%);
}
.jewel-lane__ambient[data-tone="hessonite"] {
  background: radial-gradient(ellipse 42% 48% at 32% 52%, rgba(180,90,40,.12), transparent 68%);
}
.jewel-lane__ambient[data-tone="cats-eye"] {
  background: radial-gradient(ellipse 42% 48% at 32% 52%, rgba(160,130,50,.12), transparent 68%);
}

.jewel-lane__head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.6rem;
}
.jewel-lane__eyebrow {
  margin: 0;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.jewel-lane__rule {
  display: block;
  width: 2.25rem;
  height: 1px;
  margin: .7rem 0 .85rem;
  background: rgba(168,135,58,.7);
}
.jewel-lane__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 500;
  line-height: .96;
  letter-spacing: -.03em;
  color: var(--color-ink);
}
.jewel-lane__title em {
  font-style: italic;
  font-weight: 400;
  color: #4a3d30;
}
.jewel-lane__lead {
  margin: .8rem 0 0;
  max-width: 28rem;
  font-size: .95rem;
  line-height: 1.65;
  color: var(--color-muted);
}
.jewel-lane__all {
  flex: 0 0 auto;
  margin-bottom: .35rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-ink);
  border-bottom: 1px solid rgba(22,20,17,.22);
  padding-bottom: .2rem;
  transition: color .25s ease, border-color .25s ease;
}
.jewel-lane__all:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.jewel-lane__track-wrap { position: relative; z-index: 2;  overflow: visible; }
.jewel-lane__fade {
  position: absolute;
  top: 0;
  bottom: 1.1rem;
  width: 2.75rem;
  z-index: 3;
  pointer-events: none;
}
.jewel-lane__fade--left {
  left: 0;
  background: linear-gradient(90deg, #f3efe7, transparent);
}
.jewel-lane__fade--right {
  right: 0;
  background: linear-gradient(270deg, #f3efe7, transparent);
}
.jewel-nav {
  position: absolute;
  top: 40%;
  z-index: 4;
  transform: translateY(-50%);
  width: 2.6rem;
  height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(22,20,17,.12);
  background: rgba(250,248,244,.9);
  color: var(--color-ink);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
  box-shadow: 0 8px 20px rgba(22,20,17,.08);
}
.jewel-nav:hover {
  background: #fff;
  border-color: rgba(22,20,17,.22);
  box-shadow: 0 12px 26px rgba(22,20,17,.12);
}
.jewel-nav--prev { left: max(.35rem, calc((100% - 80rem) / 2)); }
.jewel-nav--next { right: max(.35rem, calc((100% - 80rem) / 2)); }

.jewel-lane__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: .15rem max(1rem, calc((100% - min(80rem, 100%)) / 2 + 1rem)) 1.15rem;
  scrollbar-width: none;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}
.jewel-lane__track::-webkit-scrollbar { display: none; }
.jewel-lane__track.is-dragging { cursor: grabbing; scroll-behavior: auto; }

.jewel-card {
  position: relative;
  flex: 0 0 min(72vw, 260px);
  aspect-ratio: 5 / 6;
  scroll-snap-align: start;
  overflow: hidden;
  color: #faf7f2;
  background: #1a1613;
  box-shadow: 0 16px 36px rgba(22,20,17,.14);
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease;
  z-index: 1;
}
.jewel-card.is-hero { flex-basis: min(76vw, 290px); }
.jewel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 52px rgba(22,20,17,.22);
  z-index: 8;
  overflow: visible;
}
.jewel-card__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #1a1613;
  z-index: 0;
}
.jewel-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.12) contrast(1.04);
  transition: transform .7s cubic-bezier(.22,1,.36,1), filter .4s ease, opacity .4s ease;
}
.jewel-card:hover .jewel-card__photo {
  transform: scale(1.04);
  filter: saturate(1.05) brightness(.55);
  opacity: .7;
}

/* Ring on hover — fade + rise OUT (not sink in) */
.jewel-card__set {
  position: absolute;
  inset: 8% 6% 22%;
  z-index: 20;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(16px) scale(.88);
  transition: opacity .4s ease, transform .55s cubic-bezier(.22,1,.36,1);
  perspective: 900px;
}
.jewel-card:hover .jewel-card__set {
  opacity: 1;
  transform: translateY(-6px) scale(1.12);
}
.jewel-card__turn {
  width: min(100%, 280px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.55));
  transform: rotateY(-12deg) rotateX(6deg);
  transform-style: preserve-3d;
  transition: transform .55s cubic-bezier(.22,1,.36,1);
}
.jewel-card:hover .jewel-card__turn {
  transform: rotateY(8deg) rotateX(4deg);
  animation: gemRingTurn 8s ease-in-out .3s infinite;
}
.jewel-card__ring {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: transparent;
  display: block;
}

/* Lifestyle hover — gem-chip style real 3D stage */
.jewel-card--lifestyle {
  overflow: visible;
}
.jewel-card--lifestyle .jewel-card__media {
  overflow: visible;
  perspective: 1400px;
  perspective-origin: 50% 42%;
  transform-style: preserve-3d;
}
.jewel-card--lifestyle:hover .jewel-card__photo {
  opacity: .22;
  filter: saturate(.85) brightness(.32);
  transform: scale(1.08);
  clip-path: inset(8% round 0);
}
.jewel-card--lifestyle:hover .jewel-card__veil {
  background: linear-gradient(180deg, rgba(8,6,5,.55) 0%, rgba(8,6,5,.2) 45%, rgba(8,6,5,.82) 100%);
}
.jewel-card__stage {
  position: absolute;
  left: -4%;
  right: -4%;
  top: 2%;
  bottom: 16%;
  z-index: 25;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, 36px, -120px) scale(.55);
  transform-style: preserve-3d;
  transition:
    opacity .35s ease,
    transform .8s cubic-bezier(.16,1.12,.28,1);
  will-change: transform, opacity;
}
.jewel-card__stage::before {
  content: "";
  position: absolute;
  left: 22%;
  right: 22%;
  bottom: 10%;
  height: 14%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,0,0,.55), transparent 72%);
  filter: blur(10px);
  opacity: 0;
  transform: translateZ(-36px) scale(.55);
  transition: opacity .55s ease, transform .8s cubic-bezier(.16,1.12,.28,1);
}
.jewel-card--lifestyle:hover .jewel-card__stage {
  opacity: 1;
  transform: translate3d(0, -8px, 110px) scale(1.02);
  animation: jewelLifeFloat 4.8s ease-in-out .35s infinite;
}
.jewel-card--lifestyle:hover .jewel-card__stage::before {
  opacity: 1;
  transform: translateZ(-36px) scale(1);
}
.jewel-card__orbit {
  width: min(92%, 250px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  transform: rotateY(-28deg) rotateX(14deg) scale(.92);
  transition: transform .8s cubic-bezier(.16,1.12,.28,1);
  filter: drop-shadow(0 22px 32px rgba(0,0,0,.5));
}
.jewel-card--lifestyle:hover .jewel-card__orbit {
  transform: rotateY(10deg) rotateX(8deg) scale(1);
  animation: jewelLifeSpin 7.5s ease-in-out .35s infinite;
}
.jewel-card__life {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 50%;
  background: #14110f;
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,.14),
    0 0 0 1px rgba(0,0,0,.25);
  transform: translateZ(24px);
  filter: saturate(1.08) contrast(1.05) brightness(1.06);
}

@keyframes jewelLifeFloat {
  0%, 100% { transform: translate3d(0, -8px, 110px) scale(1.02); }
  50% { transform: translate3d(0, -16px, 120px) scale(1.05); }
}
@keyframes jewelLifeSpin {
  0% { transform: rotateY(18deg) rotateX(8deg) scale(1); }
  50% { transform: rotateY(-22deg) rotateX(12deg) scale(1.04); }
  100% { transform: rotateY(18deg) rotateX(8deg) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .jewel-card--lifestyle:hover .jewel-card__stage,
  .jewel-card--lifestyle:hover .jewel-card__orbit {
    animation: none;
  }
}

.jewel-card__shine {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,.14) 50%, transparent 62%);
  transform: translateX(-130%);
  transition: transform .85s ease;
  opacity: .7;
}
.jewel-card:hover .jewel-card__shine { transform: translateX(130%); }
.jewel-card:hover .jewel-card__veil,
.jewel-card:focus-visible .jewel-card__veil {
  background: linear-gradient(180deg, rgba(8,6,5,.5) 0%, rgba(8,6,5,.25) 40%, rgba(8,6,5,.9) 100%);
}


.jewel-card__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8,6,5,.1) 0%, transparent 32%, transparent 48%, rgba(8,6,5,.78) 100%);
}
.jewel-card__content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 5;
  padding: 1.1rem 1.05rem 1.15rem;
}
.jewel-card--lifestyle:hover .jewel-card__content {
  z-index: 4;
}
.jewel-card__cat {
  margin: 0;
  font-size: .56rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(239,226,200,.88);
}
.jewel-card h3 {
  margin: .35rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.015em;
}
.jewel-card__meta {
  margin: .35rem 0 0;
  font-size: .74rem;
  color: rgba(250,247,242,.52);
}
.jewel-card__row {
  margin-top: .8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.jewel-card__price {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -.02em;
  color: #efe2c8;
}
.jewel-card__title {
  color: inherit;
  text-decoration: none;
}
.jewel-card__title:hover {
  color: #efe2c8;
}
.jewel-card__cart {
  margin: 0;
  flex: 0 0 auto;
}
.jewel-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #f8f6f1;
  background: var(--color-accent);
  border: 0;
  padding: .55rem .75rem;
  white-space: nowrap;
  cursor: pointer;
  opacity: 1;
  transform: none;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 8px 18px rgba(0,0,0,.28);
}
.jewel-card__cta:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
}
.jewel-card__cta:active {
  transform: translateY(0);
}
.jewel-card__cta--link {
  text-decoration: none;
  color: #161411;
  background: #faf7f2;
}
.jewel-card__cta--link:hover {
  background: var(--color-gold-soft);
  color: #161411;
}
.jewel-card__cart.is-busy .jewel-card__cta {
  opacity: .72;
  pointer-events: none;
}

.jewel-card__content {
  transition: opacity .35s ease;
}
.jewel-card__badge {
  position: absolute;
  left: .75rem;
  top: .75rem;
  z-index: 7;
  padding: .32rem .55rem;
  background: rgba(8,6,5,.5);
  border: 1px solid rgba(250,247,242,.12);
  backdrop-filter: blur(8px);
  font-size: .52rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #efe2c8;
}
.jewel-card__badge--sale {
  background: rgba(8,6,5,.72);
  color: #fff;
  border-color: rgba(255,255,255,.14);
}
.jewel-card__compare {
  display: block;
  text-decoration: line-through;
  opacity: .55;
  font-size: .78em;
  font-weight: 500;
  margin-bottom: .1rem;
}
.jewel-card__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.jewel-lane__foot {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 4.5rem 1fr auto;
  align-items: center;
  gap: 1rem;
  margin-top: .15rem;
}
.jewel-lane__count {
  margin: 0;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: rgba(22,20,17,.35);
}
.jewel-lane__count span { color: var(--color-ink); }
.jewel-lane__hint {
  margin: 0;
  justify-self: end;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(22,20,17,.3);
}
.jewel-lane__dots {
  display: flex;
  justify-content: center;
  gap: .35rem;
}
.jewel-dot {
  width: 1.35rem;
  height: 2px;
  padding: 0;
  border: 0;
  background: rgba(22,20,17,.16);
  cursor: pointer;
  transition: background .25s ease, width .25s ease;
}
.jewel-dot.is-active {
  width: 2.1rem;
  background: var(--color-accent);
}

@media (min-width: 900px) {
  .jewel-card { flex-basis: min(22vw, 250px); }
  .jewel-card.is-hero { flex-basis: min(24vw, 280px); }
  .jewel-lane__track { gap: 1.1rem; }
}
@media (max-width: 767px) {
  .jewel-nav,
  .jewel-lane__fade { display: none; }
  .jewel-lane__foot { grid-template-columns: 4rem 1fr; }
  .jewel-lane__hint { display: none; }
  .jewel-card__row {
    flex-direction: column;
    align-items: stretch;
    gap: .55rem;
  }
  .jewel-card__cta { width: 100%; padding: .65rem .75rem; }
}
@media (max-width: 600px) {
  .jewel-lane__head { align-items: start; flex-direction: column; gap: .85rem; }
  .jewel-card { flex-basis: min(70vw, 240px); aspect-ratio: 5 / 6; }
  .jewel-card.is-hero { flex-basis: min(74vw, 255px); }
}

@media (prefers-reduced-motion: reduce) {
  .jewel-lane__ambient,
  .jewel-card:hover .jewel-card__turn,
    .jewel-card:hover { transform: none; }
  .jewel-card:hover .jewel-card__turn {
    animation: none;
  }
}

.gem-index {
  position: relative;
  padding-block: clamp(3.25rem, 6.5vw, 5.5rem);
  background:
    radial-gradient(ellipse 70% 50% at 12% 0%, rgba(168,135,58,.07), transparent 60%),
    radial-gradient(ellipse 55% 40% at 88% 8%, rgba(142,19,18,.04), transparent 55%),
    linear-gradient(180deg, #f7f3ec 0%, #faf8f4 55%, #f3efe7 100%);
}
.gem-index__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}
.gem-index__eyebrow {
  margin: 0;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.gem-index__rule {
  display: block;
  width: 2.25rem;
  height: 1px;
  margin: .7rem 0 .85rem;
  background: rgba(168,135,58,.7);
}
.gem-index__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  font-weight: 500;
  line-height: .96;
  letter-spacing: -.03em;
  color: var(--color-ink);
}
.gem-index__title em {
  font-style: italic;
  font-weight: 400;
  color: #4a3d30;
}
.gem-index__lead {
  margin: .8rem 0 0;
  max-width: 28rem;
  font-size: .95rem;
  line-height: 1.65;
  color: var(--color-muted);
}
.gem-index__all {
  flex: 0 0 auto;
  margin-bottom: .35rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-ink);
  border-bottom: 1px solid rgba(22,20,17,.22);
  padding-bottom: .2rem;
  transition: color .25s ease, border-color .25s ease;
}
.gem-index__all:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.gem-index__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
.gem-index__cell.is-lead { grid-column: span 1; }

@media (max-width: 767px) {
    .jewel-card:hover .jewel-card__turn {
    animation: gemRingTurn 8s ease-in-out infinite;
  }
}
/* Shop by gemstone — 3D ring emerges like hero */
.gem-index {
  overflow: visible;
}
.gem-index__grid {
  overflow: visible;
}
.gem-index__cell {
  position: relative;
  z-index: 1;
  overflow: visible;
  transition: z-index 0s linear;
}
.gem-index__cell:hover,
.gem-index__cell:focus-within {
  z-index: 12;
}

.gem-chip {
  position: relative;
  display: block;
  height: 100%;
  overflow: visible;
  background: #1a1613;
  outline: none;
  transform-style: preserve-3d;
  transition: transform .55s cubic-bezier(.22,1,.36,1), box-shadow .55s ease;
}
.gem-chip__media {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: visible;
  perspective: 1400px;
  perspective-origin: 50% 42%;
  transform-style: preserve-3d;
  background: #14110f;
  border-radius: 0;
  /* clip photo only via inner mask */
}
.gem-index__cell.is-lead .gem-chip__media { aspect-ratio: 4 / 5; }

.gem-chip__stone {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
  filter: saturate(1.08) contrast(1.03);
  transition: transform .9s cubic-bezier(.22,1,.36,1), filter .5s ease, opacity .5s ease, clip-path .5s ease;
  z-index: 0;
  clip-path: inset(0 round 0);
}

.gem-chip__stage {
  position: absolute;
  left: -8%;
  right: -8%;
  top: -4%;
  bottom: 8%;
  z-index: 3;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, 42px, -120px) scale(.55);
  transform-style: preserve-3d;
  transition:
    opacity .35s ease,
    transform .75s cubic-bezier(.16,1.12,.28,1);
  will-change: transform, opacity;
}
.gem-chip__stage::before {
  content: "";
  position: absolute;
  left: 22%;
  right: 22%;
  bottom: 10%;
  height: 14%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,0,0,.55), transparent 72%);
  filter: blur(10px);
  opacity: 0;
  transform: translateZ(-30px) scale(.6);
  transition: opacity .55s ease, transform .75s cubic-bezier(.16,1.12,.28,1);
}
.gem-chip__turn {
  width: min(102%, 300px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  transform: rotateY(-28deg) rotateX(14deg) scale(.92);
  transition: transform .75s cubic-bezier(.16,1.12,.28,1);
  filter: drop-shadow(0 28px 36px rgba(0,0,0,.55));
}
.gem-chip__ring {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: transparent;
  transform: translateZ(0);
}

.gem-chip__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 38%, rgba(14,11,9,.5) 72%, rgba(10,8,6,.84) 100%);
  pointer-events: none;
  transition: opacity .45s ease, background .45s ease;
}
.gem-chip__glow {
  position: absolute;
  inset: auto -25% -40%;
  height: 75%;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(168,135,58,.5), transparent 65%);
  transition: opacity .5s ease;
}
.gem-index__cell[data-tone="ruby"] .gem-chip__glow { background: radial-gradient(ellipse at 50% 100%, rgba(170,40,55,.6), transparent 65%); }
.gem-index__cell[data-tone="emerald"] .gem-chip__glow { background: radial-gradient(ellipse at 50% 100%, rgba(25,110,70,.6), transparent 65%); }
.gem-index__cell[data-tone="blue-sapphire"] .gem-chip__glow { background: radial-gradient(ellipse at 50% 100%, rgba(35,70,160,.6), transparent 65%); }
.gem-index__cell[data-tone="yellow-sapphire"] .gem-chip__glow { background: radial-gradient(ellipse at 50% 100%, rgba(190,145,40,.55), transparent 65%); }
.gem-index__cell[data-tone="amethyst"] .gem-chip__glow { background: radial-gradient(ellipse at 50% 100%, rgba(110,55,150,.55), transparent 65%); }
.gem-index__cell[data-tone="garnet"] .gem-chip__glow { background: radial-gradient(ellipse at 50% 100%, rgba(140,30,45,.55), transparent 65%); }
.gem-index__cell[data-tone="opal"] .gem-chip__glow { background: radial-gradient(ellipse at 50% 100%, rgba(180,160,140,.5), transparent 65%); }
.gem-index__cell[data-tone="turquoise"] .gem-chip__glow { background: radial-gradient(ellipse at 50% 100%, rgba(40,140,145,.55), transparent 65%); }
.gem-index__cell[data-tone="pearl"] .gem-chip__glow { background: radial-gradient(ellipse at 50% 100%, rgba(210,195,170,.55), transparent 65%); }
.gem-index__cell[data-tone="red-coral"] .gem-chip__glow { background: radial-gradient(ellipse at 50% 100%, rgba(190,70,55,.55), transparent 65%); }
.gem-index__cell[data-tone="cats-eye"] .gem-chip__glow { background: radial-gradient(ellipse at 50% 100%, rgba(150,120,55,.55), transparent 65%); }
.gem-index__cell[data-tone="hessonite"] .gem-chip__glow { background: radial-gradient(ellipse at 50% 100%, rgba(170,95,45,.55), transparent 65%); }

.gem-chip__copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .75rem;
  padding: 1rem .95rem 1.05rem;
  color: #f8f6f1;
}
.gem-chip__copy strong {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1;
  transform: translateY(0);
  transition: transform .4s cubic-bezier(.22,1,.36,1);
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
}
.gem-chip__cta {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(248,246,241,.78);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .35s ease, transform .35s ease, color .25s ease;
  white-space: nowrap;
}
.gem-chip::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  pointer-events: none;
  z-index: 6;
  transition: box-shadow .35s ease;
}

/* Hover — ring steps out into real 3D space */
.gem-chip:hover,
.gem-chip:focus-visible {
  transform: translateY(-14px) scale(1.03);
  box-shadow:
    0 36px 60px rgba(8,6,5,.5),
    0 12px 24px rgba(8,6,5,.25);
}
.gem-chip:hover .gem-chip__stone,
.gem-chip:focus-visible .gem-chip__stone {
  transform: scale(1.16);
  filter: saturate(1.02) contrast(1.04) brightness(.32);
  opacity: .55;
}
.gem-chip:hover .gem-chip__stage,
.gem-chip:focus-visible .gem-chip__stage {
  opacity: 1;
  transform: translate3d(0, -18px, 160px) scale(1.18);
  animation: gemRingFloat 5.5s ease-in-out .55s infinite;
}
.gem-chip:hover .gem-chip__stage::before,
.gem-chip:focus-visible .gem-chip__stage::before {
  opacity: .9;
  transform: translateZ(-40px) scale(1.15);
}
.gem-chip:hover .gem-chip__turn,
.gem-chip:focus-visible .gem-chip__turn {
  transform: rotateY(18deg) rotateX(8deg) scale(1);
  animation: gemRingTurn 9s ease-in-out .4s infinite;
}
.gem-chip:hover .gem-chip__glow,
.gem-chip:focus-visible .gem-chip__glow { opacity: 1; }
.gem-chip:hover .gem-chip__veil,
.gem-chip:focus-visible .gem-chip__veil {
  opacity: 1;
  background:
    linear-gradient(180deg, rgba(8,6,5,.35) 0%, rgba(8,6,5,.15) 35%, rgba(8,6,5,.75) 100%);
}
.gem-chip:hover .gem-chip__copy strong,
.gem-chip:focus-visible .gem-chip__copy strong { transform: translateY(-4px); }
.gem-chip:hover .gem-chip__cta,
.gem-chip:focus-visible .gem-chip__cta {
  opacity: 1;
  transform: translateX(0);
  color: #f3ead2;
}
.gem-chip:hover::after,
.gem-chip:focus-visible::after {
  box-shadow: inset 0 0 0 1px rgba(243,234,210,.4);
}

@keyframes gemRingTurn {
  0% { transform: rotateY(18deg) rotateX(8deg) scale(1); }
  50% { transform: rotateY(-22deg) rotateX(12deg) scale(1.04); }
  100% { transform: rotateY(18deg) rotateX(8deg) scale(1); }
}
@keyframes gemRingFloat {
  0%, 100% { transform: translate3d(0, -18px, 160px) scale(1.18); }
  50% { transform: translate3d(0, -30px, 175px) scale(1.22); }
}

@media (max-width: 599px) {
  .gem-chip__cta { display: none; }
  .gem-chip__copy { padding: .85rem .75rem .9rem; }
  .gem-chip:hover,
  .gem-chip:focus-visible { transform: translateY(-6px) scale(1.015); }
  .gem-chip:hover .gem-chip__stage,
  .gem-chip:focus-visible .gem-chip__stage {
    transform: translate3d(0, -8px, 70px) scale(1.06);
    animation: none;
  }
  .gem-chip:hover .gem-chip__turn,
  .gem-chip:focus-visible .gem-chip__turn {
    animation: gemRingTurn 8s ease-in-out infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gem-chip:hover .gem-chip__turn,
  .gem-chip:focus-visible .gem-chip__turn,
  .gem-chip:hover .gem-chip__stage,
  .gem-chip:focus-visible .gem-chip__stage { animation: none; }
  .gem-chip:hover,
  .gem-chip:focus-visible { transform: none; }
}

.product-grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem 1.4rem; margin-top: 2.75rem;
}

.product-card { display: none; } /* legacy class unused */


/* New Arrivals — after Why RatnaStone */
.new-arrivals {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(142,19,18,.04), transparent 50%),
    linear-gradient(180deg, #f7f2ea 0%, #f3eee6 100%);
}
.new-arrivals__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}
.new-arrivals__title {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-ink, #1c1410);
}
.new-arrivals__all {
  color: var(--color-muted, #6b5e52);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
  white-space: nowrap;
}
.new-arrivals__all:hover { color: var(--color-accent); }
.new-arrivals__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem 1.25rem;
}
.new-arrivals .stone-card__shot {
  aspect-ratio: 1 / 1;
  border-radius: .65rem;
}
.new-arrivals .stone-card__title {
  font-size: .92rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}
.new-arrivals .stone-card__top,
.new-arrivals .stone-card__origin { display: none; }
.new-arrivals .stone-card__price {
  margin-top: .55rem;
  font-size: .95rem;
}
@media (max-width: 980px) {
  .new-arrivals__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .new-arrivals__grid { grid-template-columns: 1fr 1fr; gap: 1.15rem .85rem; }
  .new-arrivals__title { letter-spacing: .1em; font-size: 1rem; }
}

/* Product / stone cards */
.stone-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
}
.stone-card__media {
  position: relative;
  display: block;
  isolation: isolate;
}
.stone-card__shot {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #efe9df;
  border-radius: 1rem;
}
.stone-card__stone,
.stone-card__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity .45s ease, transform .75s cubic-bezier(.22,1,.36,1), filter .45s ease;
}
.stone-card__stone {
  object-fit: cover;
  object-position: center 42%;
  opacity: 1;
  transform: scale(1.02);
  z-index: 1;
}
.stone-card__ring {
  object-fit: contain;
  object-position: center center;
  padding: 10%;
  opacity: 0;
  z-index: 2;
  background: radial-gradient(ellipse at 50% 42%, #2c2621 0%, #12100e 72%);
  transform: scale(.9) rotateY(-10deg);
  filter: drop-shadow(0 14px 24px rgba(0,0,0,.4));
}
.stone-card__cert {
  position: absolute;
  top: .8rem;
  left: .8rem;
  z-index: 4;
  padding: .4rem .65rem;
  background: rgba(250,248,244,.94);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.stone-card__sale {
  position: absolute;
  left: .75rem;
  bottom: .75rem;
  z-index: 4;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  pointer-events: none;
}
.stone-card__media:hover .stone-card__sale,
.stone-card__media:focus-within .stone-card__sale {
  opacity: 0;
  transition: opacity .25s ease;
}
.stone-card__compare {
  text-decoration: line-through;
  color: var(--color-muted, #7a6f64);
  font-weight: 500;
  margin-right: .45rem;
  font-size: .9em;
}
.stone-card__cart {
  margin: 0;
  position: absolute;
  left: .8rem;
  right: .8rem;
  bottom: .8rem;
  z-index: 5;
  transform: translateY(110%);
  opacity: 0;
  transition: transform .45s cubic-bezier(.22,1,.36,1), opacity .35s ease;
}
.stone-card__hint {
  display: block;
  width: 100%;
  border: 0;
  cursor: pointer;
  padding: .85rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #faf7f2;
  background: var(--color-accent);
  transition: background .25s ease, transform .2s ease;
}
.stone-card__hint--link {
  position: absolute;
  left: .8rem;
  right: .8rem;
  bottom: .8rem;
  z-index: 5;
  text-decoration: none;
  background: rgba(16,14,12,.92);
  transform: translateY(110%);
  opacity: 0;
  transition: transform .45s cubic-bezier(.22,1,.36,1), opacity .35s ease, background .25s ease;
}
.stone-card__hint:hover {
  background: var(--color-accent-hover);
}
.stone-card__cart.is-busy .stone-card__hint {
  opacity: .72;
  pointer-events: none;
}
.stone-card__media:hover .stone-card__stone,
.stone-card__media:focus-within .stone-card__stone {
  opacity: 0;
  transform: scale(1.08);
  filter: brightness(.7);
}
.stone-card__media:hover .stone-card__ring,
.stone-card__media:focus-within .stone-card__ring {
  opacity: 1;
  transform: scale(1) rotateY(6deg);
}

/* Lifestyle hover on listing cards — same real 3D stage as homepage */
.stone-card--lifestyle .stone-card__shot {
  overflow: visible;
  background: #14110f;
  perspective: 1400px;
  perspective-origin: 50% 42%;
  transform-style: preserve-3d;
}
.stone-card--lifestyle .stone-card__media:hover .stone-card__stone,
.stone-card--lifestyle .stone-card__media:focus-within .stone-card__stone {
  opacity: .18;
  transform: scale(1.06);
  filter: brightness(.28) saturate(.85);
}
.stone-card__stage {
  position: absolute;
  left: -6%;
  right: -6%;
  top: 0;
  bottom: 12%;
  z-index: 6;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, 40px, -120px) scale(.55);
  transform-style: preserve-3d;
  transition: opacity .35s ease, transform .8s cubic-bezier(.16,1.12,.28,1);
}
.stone-card__stage::before {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: 8%;
  height: 14%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,0,0,.55), transparent 72%);
  filter: blur(10px);
  opacity: 0;
  transform: translateZ(-36px) scale(.55);
  transition: opacity .55s ease, transform .8s cubic-bezier(.16,1.12,.28,1);
}
.stone-card--lifestyle .stone-card__media:hover .stone-card__stage,
.stone-card--lifestyle .stone-card__media:focus-within .stone-card__stage {
  opacity: 1;
  transform: translate3d(0, -8px, 100px) scale(1);
  animation: jewelLifeFloat 4.8s ease-in-out .3s infinite;
}
.stone-card--lifestyle .stone-card__media:hover .stone-card__stage::before,
.stone-card--lifestyle .stone-card__media:focus-within .stone-card__stage::before {
  opacity: 1;
  transform: translateZ(-36px) scale(1);
}
.stone-card__orbit {
  width: min(88%, 230px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  transform: rotateY(-28deg) rotateX(14deg) scale(.92);
  transition: transform .8s cubic-bezier(.16,1.12,.28,1);
  filter: drop-shadow(0 22px 32px rgba(0,0,0,.55));
}
.stone-card--lifestyle .stone-card__media:hover .stone-card__orbit,
.stone-card--lifestyle .stone-card__media:focus-within .stone-card__orbit {
  transform: rotateY(10deg) rotateX(8deg) scale(1);
  animation: jewelLifeSpin 7.5s ease-in-out .3s infinite;
}
.stone-card__life {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 50%;
  background: #14110f;
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,.14),
    0 0 0 1px rgba(0,0,0,.3);
  transform: translateZ(20px);
  filter: saturate(1.08) contrast(1.05) brightness(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .stone-card--lifestyle .stone-card__media:hover .stone-card__stage,
  .stone-card--lifestyle .stone-card__media:focus-within .stone-card__stage,
  .stone-card--lifestyle .stone-card__media:hover .stone-card__orbit,
  .stone-card--lifestyle .stone-card__media:focus-within .stone-card__orbit {
    animation: none;
  }
}

.stone-card__media:hover .stone-card__cart,
.stone-card__media:focus-within .stone-card__cart,
.stone-card__media:hover .stone-card__hint--link,
.stone-card__media:focus-within .stone-card__hint--link {
  transform: translateY(0);
  opacity: 1;
}
.stone-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-top: 1.05rem;
  gap: 0;
}
.stone-card__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .75rem;
}
.stone-card__cat {
  margin: 0;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.stone-card__carat {
  margin: 0;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--color-muted);
}
.stone-card__title {
  margin: .4rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -.015em;
  color: var(--color-ink);
}
.stone-card__title a:hover { color: var(--color-accent); }
.stone-card__origin {
  margin: .4rem 0 0;
  font-size: .8rem;
  line-height: 1.4;
  color: var(--color-muted);
}
.stone-card__price {
  margin-top: auto;
  padding-top: .85rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  font-weight: 500;
  letter-spacing: -.02em;
  color: var(--color-ink);
}
@media (max-width: 767px) {
  .stone-card__cart,
  .stone-card__hint--link {
    position: static;
    transform: none;
    opacity: 1;
    margin-top: .7rem;
    left: auto;
    right: auto;
    bottom: auto;
  }
  .stone-card__hint,
  .stone-card__hint--link {
    padding: .75rem 1rem;
    text-align: center;
  }
  .stone-card__hint--link {
    display: block;
    background: var(--color-accent);
    color: #faf7f2;
  }
  .stone-card__media:hover .stone-card__stone,
  .stone-card__media:focus-within .stone-card__stone {
    opacity: 1;
    filter: none;
    transform: scale(1.02);
  }
  .stone-card__media:hover .stone-card__ring,
  .stone-card__media:focus-within .stone-card__ring { opacity: 0; }
}

@media (max-width: 767px) {
  .shop-strip__all { margin-left: 0; }
  .product-cta {
    transform: none; opacity: 1; position: static; margin-top: .85rem;
    background: transparent; color: var(--color-accent); padding: 0; text-align: left;
  }
  .product-frame::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

.surface { background: var(--color-surface); }

/* Why RatnaStone */
.why-rs {
  position: relative;
  padding-block: clamp(3.5rem, 7vw, 5.75rem);
  background:
    radial-gradient(ellipse 60% 45% at 100% 0%, rgba(142,19,18,.05), transparent 55%),
    #faf8f4;
  border-block: 1px solid rgba(210,201,187,.55);
}
.why-rs__head { max-width: 36rem; margin-bottom: 2.5rem; }
.why-rs__eyebrow {
  margin: 0;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.why-rs__rule {
  display: block;
  width: 2.25rem;
  height: 1px;
  margin: .7rem 0 .85rem;
  background: rgba(168,135,58,.7);
}
.why-rs__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  font-weight: 500;
  line-height: .96;
  letter-spacing: -.03em;
  color: var(--color-ink);
}
.why-rs__title em {
  font-style: italic;
  font-weight: 400;
  color: #4a3d30;
}
.why-rs__lead {
  margin: .85rem 0 0;
  font-size: .98rem;
  line-height: 1.65;
  color: var(--color-muted);
}
.why-rs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  counter-reset: none;
}
.why-rs__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem 1.35rem;
  align-items: start;
  padding: 1.65rem 0;
  border-top: 1px solid rgba(210,201,187,.85);
  transition: background .35s ease;
}
.why-rs__item:last-child { border-bottom: 1px solid rgba(210,201,187,.85); }
.why-rs__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.04em;
  color: rgba(168,135,58,.55);
  transition: color .35s ease, transform .45s cubic-bezier(.22,1,.36,1);
}
.why-rs__body h3 {
  margin: .15rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 500;
  letter-spacing: -.015em;
  line-height: 1.15;
  color: var(--color-ink);
}
.why-rs__body p {
  margin: .7rem 0 0;
  max-width: 28rem;
  font-size: .94rem;
  line-height: 1.7;
  color: var(--color-muted);
}
.why-rs__item:hover .why-rs__num {
  color: var(--color-gold);
  transform: translateY(-2px);
}
@media (min-width: 768px) {
  .why-rs__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(210,201,187,.85);
    border-bottom: 1px solid rgba(210,201,187,.85);
  }
  .why-rs__item {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    padding: 2rem 1.6rem 2.15rem;
    border-top: 0;
    border-bottom: 0;
    border-left: 1px solid rgba(210,201,187,.85);
  }
  .why-rs__item:first-child {
    border-left: 0;
    padding-left: 0;
  }
  .why-rs__item:last-child {
    border-bottom: 0;
    padding-right: 0;
  }
  .why-rs__body p { max-width: 22rem; }
}


/* Traditional & Vedic */
.vedic-block {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(3.5rem, 7vw, 5.75rem);
  background: #14110f;
  color: #f8f6f1;
}
.vedic-block__glow {
  position: absolute;
  inset: -20% 0 auto;
  height: 70%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 15% 30%, rgba(168,135,58,.14), transparent 60%),
    radial-gradient(ellipse 45% 40% at 90% 10%, rgba(142,19,18,.18), transparent 55%);
}
.vedic-block .container { position: relative; z-index: 1; }
.vedic-block__head { max-width: 34rem; margin-bottom: 2.25rem; }
.vedic-block__eyebrow {
  margin: 0;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(243,234,210,.72);
}
.vedic-block__rule {
  display: block;
  width: 2.25rem;
  height: 1px;
  margin: .7rem 0 .85rem;
  background: rgba(168,135,58,.75);
}
.vedic-block__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  font-weight: 500;
  line-height: .96;
  letter-spacing: -.03em;
  color: #f8f6f1;
}
.vedic-block__title em {
  font-style: italic;
  font-weight: 400;
  color: #e4d4a8;
}
.vedic-block__lead {
  margin: .85rem 0 0;
  font-size: .98rem;
  line-height: 1.65;
  color: rgba(248,246,241,.62);
}
.vedic-block__paths {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(248,246,241,.12);
}
.vedic-path {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem 1.25rem;
  align-items: center;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(248,246,241,.12);
  color: inherit;
  transition: background .3s ease, padding .3s ease;
}
.vedic-path__num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -.02em;
  color: rgba(168,135,58,.7);
  min-width: 2rem;
  transition: color .3s ease;
}
.vedic-path__copy {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  min-width: 0;
}
.vedic-path__copy strong {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -.015em;
  line-height: 1.1;
  color: #f8f6f1;
  transition: color .3s ease;
}
.vedic-path__copy span {
  font-size: .88rem;
  line-height: 1.5;
  color: rgba(248,246,241,.52);
}
.vedic-path__go {
  font-size: 1.15rem;
  color: rgba(243,234,210,.55);
  transform: translateX(0);
  transition: transform .35s cubic-bezier(.22,1,.36,1), color .3s ease;
}
.vedic-path:hover .vedic-path__num,
.vedic-path:focus-visible .vedic-path__num { color: var(--color-gold); }
.vedic-path:hover .vedic-path__copy strong,
.vedic-path:focus-visible .vedic-path__copy strong { color: #fff; }
.vedic-path:hover .vedic-path__go,
.vedic-path:focus-visible .vedic-path__go {
  color: #f3ead2;
  transform: translateX(6px);
}
.vedic-block__foot {
  margin: 1.75rem 0 0;
}
.vedic-block__foot a {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(243,234,210,.8);
  border-bottom: 1px solid rgba(243,234,210,.35);
  padding-bottom: .2rem;
  transition: color .25s ease, border-color .25s ease;
}
.vedic-block__foot a:hover {
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
@media (min-width: 768px) {
  .vedic-path {
    gap: 1.5rem 1.75rem;
    padding: 1.55rem .35rem 1.55rem 0;
  }
  .vedic-path:hover,
  .vedic-path:focus-visible {
    padding-left: .5rem;
  }
}

/* Customer reviews */
.voices {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(3.75rem, 7.5vw, 6.25rem);
  background: #f7f3ec;
}
.voices__wash {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 45% at 8% 20%, rgba(168,135,58,.09), transparent 58%),
    radial-gradient(ellipse 40% 35% at 92% 80%, rgba(142,19,18,.05), transparent 55%),
    linear-gradient(180deg, #faf8f4 0%, #f7f3ec 55%, #f3efe7 100%);
}
.voices .container { position: relative; z-index: 1; }
.voices__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 2.6rem;
  max-width: 38rem;
}
.voices__eyebrow {
  margin: 0;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.voices__rule {
  display: block;
  width: 2.25rem;
  height: 1px;
  margin: .7rem 0 .85rem;
  background: rgba(168,135,58,.7);
}
.voices__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5.2vw, 3.35rem);
  font-weight: 500;
  line-height: .95;
  letter-spacing: -.03em;
  color: var(--color-ink);
}
.voices__title em {
  font-style: italic;
  font-weight: 400;
  color: #4a3d30;
}
.voices__lead {
  margin: .9rem 0 0;
  font-size: .98rem;
  line-height: 1.65;
  color: var(--color-muted);
}
.voices__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.voices__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.75rem;
  padding: 2rem 0 1.9rem;
  border-top: 1px solid rgba(210,201,187,.9);
  transition: background .35s ease;
}
.voices__item:last-child { border-bottom: 1px solid rgba(210,201,187,.9); }
.voices__mark {
  position: absolute;
  top: 1.35rem;
  right: 0;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 8vw, 6rem);
  font-weight: 500;
  line-height: .7;
  color: rgba(168,135,58,.18);
  pointer-events: none;
  user-select: none;
  transition: color .4s ease, transform .5s cubic-bezier(.22,1,.36,1);
}
.voices__num {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: rgba(168,135,58,.75);
  transition: color .35s ease;
}
.voices__quote {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 26rem;
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 2.4vw, 1.55rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.42;
  letter-spacing: -.015em;
  color: var(--color-ink);
  transition: transform .45s cubic-bezier(.22,1,.36,1);
}
.voices__who {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .35rem;
  padding-top: .15rem;
}
.voices__who::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  margin-bottom: .55rem;
  background: rgba(168,135,58,.55);
  transform: scaleX(1);
  transform-origin: left center;
  transition: width .4s cubic-bezier(.22,1,.36,1), background .3s ease;
}
.voices__who strong {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-ink);
}
.voices__who span {
  font-size: .78rem;
  letter-spacing: .02em;
  color: var(--color-muted);
}
.voices__item:hover .voices__mark,
.voices__item:focus-within .voices__mark {
  color: rgba(168,135,58,.32);
  transform: translateY(-4px);
}
.voices__item:hover .voices__num,
.voices__item:focus-within .voices__num { color: var(--color-gold); }
.voices__item:hover .voices__quote,
.voices__item:focus-within .voices__quote { transform: translateY(-3px); }
.voices__item:hover .voices__who::before,
.voices__item:focus-within .voices__who::before {
  width: 2.75rem;
  background: var(--color-gold);
}
@media (min-width: 768px) {
  .voices__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(210,201,187,.9);
    border-bottom: 1px solid rgba(210,201,187,.9);
  }
  .voices__item {
    min-height: 100%;
    padding: 2.35rem 1.65rem 2.25rem;
    border-top: 0;
    border-bottom: 0;
    border-left: 1px solid rgba(210,201,187,.9);
  }
  .voices__item:first-child {
    border-left: 0;
    padding-left: 0;
  }
  .voices__item:last-child { padding-right: 0; }
  .voices__mark {
    top: 1.6rem;
    right: 1.1rem;
  }
  .voices__item:first-child .voices__mark { right: .35rem; }
  .voices__quote { max-width: 20.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  .voices__mark,
  .voices__quote,
  .voices__who::before { transition: none; }
}


/* Full-bleed section banners — hero language, shorter */
.promo-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(28rem, 58vw, 38rem);
  display: grid;
  background: #100e0c;
  color: #f8f6f1;
}
.promo-banner--compact { min-height: clamp(24rem, 48vw, 32rem); }
.promo-banner__media,
.promo-banner__veil,
.promo-banner__glow {
  position: absolute;
  inset: 0;
}
.promo-banner__media {
  z-index: 0;
  overflow: hidden;
}
.promo-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 48%;
  transform: scale(1.08);
  filter: saturate(1.12) contrast(1.04) brightness(.94);
  animation: bannerKen 14s cubic-bezier(.25,.1,.25,1) infinite alternate;
  will-change: transform;
}
.promo-banner__veil {
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg,
      rgba(8,6,5,.88) 0%,
      rgba(8,6,5,.52) 28%,
      rgba(8,6,5,.12) 52%,
      transparent 70%
    ),
    linear-gradient(180deg,
      rgba(8,6,5,.28) 0%,
      transparent 30%,
      transparent 58%,
      rgba(8,6,5,.72) 100%
    );
}
.promo-banner__glow {
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: .9;
  background: radial-gradient(ellipse 48% 55% at 76% 52%, rgba(201,142,63,.18), transparent 70%);
}
.promo-banner--sapphire .promo-banner__glow {
  background: radial-gradient(ellipse 48% 55% at 74% 52%, rgba(40,80,190,.3), transparent 70%);
}
.promo-banner--emerald .promo-banner__glow {
  background: radial-gradient(ellipse 48% 55% at 74% 52%, rgba(30,140,90,.28), transparent 70%);
}
.promo-banner__ring {
  position: absolute;
  z-index: 2;
  right: clamp(1%, 4vw, 6%);
  bottom: clamp(4%, 8vw, 10%);
  width: min(42vw, 360px);
  aspect-ratio: 1;
  pointer-events: none;
  filter: drop-shadow(0 22px 36px rgba(0,0,0,.45));
  transform-origin: 50% 60%;
}
.promo-banner__ring:not(.is-3d) {
  animation: bannerRing 7s ease-in-out infinite;
}
.promo-banner__ring-canvas {
  width: 100%;
  height: 100%;
  display: none;
  vertical-align: top;
}
.promo-banner__ring.is-3d .promo-banner__ring-canvas {
  display: block;
}
.promo-banner__ring-fallback,
.promo-banner__ring img {
  width: 100%;
  height: auto;
  display: block;
}
.promo-banner__ring.is-3d .promo-banner__ring-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  pointer-events: none;
}
.promo-banner__stone {
  position: absolute;
  z-index: 2;
  right: clamp(0%, 3vw, 5%);
  top: 50%;
  width: min(48vw, 420px);
  aspect-ratio: 1;
  pointer-events: none;
  filter: drop-shadow(0 28px 40px rgba(0,0,0,.5));
  transform: translateY(-48%);
  transform-origin: 50% 55%;
}
.promo-banner__stone:not(.is-3d) {
  animation: bannerStone 8s ease-in-out infinite;
}
.promo-banner__stone-canvas {
  width: 100%;
  height: 100%;
  display: none;
  vertical-align: top;
}
.promo-banner__stone.is-3d .promo-banner__stone-canvas {
  display: block;
}
.promo-banner__stone-fallback {
  width: 100%;
  height: auto;
  display: block;
}
.promo-banner__stone.is-3d .promo-banner__stone-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  pointer-events: none;
}
.promo-banner__stage {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: end;
  width: 100%;
  min-height: inherit;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  pointer-events: none;
}
.promo-banner__stage .container,
.promo-banner__stage a { pointer-events: auto; }
.promo-banner__copy { max-width: 34rem; }
.promo-banner__brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 10vw, 6.2rem);
  font-weight: 500;
  line-height: .88;
  letter-spacing: -.04em;
  color: #faf7f2;
  text-shadow: 0 18px 50px rgba(0,0,0,.4);
}
.promo-banner__copy h2 {
  margin: 1.05rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -.015em;
  color: rgba(250,247,242,.92);
}
.promo-banner__copy h2 em {
  font-style: italic;
  color: #efe2c8;
}
.promo-banner__lead {
  margin: 1rem 0 0;
  max-width: 26rem;
  font-size: .98rem;
  line-height: 1.65;
  color: rgba(250,247,242,.7);
}
.promo-banner__actions { margin-top: 1.65rem; }
.promo-banner .btn-hero {
  min-width: 11rem;
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
}
@keyframes bannerKen {
  from { transform: scale(1.08) translate3d(0, 0, 0); }
  to { transform: scale(1.14) translate3d(-1.5%, -1%, 0); }
}
@keyframes bannerRing {
  0%, 100% { transform: rotateY(-14deg) rotateX(6deg) translateY(0); }
  50% { transform: rotateY(14deg) rotateX(8deg) translateY(-6px); }
}
@keyframes bannerStone {
  0%, 100% { transform: translateY(-48%) rotateY(-12deg) rotateX(5deg); }
  50% { transform: translateY(calc(-48% - 8px)) rotateY(12deg) rotateX(7deg); }
}
@media (max-width: 900px) {
  .promo-banner__ring {
    width: min(42vw, 200px);
    right: 2%;
    bottom: 18%;
    opacity: .85;
  }
  .promo-banner__stone {
    width: min(52vw, 300px);
    right: 0;
  }
}
@media (max-width: 640px) {
  .promo-banner,
  .promo-banner--compact { min-height: 26rem; }
  .promo-banner__media img { object-position: 68% 42%; }
  .promo-banner__veil {
    background:
      linear-gradient(180deg,
        rgba(8,6,5,.35) 0%,
        rgba(8,6,5,.2) 28%,
        rgba(8,6,5,.55) 58%,
        rgba(8,6,5,.88) 100%
      ),
      linear-gradient(105deg,
        rgba(8,6,5,.72) 0%,
        rgba(8,6,5,.2) 55%,
        transparent 78%
      );
  }
  .promo-banner__ring { display: none; }
  .promo-banner__stone {
    width: min(62vw, 260px);
    right: -2%;
    opacity: .92;
  }
  .promo-banner__brand { font-size: clamp(3.2rem, 14vw, 4.4rem); }
  .promo-banner .btn-hero { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .promo-banner__media img,
  .promo-banner__ring,
  .promo-banner__stone { animation: none; }
  .promo-banner__media img { transform: scale(1.06); }
}

/* FAQ */
.ask {
  position: relative;
  padding-block: clamp(3.5rem, 7vw, 5.75rem);
  background:
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(142,19,18,.045), transparent 55%),
    #faf8f4;
  border-top: 1px solid rgba(210,201,187,.55);
}
.ask__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}
.ask__eyebrow {
  margin: 0;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.ask__rule {
  display: block;
  width: 2.25rem;
  height: 1px;
  margin: .7rem 0 .85rem;
  background: rgba(168,135,58,.7);
}
.ask__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  font-weight: 500;
  line-height: .96;
  letter-spacing: -.03em;
  color: var(--color-ink);
}
.ask__title em {
  font-style: italic;
  font-weight: 400;
  color: #4a3d30;
}
.ask__lead {
  margin: .85rem 0 0;
  max-width: 32rem;
  font-size: .98rem;
  line-height: 1.65;
  color: var(--color-muted);
}
.ask__all {
  flex: 0 0 auto;
  margin-bottom: .35rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-ink);
  border-bottom: 1px solid rgba(22,20,17,.22);
  padding-bottom: .2rem;
  transition: color .25s ease, border-color .25s ease;
}
.ask__all:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.ask__list {
  border-top: 1px solid rgba(210,201,187,.9);
}
.ask__row {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "num q"
    ".   a";
  column-gap: 1rem;
  row-gap: .65rem;
  padding: 1.45rem 0 1.5rem;
  border-bottom: 1px solid rgba(210,201,187,.9);
  transition: background .3s ease;
}
.ask__num {
  grid-area: num;
  padding-top: .2rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(168,135,58,.7);
  transition: color .3s ease;
}
.ask__q {
  grid-area: q;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -.015em;
  color: var(--color-ink);
}
.ask__a {
  grid-area: a;
  margin: 0;
  max-width: 40rem;
  font-size: .94rem;
  line-height: 1.7;
  color: var(--color-muted);
}
.ask__row:hover .ask__num { color: var(--color-gold); }
@media (min-width: 768px) {
  .ask__row {
    grid-template-columns: 2.5rem minmax(0, .95fr) minmax(0, 1.25fr);
    grid-template-areas: "num q a";
    column-gap: 1.75rem;
    align-items: start;
    padding: 1.65rem 0 1.7rem;
  }
  .ask__q { padding-right: .5rem; }
  .ask__a { max-width: none; padding-top: .2rem; }
}

/* keep generic .faq usable on /faq page */
.faq dt { font-family: var(--font-display); font-size: 1.25rem; margin: 0; }
.faq dd { margin: .5rem 0 0; color: var(--color-muted); font-size: .95rem; line-height: 1.7; }
.faq .row { display: grid; gap: .75rem; padding: 1.5rem 0; border-bottom: 1px solid var(--color-border); }
.faq .row:first-child { border-top: 1px solid var(--color-border); }

.site-footer { background: var(--color-ink); color: #f8f6f1; margin-top: auto; }
.footer-grid { display: grid; gap: 2.5rem; padding: 4rem 0; }
.footer-grid h2 { font-size: .7rem; text-transform: uppercase; letter-spacing: .18em; color: var(--color-gold); margin: 0 0 1.25rem; }
.footer-grid a { color: rgba(255,255,255,.65); font-size: .95rem; display: inline-block; margin-bottom: .55rem; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.25rem 0; font-size: .75rem; color: rgba(255,255,255,.4); display: flex; flex-wrap: wrap; gap: .75rem; justify-content: space-between; }

.breadcrumbs { font-size: .85rem; color: var(--color-muted); margin-bottom: 1.5rem; }
.breadcrumbs a:hover { color: var(--color-accent); }
.page-title { font-family: var(--font-display); font-size: clamp(2.1rem, 4vw, 3rem); margin: 0; font-weight: 500; line-height: 1.1; letter-spacing: -.02em; }
.prose { color: var(--color-muted); line-height: 1.8; }
.prose p { margin: 0 0 1rem; }
.prose a { color: var(--color-accent); text-decoration: underline; text-underline-offset: 3px; }

/* Atelier shop — gemstones listing */
.atelier { background: #faf8f4; }
.atelier-mast {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(20rem, 42vw, 26rem);
  color: #f8f6f1;
  background: #100e0c;
}
.atelier-mast__media,
.atelier-mast__veil,
.atelier-mast__glow { position: absolute; inset: 0; }
.atelier-mast__media { z-index: 0; overflow: hidden; }
.atelier-mast__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 45%;
  transform: scale(1.06);
  filter: saturate(1.1) contrast(1.04) brightness(.92);
}
.atelier-mast__veil {
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg,
      rgba(8,6,5,.9) 0%,
      rgba(8,6,5,.55) 32%,
      rgba(8,6,5,.15) 58%,
      transparent 76%
    ),
    linear-gradient(180deg,
      rgba(8,6,5,.35) 0%,
      transparent 40%,
      rgba(8,6,5,.78) 100%
    );
}
.atelier-mast__glow {
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
  background: radial-gradient(ellipse 45% 55% at 72% 50%, rgba(190,45,55,.22), transparent 70%);
}
.atelier-mast__stage {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  min-height: inherit;
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
}
.atelier-mast__crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin: 0 0 1.25rem;
  font-size: .72rem;
  color: rgba(248,246,241,.55);
}
.atelier-mast__crumbs a:hover { color: #f3ead2; }
.atelier-mast__brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 500;
  line-height: .88;
  letter-spacing: -.04em;
  color: #faf7f2;
  text-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.atelier-mast__title {
  margin: .85rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 2.05rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.015em;
  color: rgba(250,247,242,.92);
}
.atelier-mast__title em {
  font-style: italic;
  color: #efe2c8;
}
.atelier-mast__lead {
  margin: .85rem 0 0;
  max-width: 30rem;
  font-size: .95rem;
  line-height: 1.65;
  color: rgba(248,246,241,.68);
}
.atelier-mast__modes {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1.4rem;
  margin-top: 1.5rem;
}
.atelier-mast__modes a {
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(248,246,241,.45);
  border-bottom: 1px solid transparent;
  padding-bottom: .15rem;
  transition: color .25s ease, border-color .25s ease;
}
.atelier-mast__modes a:hover { color: #f8f6f1; }
.atelier-mast__modes a.is-active {
  color: #f3ead2;
  border-color: rgba(243,234,210,.55);
}

.atelier-body {
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(3.5rem, 7vw, 5.5rem);
}
.atelier-stones {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem .65rem;
  margin-bottom: 2rem;
}
.atelier-stone {
  display: block;
  text-align: center;
  min-width: 0;
}
.atelier-stone__img {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: #1a1613;
}
.atelier-stone__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.22,1,.36,1), filter .4s ease;
  filter: saturate(1.05);
}
.atelier-stone__name {
  display: block;
  margin-top: .55rem;
  font-family: var(--font-display);
  font-size: clamp(.95rem, 1.6vw, 1.15rem);
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--color-ink);
  transition: color .25s ease;
}
.atelier-stone:hover .atelier-stone__img img {
  transform: scale(1.08);
  filter: saturate(1.12);
}
.atelier-stone:hover .atelier-stone__name { color: var(--color-accent); }

.atelier-layout {
  display: grid;
  gap: 2rem;
}
.atelier-rail { min-width: 0; }
.atelier-filters {
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(210,201,187,.9);
}
.atelier-filters__label {
  margin: 0 0 1.15rem;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.atelier-filters__field {
  display: block;
  margin-bottom: 1rem;
}
.atelier-filters__field span,
.atelier-filters__set legend {
  display: block;
  margin-bottom: .4rem;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--color-muted);
}
.atelier-filters__set {
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
}
.atelier-filters__field select,
.atelier-filters__pair input {
  width: 100%;
  padding: .75rem .8rem;
  border: 0;
  border-bottom: 1px solid rgba(210,201,187,.95);
  background: transparent;
  font: inherit;
  font-size: .9rem;
  color: var(--color-ink);
  border-radius: 0;
  appearance: none;
  transition: border-color .2s ease;
}
.atelier-filters__field select:focus,
.atelier-filters__pair input:focus {
  outline: none;
  border-bottom-color: var(--color-gold);
}
.atelier-filters__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
}
.atelier-filters__submit {
  display: block;
  width: 100%;
  margin-top: .35rem;
  padding: .95rem 1rem;
  border: 0;
  background: var(--color-ink);
  color: #f8f6f1;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.atelier-filters__submit:hover {
  background: #2a2420;
  transform: translateY(-1px);
}
.atelier-filters__reset {
  display: block;
  margin-top: .85rem;
  text-align: center;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.atelier-filters__reset:hover { color: var(--color-accent); }

.atelier-bar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid rgba(210,201,187,.9);
}
.atelier-bar__count {
  margin: 0;
  font-size: .88rem;
  color: var(--color-muted);
}
.atelier-bar__count strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--color-ink);
  margin: 0 .2rem;
}
.atelier-bar__clear {
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.atelier-bar__clear:hover { color: var(--color-accent); }

.atelier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem 1.35rem;
}
.atelier-grid .stone-card__shot {
  background: #f0ebe3;
  border-radius: 1rem;
  box-shadow: inset 0 0 0 1px rgba(22,20,17,.04);
}

.atelier-pages {
  margin-top: 2.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(210,201,187,.9);
}
.page-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .65rem 1rem;
}
.page-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-nav__btn,
.page-nav__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.55rem;
  height: 2.55rem;
  padding: 0 .75rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-ink);
  text-decoration: none;
  border: 1px solid var(--color-border-strong);
  background: #fff;
  border-radius: 4px;
  transition: color .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.page-nav__num {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}
.page-nav__btn:hover,
.page-nav__num:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
  background: var(--color-accent-soft);
}
.page-nav__num.is-current {
  color: #fff;
  background: var(--color-accent);
  border-color: var(--color-accent);
  box-shadow: 0 6px 16px rgba(142, 19, 18, .22);
}
.page-nav__btn.is-disabled {
  color: #9a938a;
  background: transparent;
  border-color: transparent;
  opacity: 1;
  pointer-events: none;
}
.page-nav__gap {
  color: var(--color-muted);
  padding: 0 .35rem;
  font-weight: 600;
}

.atelier-empty {
  padding: 4rem 0;
  text-align: center;
}
.atelier-empty p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-ink);
}
.atelier-empty a {
  display: inline-block;
  margin-top: 1rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-gold);
}

@media (min-width: 480px) {
  .atelier-stones { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .8rem .7rem; }
}
@media (min-width: 640px) {
  .atelier-stones { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .85rem .75rem; }
  .atelier-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .atelier-stones { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .atelier-stones { grid-template-columns: repeat(12, 1fr); gap: .55rem; }
  .atelier-stone__name { font-size: .78rem; }
  .atelier-layout {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
  }
  .atelier-rail {
    position: sticky;
    top: 5.5rem;
  }
  .atelier-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem 1.4rem; }
}
@media (max-width: 639px) {
  .atelier-mast { min-height: 20rem; }
  .atelier-mast__media img { object-position: 65% 40%; }
  .atelier-mast__title { font-size: clamp(2rem, 9vw, 2.6rem); }
  .atelier-mast__lead { font-size: .92rem; }
  .atelier-body { padding-top: 1.35rem; }
  .atelier-stone__img { border-radius: .35rem; }
}

.listing-layout { display: grid; gap: 2rem; margin-top: 2.5rem; }
.filters { border: 1px solid var(--color-border); padding: 1.25rem; background: #fff; }
.filters label { display: block; font-size: .85rem; margin-bottom: 1rem; color: var(--color-muted); }
.filters select, .filters input { margin-top: .35rem; }

/* Product detail page */
.pdp {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(1.35rem, 2.8vw, 2rem) 0 clamp(3.5rem, 7vw, 5.75rem);
  background: #faf8f4;
}
.pdp__wash {
  position: absolute;
  inset: 0 0 auto;
  height: min(70vh, 42rem);
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 18% 8%, rgba(168,135,58,.08), transparent 58%),
    radial-gradient(ellipse 40% 35% at 88% 12%, rgba(142,19,18,.04), transparent 55%);
}
.pdp[data-tone="ruby"] .pdp__wash {
  background:
    radial-gradient(ellipse 55% 50% at 18% 8%, rgba(170,40,55,.1), transparent 58%),
    radial-gradient(ellipse 40% 35% at 88% 12%, rgba(168,135,58,.05), transparent 55%);
}
.pdp[data-tone="emerald"] .pdp__wash {
  background:
    radial-gradient(ellipse 55% 50% at 18% 8%, rgba(25,110,70,.1), transparent 58%),
    radial-gradient(ellipse 40% 35% at 88% 12%, rgba(168,135,58,.05), transparent 55%);
}
.pdp[data-tone="blue-sapphire"] .pdp__wash {
  background:
    radial-gradient(ellipse 55% 50% at 18% 8%, rgba(35,70,160,.11), transparent 58%),
    radial-gradient(ellipse 40% 35% at 88% 12%, rgba(168,135,58,.05), transparent 55%);
}
.pdp[data-tone="yellow-sapphire"] .pdp__wash {
  background:
    radial-gradient(ellipse 55% 50% at 18% 8%, rgba(190,145,40,.12), transparent 58%),
    radial-gradient(ellipse 40% 35% at 88% 12%, rgba(142,19,18,.04), transparent 55%);
}
.pdp .container { position: relative; z-index: 1; }
.pdp__crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
  margin: 0 0 1.5rem;
  font-size: .74rem;
  color: var(--color-muted);
}
.pdp__crumbs a:hover { color: var(--color-accent); }
.pdp__stage {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}
.pdp-gallery__stage {
  position: relative;
  width: 100%;
  height: clamp(16rem, 38vw, 22rem);
  overflow: hidden;
  border-radius: 1.15rem;
  background: #efe9df;
  box-shadow:
    inset 0 0 0 1px rgba(22,20,17,.05),
    0 18px 40px rgba(22,20,17,.07);
}
.pdp-gallery__glow {
  position: absolute;
  inset: auto -15% -30%;
  height: 55%;
  z-index: 0;
  pointer-events: none;
  opacity: .55;
  background: radial-gradient(ellipse at 50% 100%, rgba(168,135,58,.22), transparent 65%);
}
.pdp[data-tone="ruby"] .pdp-gallery__glow {
  background: radial-gradient(ellipse at 50% 100%, rgba(170,40,55,.28), transparent 65%);
}
.pdp[data-tone="emerald"] .pdp-gallery__glow {
  background: radial-gradient(ellipse at 50% 100%, rgba(25,110,70,.26), transparent 65%);
}
.pdp[data-tone="blue-sapphire"] .pdp-gallery__glow {
  background: radial-gradient(ellipse at 50% 100%, rgba(35,70,160,.28), transparent 65%);
}
.pdp-gallery__stone,
.pdp-gallery__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity .5s ease, transform .8s cubic-bezier(.22,1,.36,1);
}
.pdp-gallery__stone {
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transform: scale(1.04);
  z-index: 1;
}
.pdp-gallery__stone.is-active {
  opacity: 1;
  transform: scale(1);
}
.pdp-gallery__ring {
  object-fit: contain;
  object-position: center center;
  padding: 11%;
  opacity: 0;
  z-index: 2;
  background: radial-gradient(ellipse at 50% 42%, #2c2621 0%, #12100e 72%);
  transform: scale(.92) rotateY(-8deg);
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.35));
}
.pdp-gallery__ring.is-active {
  opacity: 1;
  transform: scale(1) rotateY(0deg);
}
.pdp-gallery__cert {
  position: absolute;
  top: .95rem;
  left: .95rem;
  z-index: 4;
  padding: .42rem .72rem;
  background: rgba(250,248,244,.95);
  backdrop-filter: blur(6px);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-accent);
  border-radius: .35rem;
}
.pdp-gallery__caption {
  position: absolute;
  right: .95rem;
  bottom: .95rem;
  z-index: 4;
  margin: 0;
  padding: .4rem .65rem;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(250,247,242,.88);
  background: rgba(16,14,12,.55);
  backdrop-filter: blur(8px);
  border-radius: .35rem;
}
.pdp-gallery__thumbs {
  display: flex;
  gap: .75rem;
  margin-top: 1rem;
}
.pdp-thumb {
  display: grid;
  gap: .4rem;
  width: 5rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}
.pdp-thumb img {
  width: 100%;
  height: 5.6rem;
  object-fit: cover;
  border-radius: .7rem;
  background: #efe9df;
  border: 1px solid transparent;
  transition: border-color .25s ease, transform .3s ease, box-shadow .3s ease;
}
.pdp-thumb[data-pdp-thumb="ring"] img {
  object-fit: contain;
  padding: 12%;
  background: #16120f;
}
.pdp-thumb span {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-muted);
  transition: color .25s ease;
}
.pdp-thumb:hover img {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(22,20,17,.1);
}
.pdp-thumb.is-active img {
  border-color: rgba(168,135,58,.8);
  box-shadow: 0 0 0 1px rgba(168,135,58,.25);
}
.pdp-thumb.is-active span { color: var(--color-ink); }

.pdp-buy {
  padding: 1.35rem 0 0;
}
.pdp-buy__head { margin-bottom: .25rem; }
.pdp-buy__cat {
  margin: 0;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.pdp-buy__cat a:hover { color: var(--color-accent); }
.pdp-buy__rule {
  display: block;
  width: 2.1rem;
  height: 1px;
  margin: .65rem 0 .85rem;
  background: rgba(168,135,58,.7);
}
.pdp-buy__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: .85rem;
}
.pdp-tag {
  display: inline-flex;
  align-items: center;
  padding: .32rem .55rem;
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-ink);
  background: rgba(22,20,17,.05);
  border-radius: .3rem;
}
.pdp-tag--gold {
  color: #6e5520;
  background: rgba(168,135,58,.16);
}
.pdp-tag--soft {
  color: var(--color-accent);
  background: var(--color-accent-soft);
}
.pdp-buy__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5vw, 3.2rem);
  font-weight: 500;
  line-height: .96;
  letter-spacing: -.03em;
  color: var(--color-ink);
}
.pdp-buy__price-row {
  display: flex;
  align-items: baseline;
  gap: .85rem;
  margin-top: 1.2rem;
}
.pdp-buy__price {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.3rem);
  font-weight: 500;
  letter-spacing: -.02em;
  color: var(--color-ink);
}
.pdp-buy__compare {
  margin: 0;
  font-size: 1rem;
  color: var(--color-muted);
  text-decoration: line-through;
}
.pdp-buy__stock {
  margin: .7rem 0 0;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.pdp-buy__stock.is-in { color: var(--color-accent); }
.pdp-buy__stock.is-out { color: #9b1c1c; }
.pdp-buy__stock span {
  font-weight: 500;
  color: var(--color-muted);
  letter-spacing: 0;
}
.pdp-buy__lead {
  margin: 1.2rem 0 0;
  max-width: 32rem;
  font-size: .98rem;
  line-height: 1.7;
  color: var(--color-muted);
}
.pdp-facts {
  list-style: none;
  margin: 1.55rem 0 0;
  padding: 1.15rem 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.05rem 1.15rem;
  border-block: 1px solid rgba(210,201,187,.9);
}
.pdp-facts li span {
  display: block;
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.pdp-facts li strong {
  display: block;
  margin-top: .35rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--color-ink);
}
.pdp-buy__form { margin-top: 1.55rem; max-width: 24rem; }
.pdp-buy__actions {
  display: grid;
  gap: .7rem;
}
.pdp-buy__cta,
.pdp-buy__buy {
  width: 100%;
  padding: 1.05rem 1.5rem;
}
.pdp-buy__cta {
  box-shadow: 0 14px 34px rgba(142,19,18,.22);
}
.pdp-buy__cta:hover,
.pdp-buy__buy:hover { transform: translateY(-2px); }
.pdp-buy__buy {
  background: transparent;
  border-color: rgba(27, 28, 30, 0.28);
  color: var(--color-ink);
}
.pdp-buy__buy:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(142, 19, 18, 0.04);
}
.pdp-buy__form.is-busy .pdp-buy__cta,
.pdp-buy__form.is-busy .pdp-buy__buy {
  opacity: .72;
  pointer-events: none;
}
.pdp-buy__unavailable {
  margin: 1.5rem 0 0;
  font-size: .95rem;
  color: #9b1c1c;
}
.pdp-trust {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: grid;
  gap: .45rem;
  max-width: 26rem;
}
.pdp-trust li {
  position: relative;
  padding-left: 1rem;
  font-size: .82rem;
  line-height: 1.45;
  color: var(--color-muted);
}
.pdp-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: .35rem;
  height: .35rem;
  border-radius: 50%;
  background: rgba(168,135,58,.75);
}
.pdp-buy__policies {
  margin: 1.2rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem .65rem;
  font-size: .76rem;
  color: var(--color-muted);
}
.pdp-buy__policies a {
  color: var(--color-ink);
  border-bottom: 1px solid rgba(22,20,17,.18);
  padding-bottom: .05rem;
}
.pdp-buy__policies a:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.pdp-panel {
  margin-top: clamp(2.75rem, 6vw, 4.25rem);
  padding-top: clamp(2rem, 4vw, 2.85rem);
  border-top: 1px solid rgba(210,201,187,.9);
}
.pdp-panel__eyebrow {
  margin: 0;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.pdp-panel__rule {
  display: block;
  width: 2.25rem;
  height: 1px;
  margin: .65rem 0 .8rem;
  background: rgba(168,135,58,.7);
}
.pdp-panel__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.6vw, 2.55rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.025em;
  color: var(--color-ink);
}
.pdp-panel__title em {
  font-style: italic;
  font-weight: 400;
  color: #4a3d30;
}
.pdp-panel__text {
  margin: 1.2rem 0 0;
  max-width: 44rem;
  font-size: 1.04rem;
  line-height: 1.8;
  color: var(--color-muted);
}
.pdp-specs {
  margin: 1.85rem 0 0;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(210,201,187,.9);
}
.pdp-specs__row {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.25fr);
  gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(210,201,187,.9);
  transition: background .25s ease;
}
.pdp-specs__row:hover {
  background: rgba(243,239,231,.55);
}
.pdp-specs__row dt {
  margin: 0;
  padding-left: .15rem;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--color-muted);
}
.pdp-specs__row dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--color-ink);
}
.pdp-guides {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(210,201,187,.9);
}
.pdp-guides li { border-bottom: 1px solid rgba(210,201,187,.9); }
.pdp-guides a {
  display: block;
  padding: 1.15rem 0;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-ink);
  transition: color .25s ease, padding .25s ease;
}
.pdp-guides a:hover {
  color: var(--color-accent);
  padding-left: .4rem;
}
.pdp-related {
  margin-top: clamp(2.75rem, 6vw, 4.25rem);
  padding-top: clamp(2rem, 4vw, 2.85rem);
  border-top: 1px solid rgba(210,201,187,.9);
}
.pdp-related__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}
.pdp-related__all {
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-ink);
  border-bottom: 1px solid rgba(22,20,17,.22);
  padding-bottom: .15rem;
}
.pdp-related__all:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.pdp-related__grid { margin-top: 1.85rem; }
@media (min-width: 900px) {
  .pdp__stage {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1.75rem, 3.5vw, 2.75rem);
    align-items: start;
  }
  .pdp-gallery__stage {
    height: clamp(18rem, 28vw, 22rem);
  }
  .pdp-buy {
    position: sticky;
    top: 5.75rem;
    padding: 1.35rem 1.4rem 1.45rem;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(210,201,187,.7);
    border-radius: 1.15rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 32px rgba(22,20,17,.05);
  }
  .pdp-buy__title {
    font-size: clamp(1.9rem, 3vw, 2.55rem);
  }
  .pdp-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pdp-specs {
    grid-template-columns: 1fr 1fr;
    column-gap: 2.75rem;
  }
  .pdp-specs__row { padding: 1.1rem .2rem; }
}
@media (max-width: 899px) {
  .pdp-gallery__stage {
    height: clamp(15rem, 58vw, 20rem);
  }
}
@media (max-width: 599px) {
  .pdp-facts { grid-template-columns: 1fr 1fr; }
  .pdp-gallery__stage {
    height: 16rem;
    border-radius: .9rem;
  }
  .pdp-thumb { width: 4.5rem; }
  .pdp-thumb img { height: 5rem; }
}


.specs { border-block: 1px solid var(--color-border); margin-top: 2rem; }
.specs .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding: .75rem 0; border-bottom: 1px solid var(--color-border); font-size: .9rem; }
.specs .row:last-child { border-bottom: 0; }
.specs dt { color: var(--color-muted); margin: 0; }
.specs dd { margin: 0; }

.alert { padding: .85rem 1rem; margin-bottom: 1rem; font-size: .9rem; }
.alert-success { background: var(--color-accent-soft); color: var(--color-accent); }
.alert-error { background: #fde8e8; color: #9b1c1c; }

@media (min-width: 640px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .gem-index__grid { grid-template-columns: repeat(3, 1fr); gap: .85rem; }
  .gem-index__cell.is-lead { grid-column: span 1; }
}
@media (min-width: 768px) {
  .faq .row { grid-template-columns: .9fr 1.4fr; }
  .listing-layout { grid-template-columns: 240px 1fr; }
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .menu-btn { display: none; }
  .gem-index__grid {
    grid-template-columns: repeat(6, 1fr);
    gap: .9rem;
  }
  .gem-index__cell.is-lead {
    grid-column: span 2;
  }
  .gem-index__cell.is-lead .gem-chip__media { aspect-ratio: 5 / 4; }
  .product-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
  .account-hide-sm { display: inline; }
}
@media (max-width: 1023px) {
  .account-hide-sm { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .gem-chip__stone, .gem-chip__stage, .gem-chip__turn, .gem-chip__cta, .gem-chip__glow, .stone-card__stone, .stone-card__ring, .stone-card__hint, .btn { transition: none; }
}

/* === responsive-pass-v1 === */
.site-header,
.jewel-lane,
.gem-index,
.promo-banner,
.hero-bleed,
.atelier,
.why-rs {
  max-width: 100%;
}

/* Keep 3D pop without page sideways scroll */
.jewel-lane {
  overflow: visible !important;
  padding-top: .5rem;
}
.gem-index {
  overflow-x: clip;
}
.jewel-lane__track-wrap {
  overflow: visible;
  padding-top: 2.5rem;
  margin-top: -1rem;
}
.jewel-lane__track {
  overflow-x: auto;
  overflow-y: visible;
  padding-top: 1rem !important;
  padding-bottom: 2rem !important;
}
.jewel-lane__track-wrap {
  overflow: visible;
}
.jewel-lane__track {
  overflow-x: auto;
  overflow-y: visible;
  overscroll-behavior-x: contain;
}

@media (max-width: 1023px) {
  .header-inner {
    height: 4.15rem;
    gap: .75rem;
  }
  .header-spacer { height: calc(4.15rem + 2px); }
  .logo img {
    height: 2.35rem;
    max-width: min(10.5rem, 46vw);
  }
  .cart-link {
    width: 2.4rem;
    height: 2.4rem;
  }
  .cart-link__icon {
    width: 1.35rem;
    height: 1.35rem;
  }
  .menu-btn {
    padding: .4rem .7rem;
    font-size: .68rem;
  }
  .header-actions { gap: .55rem; }
}

@media (max-width: 767px) {
  .logo img {
    height: 2.1rem;
    max-width: min(9.25rem, 42vw);
  }
  .hero-copy .brand-mark {
    font-size: clamp(2.6rem, 12vw, 3.6rem) !important;
  }
  .hero-copy h1 {
    font-size: clamp(1.35rem, 5.5vw, 1.85rem);
  }
  .hero-ring {
    opacity: .88;
  }

  .jewel-lane__head {
    align-items: flex-start !important;
    flex-direction: column !important;
    gap: .85rem !important;
  }
  .jewel-lane__title {
    font-size: clamp(2rem, 9vw, 2.8rem) !important;
  }
  .jewel-lane__lead {
    max-width: 100%;
  }
  .jewel-card,
  .jewel-card.is-hero {
    flex-basis: min(72vw, 250px) !important;
    aspect-ratio: 5 / 6 !important;
  }
  /* jewel 3D mobile handled below */

  .gem-index__head {
    flex-direction: column;
    align-items: flex-start;
    gap: .9rem;
  }
  .gem-index__title {
    font-size: clamp(2rem, 9vw, 2.85rem);
  }
  .gem-index__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: .65rem !important;
  }
  .gem-index__cell.is-lead {
    grid-column: span 1 !important;
  }
  .gem-chip:hover,
  .gem-chip:focus-visible {
    transform: translateY(-4px) scale(1.01);
  }
  .gem-chip:hover .gem-chip__stage,
  .gem-chip:focus-visible .gem-chip__stage {
    transform: translate3d(0, -4px, 36px) scale(1.03) !important;
    animation: none !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.75rem !important;
    padding: 2.75rem 0 2.25rem !important;
  }
  .footer-logo img {
    height: 2.6rem;
    max-width: 11rem;
  }

  .listing-layout {
    grid-template-columns: 1fr !important;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1.35rem .85rem !important;
  }

  .promo-banner__copy {
    max-width: 100%;
  }
  .promo-banner__brand {
    font-size: clamp(2.4rem, 12vw, 3.4rem) !important;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
  .product-grid {
    grid-template-columns: 1fr !important;
  }
  .gem-index__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .menu-btn { letter-spacing: .08em; }
  .btn-hero { width: 100%; }
}

/* Prevent flex/grid children from forcing overflow */
.header-inner,
.jewel-lane__head,
.gem-index__head,
.footer-grid,
.listing-layout,
.product-grid,
.gem-index__grid,
.pdp__stage {
  min-width: 0;
}
.logo,
.header-actions,
.gem-index__cell,
.jewel-card,
.stone-card,
.product-card {
  min-width: 0;
}

@keyframes jewelBillboardFloat {
  0%, 100% { transform: translate(-50%, -58%) scale(1.55); }
  50% { transform: translate(-50%, -66%) scale(1.62); }
}
@keyframes jewelBillboardTurn {
  0% { transform: rotateY(8deg) rotateX(5deg); }
  50% { transform: rotateY(-14deg) rotateX(9deg); }
  100% { transform: rotateY(8deg) rotateX(5deg); }
}

/* ——— Cart ——— */
.cart-page {
  position: relative;
  padding-block: clamp(2rem, 4vw, 3.25rem) clamp(4.5rem, 9vw, 7rem);
  background:
    radial-gradient(ellipse 65% 40% at 100% 0%, rgba(201, 142, 63, 0.09), transparent 55%),
    radial-gradient(ellipse 45% 35% at 0% 85%, rgba(142, 19, 18, 0.06), transparent 50%),
    var(--color-bg);
}
.cart-page__inner { max-width: 70rem; }

.cart-page__head {
  margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
  max-width: 38rem;
  animation: cartRise .55s ease both;
}
.cart-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem .7rem;
  margin-bottom: 1.15rem;
}
.cart-steps__item {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-muted);
  opacity: .55;
}
.cart-steps__item.is-active {
  color: var(--color-gold);
  opacity: 1;
}
a.cart-steps__item:hover {
  opacity: 1;
  color: var(--color-accent);
}
.cart-steps__sep {
  width: 1.35rem;
  height: 1px;
  background: var(--color-border-strong);
}
.cart-page__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 5.5vw, 3.85rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.025em;
  color: var(--color-ink);
}
.cart-page__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent);
}
.cart-page__lead {
  margin: .9rem 0 0;
  color: var(--color-muted);
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 34rem;
}

.cart-empty {
  text-align: center;
  padding: clamp(3.25rem, 9vw, 5.5rem) 1.25rem;
  border: 1px solid var(--color-border);
  background:
    linear-gradient(180deg, rgba(243, 234, 210, 0.4), rgba(255, 255, 255, 0.35) 55%, transparent),
    var(--color-surface);
  animation: cartRise .55s ease both;
}
.cart-empty__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.1rem;
  color: var(--color-accent);
  background: rgba(142, 19, 18, 0.06);
  border: 1px solid rgba(142, 19, 18, 0.12);
}
.cart-empty__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.55rem);
  font-weight: 500;
}
.cart-empty__text {
  margin: .8rem auto 0;
  max-width: 28rem;
  color: var(--color-muted);
  line-height: 1.55;
}
.cart-empty__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-top: 1.85rem;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 21rem);
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
  align-items: start;
  animation: cartRise .65s .05s ease both;
}

.cart-list { display: grid; gap: 1rem; min-width: 0; }

.cart-item {
  display: grid;
  grid-template-columns: 8.25rem minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--color-border);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.cart-item:hover {
  border-color: var(--color-border-strong);
  box-shadow: 0 12px 32px rgba(27, 28, 30, 0.05);
}

.cart-item__media {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(243, 234, 210, 0.55), transparent 55%),
    var(--color-surface);
}
.cart-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.cart-item__media:hover img { transform: scale(1.045); }

.cart-item__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.05rem;
}
.cart-item__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  align-items: flex-start;
}
.cart-item__info { min-width: 0; }
.cart-item__cat {
  margin: 0 0 .35rem;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.cart-item__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.1vw, 1.55rem);
  font-weight: 500;
  line-height: 1.18;
}
.cart-item__name a:hover { color: var(--color-accent); }
.cart-item__sku {
  margin: .4rem 0 0;
  font-size: .78rem;
  color: var(--color-muted);
  letter-spacing: .04em;
}
.cart-item__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin: .7rem 0 0;
  padding: 0;
}
.cart-item__chips li {
  padding: .28rem .55rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--color-ink);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.cart-item__price { text-align: right; flex-shrink: 0; }
.cart-item__line {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: -.01em;
}
.cart-item__unit {
  margin: .25rem 0 0;
  font-size: .78rem;
  color: var(--color-muted);
}

.cart-item__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem 1.25rem;
  padding-top: .15rem;
}

.cart-qty {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem .7rem;
}
.cart-qty__label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.cart-qty__controls {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--color-border-strong);
  background: #fff;
  margin: 0;
}
.cart-qty__btn {
  width: 2.35rem;
  border: 0;
  background: transparent;
  color: var(--color-ink);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.cart-qty__btn:hover:not(:disabled) {
  background: var(--color-accent);
  color: #f8f6f1;
}
.cart-qty__btn:disabled { opacity: .35; cursor: not-allowed; }
.cart-qty__value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  padding-inline: .2rem;
  border-inline: 1px solid var(--color-border);
  font-size: .95rem;
  font-weight: 600;
  color: var(--color-ink);
}

.cart-item__remove {
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  font-size: .8rem;
  color: var(--color-muted);
  cursor: pointer;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.cart-item__remove:hover { color: #9b1c1c; }

.cart-continue {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .35rem;
  padding: .35rem 0;
  font-size: .9rem;
  color: var(--color-muted);
  letter-spacing: .02em;
  transition: color .2s ease, gap .2s ease;
}
.cart-continue:hover {
  color: var(--color-accent);
  gap: .55rem;
}

.cart-summary {
  position: sticky;
  top: 5.5rem;
  padding: 1.45rem 1.35rem 1.55rem;
  background:
    linear-gradient(165deg, rgba(243, 234, 210, 0.65), rgba(255, 255, 255, 0.92) 42%),
    var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: 0 18px 40px rgba(27, 28, 30, 0.05);
}
.cart-summary__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.cart-summary__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -.01em;
}
.cart-summary__count {
  margin: 0;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.cart-summary__ship {
  margin-bottom: 1.2rem;
  padding: .9rem 1rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--color-border);
}
.cart-summary__ship.is-free {
  border-color: rgba(142, 19, 18, 0.22);
  background: rgba(228, 239, 233, 0.55);
}
.cart-summary__ship-note {
  margin: 0;
  font-size: .9rem;
  color: var(--color-ink);
  line-height: 1.45;
}
.cart-summary__ship-note strong { font-weight: 650; }
.cart-summary__ship.is-free .cart-summary__ship-note {
  color: var(--color-accent);
  font-weight: 600;
}
.cart-summary__ship-hint {
  margin: .45rem 0 0;
  font-size: .75rem;
  color: var(--color-muted);
}
.cart-summary__bar {
  height: 3px;
  background: rgba(27, 28, 30, 0.08);
  margin-top: .7rem;
  overflow: hidden;
}
.cart-summary__bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--color-gold), var(--color-accent));
  transition: width .45s ease;
}

.cart-summary__rows { margin: 0; display: grid; gap: .72rem; }
.cart-summary__rows > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .95rem;
}
.cart-summary__rows dt { margin: 0; color: var(--color-muted); font-weight: 400; }
.cart-summary__rows dd { margin: 0; font-weight: 550; }
.cart-summary__rows dd.is-free { color: var(--color-accent); }
.cart-summary__total {
  margin-top: .4rem;
  padding-top: .9rem;
  border-top: 1px solid var(--color-border);
}
.cart-summary__total dt,
.cart-summary__total dd {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-ink);
  font-weight: 500;
}

.cart-summary__cta {
  width: 100%;
  margin-top: 1.35rem;
  text-align: center;
  box-shadow: 0 10px 24px rgba(142, 19, 18, 0.18);
}
.cart-summary__secure {
  margin: .75rem 0 0;
  text-align: center;
  font-size: .78rem;
  color: var(--color-muted);
  line-height: 1.4;
}
.cart-summary__trust {
  margin: 1.2rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--color-border);
  display: grid;
  gap: .5rem;
}
.cart-summary__trust li {
  position: relative;
  padding-left: 1rem;
  font-size: .8rem;
  color: var(--color-muted);
  line-height: 1.4;
}
.cart-summary__trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: .35rem;
  height: .35rem;
  border-radius: 50%;
  background: var(--color-gold);
}

.cart-mobile-bar {
  display: none;
}

@keyframes cartRise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
}

@media (max-width: 640px) {
  .cart-page { padding-bottom: 6.5rem; }
  .cart-item {
    grid-template-columns: 5.75rem minmax(0, 1fr);
    gap: .9rem;
    padding: .9rem;
  }
  .cart-item__top { flex-direction: column; gap: .55rem; }
  .cart-item__price { text-align: left; }
  .cart-item__line { font-size: 1.2rem; }
  .cart-summary__cta { display: none; }

  .cart-mobile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: 40;
    padding: .85rem 1rem calc(.85rem + env(safe-area-inset-bottom));
    background: rgba(252, 251, 249, 0.94);
    border-top: 1px solid var(--color-border);
    backdrop-filter: blur(12px);
    box-shadow: 0 -10px 30px rgba(27, 28, 30, 0.08);
  }
  .cart-mobile-bar__meta {
    display: grid;
    gap: .15rem;
  }
  .cart-mobile-bar__meta span {
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--color-muted);
  }
  .cart-mobile-bar__meta strong {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
  }
  .cart-mobile-bar__cta {
    flex: 0 0 auto;
    padding-inline: 1.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cart-page__head,
  .cart-layout,
  .cart-empty { animation: none; }
  .cart-item__media img,
  .cart-summary__bar span,
  .cart-continue { transition: none; }
}

/* ——— Checkout ——— */
.checkout-page {
  padding-block: clamp(2rem, 4vw, 3.25rem) clamp(4.5rem, 9vw, 7rem);
  background:
    radial-gradient(ellipse 65% 40% at 0% 0%, rgba(201, 142, 63, 0.09), transparent 55%),
    radial-gradient(ellipse 45% 35% at 100% 80%, rgba(142, 19, 18, 0.06), transparent 50%),
    var(--color-bg);
}
.checkout-page__inner { max-width: 70rem; }
.checkout-page__head {
  margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
  max-width: 40rem;
  animation: cartRise .55s ease both;
}
.checkout-page__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 5.5vw, 3.85rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.025em;
}
.checkout-page__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent);
}
.checkout-page__lead {
  margin: .9rem 0 0;
  color: var(--color-muted);
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 34rem;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 21rem);
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
  align-items: start;
  animation: cartRise .65s .05s ease both;
}

.checkout-form { min-width: 0; display: grid; gap: 1.15rem; }

.checkout-block {
  margin: 0;
  padding: 1.25rem 1.2rem 1.35rem;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.72);
  min-inline-size: 0;
}
.checkout-block__legend {
  padding: 0 .35rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -.01em;
}
.checkout-block__hint {
  margin: -.15rem 0 1rem;
  font-size: .88rem;
  color: var(--color-muted);
  line-height: 1.45;
}

.checkout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.1rem;
}

.field {
  display: grid;
  gap: .4rem;
  min-width: 0;
}
.field--full { grid-column: 1 / -1; }
.field__label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.field__label abbr {
  text-decoration: none;
  color: var(--color-gold);
}
.field__optional {
  text-transform: none;
  letter-spacing: .02em;
  font-weight: 500;
  opacity: .75;
}
.field__input {
  width: 100%;
  padding: .85rem .95rem;
  border: 1px solid var(--color-border-strong);
  background: #fff;
  color: var(--color-ink);
  font: inherit;
  font-size: .95rem;
  line-height: 1.35;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field__input::placeholder { color: #9aa39d; }
.field__input:hover { border-color: #b8b0a3; }
.field__input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(142, 19, 18, 0.12);
}
.field__input:disabled {
  background: var(--color-surface);
  color: var(--color-muted);
  cursor: not-allowed;
}
.field__textarea {
  resize: vertical;
  min-height: 5.5rem;
}
.field.is-invalid .field__input {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}
.field__error {
  font-size: .8rem;
  color: #9b1c1c;
  line-height: 1.35;
}

.checkout-form__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: .35rem;
}
.checkout-back {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .9rem;
  color: var(--color-muted);
  transition: color .2s ease, gap .2s ease;
}
.checkout-back:hover {
  color: var(--color-accent);
  gap: .55rem;
}
.checkout-form__submit {
  min-width: 11rem;
  box-shadow: 0 10px 24px rgba(142, 19, 18, 0.18);
}

.checkout-summary {
  position: sticky;
  top: 5.5rem;
  padding: 1.35rem 1.25rem 1.45rem;
  background:
    linear-gradient(165deg, rgba(243, 234, 210, 0.65), rgba(255, 255, 255, 0.92) 42%),
    var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: 0 18px 40px rgba(27, 28, 30, 0.05);
}
.checkout-summary__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.checkout-summary__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
}
.checkout-summary__edit {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.checkout-summary__edit:hover { text-decoration: underline; }

.checkout-summary__items {
  display: grid;
  gap: .85rem;
  margin: 0 0 1.1rem;
  padding: 0 0 1.1rem;
  border-bottom: 1px solid var(--color-border);
}
.checkout-summary__item {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr) auto;
  gap: .75rem;
  align-items: start;
}
.checkout-summary__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--color-surface);
}
.checkout-summary__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.checkout-summary__qty {
  position: absolute;
  top: -.35rem;
  right: -.35rem;
  min-width: 1.2rem;
  height: 1.2rem;
  padding-inline: .25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  color: #f8f6f1;
  background: var(--color-accent);
  border-radius: 999px;
}
.checkout-summary__info { min-width: 0; }
.checkout-summary__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
}
.checkout-summary__meta {
  margin: .25rem 0 0;
  font-size: .75rem;
  color: var(--color-muted);
  line-height: 1.35;
}
.checkout-summary__line {
  margin: 0;
  font-size: .9rem;
  font-weight: 550;
  white-space: nowrap;
}

.checkout-summary__ship {
  margin-bottom: 1rem;
  padding: .75rem .85rem;
  font-size: .84rem;
  line-height: 1.4;
  color: var(--color-muted);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--color-border);
}
.checkout-summary__ship p { margin: 0; }
.checkout-summary__ship strong { color: var(--color-ink); }
.checkout-summary__ship.is-free {
  color: var(--color-accent);
  font-weight: 550;
  border-color: rgba(142, 19, 18, 0.22);
  background: rgba(228, 239, 233, 0.55);
}

.checkout-summary__rows { margin: 0; display: grid; gap: .65rem; }
.checkout-summary__rows > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .95rem;
}
.checkout-summary__rows dt { margin: 0; color: var(--color-muted); font-weight: 400; }
.checkout-summary__rows dd { margin: 0; font-weight: 550; }
.checkout-summary__rows dd.is-free { color: var(--color-accent); }
.checkout-summary__total {
  margin-top: .35rem;
  padding-top: .85rem;
  border-top: 1px solid var(--color-border);
}
.checkout-summary__total dt,
.checkout-summary__total dd {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-ink);
}

.checkout-summary__trust {
  margin: 1.15rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--color-border);
  display: grid;
  gap: .45rem;
}
.checkout-summary__trust li {
  position: relative;
  padding-left: 1rem;
  font-size: .8rem;
  color: var(--color-muted);
  line-height: 1.4;
}
.checkout-summary__trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: .35rem;
  height: .35rem;
  border-radius: 50%;
  background: var(--color-gold);
}

@media (max-width: 900px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { position: static; order: -1; }
}

@media (max-width: 640px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-block { padding: 1.1rem 1rem 1.2rem; }
  .checkout-form__footer {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .checkout-form__submit { width: 100%; }
  .checkout-back { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .checkout-page__head,
  .checkout-layout { animation: none; }
}


/* ——— Cart drawer ——— */
.cart-drawer[hidden] { display: none !important; }
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
}
.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(27, 28, 30, 0.42);
  opacity: 0;
  transition: opacity .35s ease;
}
.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(24.5rem, 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(165deg, rgba(243, 234, 210, 0.45), rgba(252, 251, 249, 0.98) 28%),
    #fcfbf9;
  border-left: 1px solid var(--color-border);
  box-shadow: -18px 0 48px rgba(27, 28, 30, 0.14);
  transform: translateX(104%);
  transition: transform .42s cubic-bezier(.22, 1, .36, 1);
}
.cart-drawer.is-open .cart-drawer__backdrop { opacity: 1; }
.cart-drawer.is-open .cart-drawer__panel { transform: translateX(0); }
body.cart-drawer-open { overflow: hidden; }

.cart-drawer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.25rem 1rem;
  border-bottom: 1px solid var(--color-border);
}
.cart-drawer__eyebrow {
  margin: 0 0 .3rem;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.cart-drawer__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.1;
}
.cart-drawer__close {
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid var(--color-border-strong);
  background: #fff;
  color: var(--color-ink);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.cart-drawer__close:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #f8f6f1;
}

.cart-drawer__flash {
  margin: 0;
  padding: .7rem 1.25rem;
  font-size: .84rem;
  font-weight: 550;
  color: var(--color-accent);
  background: rgba(228, 239, 233, 0.75);
  border-bottom: 1px solid rgba(142, 19, 18, 0.12);
}

.cart-drawer__body {
  flex: 1;
  overflow: auto;
  padding: 1rem 1.25rem 1.25rem;
  min-height: 0;
}
.cart-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .95rem;
}
.cart-drawer__item {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr) auto;
  gap: .75rem;
  align-items: start;
}
.cart-drawer__media {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--color-surface);
}
.cart-drawer__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-drawer__info { min-width: 0; }
.cart-drawer__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.25;
}
.cart-drawer__name a:hover { color: var(--color-accent); }
.cart-drawer__meta {
  margin: .3rem 0 0;
  font-size: .75rem;
  color: var(--color-muted);
  line-height: 1.35;
}
.cart-drawer__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem .85rem;
  margin-top: .55rem;
}
.cart-drawer__stepper {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--color-border-strong);
  background: #fff;
}
.cart-drawer__step {
  width: 1.85rem;
  border: 0;
  background: transparent;
  color: var(--color-ink);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.cart-drawer__step:hover:not(:disabled) {
  background: var(--color-accent);
  color: #f8f6f1;
}
.cart-drawer__step:disabled {
  opacity: .35;
  cursor: not-allowed;
}
.cart-drawer__qty-val {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.85rem;
  border-inline: 1px solid var(--color-border);
  font-size: .85rem;
  font-weight: 600;
}
.cart-drawer__remove {
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--color-muted);
  cursor: pointer;
}
.cart-drawer__remove:hover { color: #9b1c1c; }
.cart-drawer.is-busy .cart-drawer__step,
.cart-drawer.is-busy .cart-drawer__remove {
  pointer-events: none;
  opacity: .65;
}
.cart-drawer__line {
  margin: 0;
  font-size: .92rem;
  font-weight: 550;
  white-space: nowrap;
}
.cart-drawer__empty {
  margin: 2rem 0 0;
  text-align: center;
  color: var(--color-muted);
  font-size: .95rem;
}

.cart-drawer__foot {
  padding: 1rem 1.25rem 1.35rem;
  border-top: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.55);
}
.cart-drawer__sub {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: .95rem;
  font-size: .95rem;
}
.cart-drawer__sub span { color: var(--color-muted); }
.cart-drawer__sub strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
}
.cart-drawer__checkout {
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 24px rgba(142, 19, 18, 0.16);
}
.cart-drawer__view {
  display: block;
  margin-top: .85rem;
  text-align: center;
  font-size: .84rem;
  color: var(--color-muted);
  letter-spacing: .02em;
}
.cart-drawer__view:hover { color: var(--color-accent); }

@media (prefers-reduced-motion: reduce) {
  .cart-drawer__backdrop,
  .cart-drawer__panel { transition: none; }
}

/* Trust bar — home benefits strip */
.trust-bar {
  background: #fef2e4;
  border-bottom: 1px solid rgba(27, 28, 30, 0.06);
  padding: clamp(1.1rem, 2.2vw, 1.55rem) 0;
}
.trust-bar__list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(.5rem, 1.5vw, 1.25rem);
  align-items: start;
  justify-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
  text-align: center;
  min-width: 0;
}
.trust-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.5rem;
}
.trust-bar__icon svg {
  display: block;
  max-width: 100%;
  height: auto;
}
.trust-bar__label {
  font-family: var(--font-body);
  font-size: clamp(.62rem, 1.1vw, .72rem);
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.35;
  color: #3f3a36;
}
@media (max-width: 900px) {
  .trust-bar__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 1.15rem;
  }
}
@media (max-width: 520px) {
  .trust-bar {
    padding: 1rem 0;
  }
  .trust-bar__list {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 1.15rem;
    padding-bottom: .15rem;
    -webkit-overflow-scrolling: touch;
  }
  .trust-bar__list::-webkit-scrollbar { display: none; }
  .trust-bar__item {
    flex: 0 0 auto;
    width: 6.5rem;
  }
  .trust-bar__icon { height: 3.1rem; }
  .trust-bar__icon svg { width: 48px; height: auto; }
}


/* —— Account / OTP auth —— */
.auth-page {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3.5rem, 8vw, 5.5rem);
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(142, 19, 18, 0.06), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(184, 149, 78, 0.08), transparent 50%),
    var(--color-bg, #f7f3ec);
}
.auth-page__inner { max-width: 26rem; }
.auth-page__head { margin-bottom: 1.75rem; }
.auth-page__eyebrow {
  margin: 0 0 .55rem;
  font-family: Manrope, sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-accent, #8e1312);
}
.auth-page__title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-ink, #1c1a17);
}
.auth-page__title em {
  font-style: italic;
  color: var(--color-accent, #8e1312);
}
.auth-page__lead {
  margin: .75rem 0 0;
  font-size: .95rem;
  line-height: 1.55;
  color: #5c574e;
}
.auth-form {
  display: grid;
  gap: 1.15rem;
  padding: 1.35rem 1.4rem 1.5rem;
  background: rgba(255, 252, 247, 0.92);
  border: 1px solid rgba(28, 26, 23, 0.08);
}
.auth-phone {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: stretch;
}
.auth-phone__prefix {
  display: inline-flex;
  align-items: center;
  padding: 0 .9rem;
  border: 1px solid #cfc7b8;
  border-right: 0;
  background: #f3eee4;
  color: #5c574e;
  font-size: .92rem;
  font-weight: 600;
}
.auth-phone__input {
  border-radius: 0;
}
.auth-otp-input {
  letter-spacing: .35em;
  font-size: 1.15rem;
  font-weight: 600;
  text-align: center;
}
.auth-form__submit {
  width: 100%;
  justify-content: center;
  margin-top: .25rem;
}
.field__hint {
  display: block;
  margin-top: .4rem;
  font-size: .8rem;
  color: #7a7468;
}
.auth-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem 1.25rem;
  margin-top: 1.15rem;
}
.auth-link,
.auth-link-btn {
  font-family: Manrope, sans-serif;
  font-size: .88rem;
  font-weight: 600;
  color: var(--color-accent, #8e1312);
  text-decoration: underline;
  text-underline-offset: .18em;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.auth-link:hover,
.auth-link-btn:hover { color: var(--color-accent-hover, #6f0f0e); }
.auth-account {
  display: grid;
  gap: 1.5rem;
  padding: 1.35rem 1.4rem 1.5rem;
  background: rgba(255, 252, 247, 0.92);
  border: 1px solid rgba(28, 26, 23, 0.08);
}
.auth-account__meta {
  margin: 0;
  display: grid;
  gap: 1rem;
}
.auth-account__meta dt {
  margin: 0;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #7a7468;
}
.auth-account__meta dd {
  margin: .2rem 0 0;
  font-size: 1rem;
  color: var(--color-ink, #1c1a17);
}

/* —— Account dashboard shell —— */
.account-shell {
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 7vw, 5rem);
  background:
    radial-gradient(ellipse 70% 45% at 0% 0%, rgba(142, 19, 18, 0.05), transparent 55%),
    radial-gradient(ellipse 50% 35% at 100% 10%, rgba(184, 149, 78, 0.07), transparent 50%),
    var(--color-bg, #f7f3ec);
}
.account-shell__inner {
  display: grid;
  grid-template-columns: 15.5rem minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: start;
}
.account-nav {
  position: sticky;
  top: 5.5rem;
  padding: 1.15rem 1.1rem 1.25rem;
  background: rgba(255, 252, 247, 0.95);
  border: 1px solid rgba(28, 26, 23, 0.08);
}
.account-nav__identity {
  display: flex;
  gap: .75rem;
  align-items: center;
  margin-bottom: 1.15rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(28, 26, 23, 0.08);
}
.account-nav__avatar {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--color-accent, #8e1312);
  color: #f8f6f1;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 600;
  flex-shrink: 0;
}
.account-nav__name {
  margin: 0;
  font-size: .95rem;
  font-weight: 600;
  color: var(--color-ink, #1c1a17);
  line-height: 1.25;
}
.account-nav__phone {
  margin: .15rem 0 0;
  font-size: .78rem;
  color: #7a7468;
}
.account-nav__list {
  display: grid;
  gap: .2rem;
}
.account-nav__list a {
  display: block;
  padding: .55rem .65rem;
  font-size: .9rem;
  font-weight: 500;
  color: #3f3b34;
  text-decoration: none;
  border-left: 2px solid transparent;
}
.account-nav__list a:hover { color: var(--color-accent, #8e1312); background: rgba(142, 19, 18, 0.04); }
.account-nav__list a.is-active {
  color: var(--color-accent, #8e1312);
  border-left-color: var(--color-accent, #8e1312);
  background: rgba(142, 19, 18, 0.06);
  font-weight: 600;
}
.account-nav__logout {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(28, 26, 23, 0.08);
}
.account-nav__logout button {
  width: 100%;
  text-align: left;
  padding: .55rem .65rem;
  border: 0;
  background: none;
  font: inherit;
  font-size: .9rem;
  font-weight: 600;
  color: #9b1c1c;
  cursor: pointer;
}
.account-nav__logout button:hover { background: #fde8e8; }

.account-main__head { margin-bottom: 1.5rem; }
.account-main__eyebrow {
  margin: 0 0 .45rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-accent, #8e1312);
}
.account-main__title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 4vw, 2.45rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-ink, #1c1a17);
}
.account-main__lead {
  margin: .55rem 0 0;
  font-size: .95rem;
  color: #5c574e;
  line-height: 1.5;
}

.account-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
  margin-bottom: 1.5rem;
}
.account-stat {
  display: grid;
  gap: .25rem;
  padding: 1rem 1.05rem;
  background: rgba(255, 252, 247, 0.95);
  border: 1px solid rgba(28, 26, 23, 0.08);
  text-decoration: none;
  color: inherit;
  transition: border-color .2s ease, transform .2s ease;
}
.account-stat:hover {
  border-color: rgba(142, 19, 18, 0.35);
  transform: translateY(-2px);
}
.account-stat__value {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.85rem;
  font-weight: 560;
  color: var(--color-accent, #8e1312);
  line-height: 1;
}
.account-stat__label {
  font-size: .8rem;
  font-weight: 600;
  color: #7a7468;
  letter-spacing: .02em;
}

.account-panel {
  padding: 1.15rem 1.2rem 1.25rem;
  background: rgba(255, 252, 247, 0.95);
  border: 1px solid rgba(28, 26, 23, 0.08);
  margin-bottom: 1.15rem;
}
.account-panel__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .85rem;
}
.account-panel__title {
  margin: 0 0 .85rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 560;
}
.account-panel__head .account-panel__title { margin: 0; }
.account-panel__link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--color-accent, #8e1312);
  text-decoration: underline;
  text-underline-offset: .15em;
}

.account-order-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 0;
  border-top: 1px solid rgba(28, 26, 23, 0.07);
  text-decoration: none;
  color: inherit;
}
.account-panel > .account-order-row:first-of-type,
.account-main > .account-order-row:first-of-type { border-top: 0; }
.account-order-row:hover strong { color: var(--color-accent, #8e1312); }
.account-order-row strong { display: block; font-size: .95rem; }
.account-order-row__meta {
  display: block;
  margin-top: .2rem;
  font-size: .8rem;
  color: #7a7468;
}
.account-order-row__right {
  display: grid;
  justify-items: end;
  gap: .35rem;
  flex-shrink: 0;
}
.account-order-row__total {
  font-weight: 600;
  font-size: .92rem;
}

.account-badge {
  display: inline-block;
  padding: .18rem .5rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: #efeae0;
  color: #5c574e;
}
.account-badge--pending,
.account-badge--processing { background: #f5ead0; color: #8a5a12; }
.account-badge--shipped,
.account-badge--dispatched { background: #e4eef8; color: #1d4f7a; }
.account-badge--delivered { background: #e5f2e8; color: #1f6b3a; }
.account-badge--cancelled,
.account-badge--refunded { background: #fde8e8; color: #9b1c1c; }

.account-empty {
  padding: 2rem 1rem;
  text-align: center;
  background: rgba(255, 252, 247, 0.95);
  border: 1px dashed rgba(28, 26, 23, 0.14);
}
.account-empty p {
  margin: 0 0 1rem;
  color: #5c574e;
}

.account-quick {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
}
.account-quick__card {
  display: grid;
  gap: .3rem;
  padding: 1rem 1.05rem;
  background: rgba(255, 252, 247, 0.95);
  border: 1px solid rgba(28, 26, 23, 0.08);
  text-decoration: none;
  color: inherit;
  transition: border-color .2s ease, transform .2s ease;
}
.account-quick__card:hover {
  border-color: rgba(142, 19, 18, 0.35);
  transform: translateY(-2px);
}
.account-quick__card strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 560;
}
.account-quick__card span {
  font-size: .82rem;
  color: #7a7468;
  line-height: 1.4;
}

.account-form {
  display: grid;
  gap: 1.05rem;
  max-width: 28rem;
  padding: 1.25rem 1.3rem 1.4rem;
  background: rgba(255, 252, 247, 0.95);
  border: 1px solid rgba(28, 26, 23, 0.08);
  margin-bottom: 1.25rem;
}
.account-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .85rem 1.25rem;
  margin-top: .15rem;
}
.account-link {
  font-size: .88rem;
  font-weight: 600;
  color: var(--color-accent, #8e1312);
  text-decoration: underline;
  text-underline-offset: .15em;
}
.account-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 28rem;
  margin: 0;
}
.account-meta dt {
  margin: 0;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #7a7468;
}
.account-meta dd {
  margin: .2rem 0 0;
  font-size: .95rem;
}

.account-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .85rem;
}
.account-items__row {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr) auto;
  gap: .85rem;
  align-items: center;
}
.account-items__row img {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: cover;
  background: #efeae0;
}
.account-items__row strong { display: block; font-size: .92rem; }
.account-items__row .muted { display: block; margin-top: .2rem; font-size: .8rem; }

.account-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.account-totals { margin: 0; display: grid; gap: .45rem; }
.account-totals > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .9rem;
}
.account-totals dt { margin: 0; color: #7a7468; }
.account-totals dd { margin: 0; font-weight: 600; }
.account-totals .is-total {
  margin-top: .35rem;
  padding-top: .55rem;
  border-top: 1px solid rgba(28, 26, 23, 0.1);
  font-size: 1rem;
}
.account-tracking { margin-top: .85rem; font-size: .9rem; }

.account-wishlist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
  gap: .85rem;
}
.account-wishlist__card {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  gap: .75rem;
  align-items: center;
  padding: .85rem;
  background: rgba(255, 252, 247, 0.95);
  border: 1px solid rgba(28, 26, 23, 0.08);
  text-decoration: none;
  color: inherit;
}
.account-wishlist__card:hover { border-color: rgba(142, 19, 18, 0.35); }
.account-wishlist__card img {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: cover;
  background: #efeae0;
}
.account-wishlist__card strong { display: block; font-size: .9rem; line-height: 1.3; }
.account-wishlist__card .muted { display: block; margin-top: .25rem; font-size: .82rem; }

.account-pagination { margin-top: 1.25rem; }

@media (max-width: 860px) {
  .account-shell__inner {
    grid-template-columns: 1fr;
  }
  .account-nav {
    position: static;
  }
  .account-nav__list {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
  }
  .account-nav__list a {
    border-left: 0;
    border-bottom: 2px solid transparent;
    padding: .45rem .7rem;
  }
  .account-nav__list a.is-active {
    border-left: 0;
    border-bottom-color: var(--color-accent, #8e1312);
  }
  .account-stats,
  .account-quick,
  .account-detail-grid {
    grid-template-columns: 1fr;
  }
  .account-meta { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .account-order-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .account-order-row__right {
    justify-items: start;
    flex-direction: row;
    display: flex;
    align-items: center;
    gap: .65rem;
  }
}

/* —— Order tracking —— */
.track-page {
  padding: clamp(2.25rem, 5vw, 3.75rem) 0 clamp(3rem, 7vw, 5rem);
  background:
    radial-gradient(ellipse 70% 45% at 100% 0%, rgba(142, 19, 18, 0.05), transparent 55%),
    radial-gradient(ellipse 55% 40% at 0% 15%, rgba(184, 149, 78, 0.08), transparent 50%),
    var(--color-bg, #f7f3ec);
}
.track-page__inner { max-width: 42rem; }
.track-page__head { margin-bottom: 1.5rem; }
.track-page__eyebrow {
  margin: 0 0 .5rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-accent, #8e1312);
}
.track-page__title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.15;
}
.track-page__title em {
  font-style: italic;
  color: var(--color-accent, #8e1312);
}
.track-page__lead {
  margin: .7rem 0 0;
  font-size: .95rem;
  color: #5c574e;
  line-height: 1.55;
}
.track-form {
  display: grid;
  gap: 1rem;
  padding: 1.3rem 1.35rem 1.45rem;
  background: rgba(255, 252, 247, 0.95);
  border: 1px solid rgba(28, 26, 23, 0.08);
  margin-bottom: 1.5rem;
}
.track-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.track-form__hint {
  margin: 0;
  font-size: .8rem;
  color: #7a7468;
}
.track-form__submit {
  justify-self: start;
  margin-top: .15rem;
}
.track-result {
  padding: 1.35rem 1.4rem 1.5rem;
  background: rgba(255, 252, 247, 0.95);
  border: 1px solid rgba(28, 26, 23, 0.08);
}
.track-result__head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(28, 26, 23, 0.08);
}
.track-result__label {
  margin: 0;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #7a7468;
}
.track-result__number {
  margin: .25rem 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  font-weight: 560;
  line-height: 1.15;
}
.track-result__date {
  margin: .35rem 0 0;
  font-size: .85rem;
  color: #7a7468;
}
.track-result__head-right {
  text-align: right;
  display: grid;
  gap: .45rem;
  justify-items: end;
}
.track-result__total {
  margin: 0;
  font-weight: 700;
  font-size: 1.05rem;
}

.track-timeline {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .35rem;
}
.track-timeline__step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: .55rem;
  text-align: center;
}
.track-timeline__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: .55rem;
  left: calc(50% + .7rem);
  width: calc(100% - 1.4rem);
  height: 2px;
  background: #ddd5c6;
}
.track-timeline__step.is-done:not(:last-child)::after,
.track-timeline__step.is-current:not(:last-child)::after {
  background: var(--color-accent, #8e1312);
}
.track-timeline__dot {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  border: 2px solid #cfc7b8;
  background: #fff;
  position: relative;
  z-index: 1;
}
.track-timeline__step.is-done .track-timeline__dot,
.track-timeline__step.is-current .track-timeline__dot {
  border-color: var(--color-accent, #8e1312);
  background: var(--color-accent, #8e1312);
  box-shadow: 0 0 0 4px rgba(142, 19, 18, 0.12);
}
.track-timeline__label {
  font-size: .72rem;
  font-weight: 600;
  color: #9a9386;
  line-height: 1.3;
}
.track-timeline__step.is-done .track-timeline__label,
.track-timeline__step.is-current .track-timeline__label {
  color: var(--color-ink, #1c1a17);
}

.track-shipment {
  margin-top: 1.25rem;
  padding: 1rem 1.05rem;
  background: #f3eee4;
  display: grid;
  gap: .45rem;
}
.track-shipment__title {
  margin: 0;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #7a7468;
}
.track-shipment__btn {
  justify-self: start;
  margin-top: .35rem;
}
.track-result__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1.35rem;
  margin-top: 1.35rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(28, 26, 23, 0.08);
}
.track-result__section-title {
  margin: 0 0 .85rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 560;
}
.track-address {
  margin: 0;
  font-size: .92rem;
  line-height: 1.55;
  color: #3f3b34;
}
.track-result__account {
  margin: 1.25rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(28, 26, 23, 0.08);
}
.track-empty {
  padding: 1.5rem 1.25rem;
  text-align: center;
  background: rgba(255, 252, 247, 0.95);
  border: 1px dashed rgba(28, 26, 23, 0.16);
}
.track-empty p { margin: 0 0 .5rem; color: #5c574e; }
.track-empty p:last-child { margin-bottom: 0; }
.track-page__help {
  margin: 1.5rem 0 0;
  font-size: .88rem;
  color: #7a7468;
  text-align: center;
}
.track-page__help a {
  color: var(--color-accent, #8e1312);
  font-weight: 600;
}

@media (max-width: 720px) {
  .track-form__grid,
  .track-result__grid {
    grid-template-columns: 1fr;
  }
  .track-timeline {
    grid-template-columns: 1fr;
    gap: .85rem;
  }
  .track-timeline__step {
    grid-template-columns: auto 1fr;
    justify-items: start;
    text-align: left;
    gap: .75rem;
    align-items: center;
  }
  .track-timeline__step:not(:last-child)::after {
    left: .52rem;
    top: 1.35rem;
    width: 2px;
    height: calc(100% - .2rem);
  }
  .track-result__head {
    flex-direction: column;
  }
  .track-result__head-right {
    justify-items: start;
    text-align: left;
  }
}

/* —— Welcome login popup —— */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.welcome-popup[hidden] { display: none !important; }
.welcome-popup {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.welcome-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 14, 12, 0.62);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity .4s ease;
}
.welcome-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(56rem, 100%);
  max-height: min(92vh, 34rem);
  overflow: hidden;
  background: #fff;
  border-radius: 1.25rem;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 32px 90px rgba(12, 10, 8, 0.38);
  transform: translate3d(0, 22px, 0);
  opacity: 0;
  transition: transform .48s cubic-bezier(.22, 1, .36, 1), opacity .38s ease;
  -webkit-font-smoothing: antialiased;
}
.welcome-popup.is-open .welcome-popup__backdrop { opacity: 1; }
.welcome-popup.is-open .welcome-popup__dialog {
  transform: none;
  opacity: 1;
}
body.welcome-popup-open { overflow: hidden; }

.welcome-popup__close {
  position: absolute;
  top: .7rem;
  right: .7rem;
  z-index: 3;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(28, 26, 23, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #2a2621;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.welcome-popup__close:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  transform: rotate(90deg);
}

.welcome-popup__grid {
  display: grid;
  grid-template-columns: 1.12fr .98fr;
  min-height: 28rem;
  max-height: min(92vh, 34rem);
}

.welcome-popup__intro {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #2a1212;
}
.welcome-popup__intro-bg {
  position: absolute;
  inset: -2%;
  background:
    linear-gradient(165deg, rgba(28, 12, 12, 0.78) 0%, rgba(28, 12, 12, 0.55) 42%, rgba(28, 12, 12, 0.82) 100%),
    url("/images/hero-slide-ruby.jpg") center / cover no-repeat;
}
.welcome-popup__intro-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 28rem;
  padding: 1.75rem 1.6rem 1.5rem;
  gap: 1.25rem;
}
.welcome-popup__brands {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: .65rem .85rem;
  background: #fff;
  border-radius: .55rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  line-height: 0;
  overflow: visible;
}
.welcome-popup__logo {
  display: block;
  width: auto;
  height: 2.5rem;
  max-width: 12.5rem;
  object-fit: contain;
  object-position: left center;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.welcome-popup__copy {
  margin: auto 0;
  max-width: 22rem;
}
.welcome-popup__eyebrow {
  margin: 0 0 .65rem;
  font-size: .68rem;
  font-weight: 650;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #e8c98a;
}
.welcome-popup__welcome {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.65rem);
  font-weight: 560;
  letter-spacing: -.015em;
  line-height: 1.08;
  color: #fff;
}
.welcome-popup__lead {
  margin: .85rem 0 0;
  font-size: .95rem;
  line-height: 1.55;
  color: rgba(255, 248, 240, 0.82);
}

.welcome-popup__features {
  display: grid;
  gap: .55rem;
  margin-top: auto;
}
.welcome-popup__feature {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: .8rem;
  padding: .65rem .8rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: .75rem;
  opacity: 0;
  transition: opacity .4s ease, background .2s ease;
}
.welcome-popup.is-open .welcome-popup__feature { opacity: 1; }
.welcome-popup.is-open .welcome-popup__feature:nth-child(1) { transition-delay: .1s; }
.welcome-popup.is-open .welcome-popup__feature:nth-child(2) { transition-delay: .18s; }
.welcome-popup.is-open .welcome-popup__feature:nth-child(3) { transition-delay: .26s; }
.welcome-popup__feature:hover { background: rgba(255, 255, 255, 0.18); }
.welcome-popup__feature-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: transparent;
  border-radius: 0;
  line-height: 0;
}
.welcome-popup__feature-icon svg {
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  shape-rendering: geometricPrecision;
}
.welcome-popup__feature strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
}
.welcome-popup__feature span {
  display: block;
  margin-top: .12rem;
  font-size: .74rem;
  line-height: 1.35;
  color: rgba(255, 248, 240, 0.72);
}

.welcome-popup__auth {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .85rem;
  padding: 2rem 1.85rem 1.55rem;
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(142, 19, 18, 0.06), transparent 55%),
    #fffefb;
}
.welcome-popup__offer {
  display: inline-flex;
  flex-direction: column;
  align-self: flex-start;
  gap: .15rem;
  padding: .55rem .85rem;
  background: linear-gradient(135deg, #f7e8e8, #f5ecd8);
  border: 1px solid rgba(142, 19, 18, 0.12);
  border-radius: .65rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s ease .18s, transform .4s ease .18s;
}
.welcome-popup.is-open .welcome-popup__offer {
  opacity: 1;
  transform: translateY(0);
}
.welcome-popup__offer span {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.welcome-popup__offer strong {
  font-size: .88rem;
  font-weight: 700;
  color: var(--color-ink);
}
.welcome-popup__auth-title {
  margin: .15rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.6vw, 1.9rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-ink);
}
.welcome-popup__auth-lead {
  margin: 0;
  font-size: .9rem;
  line-height: 1.45;
  color: var(--color-muted);
}

.welcome-popup__form {
  display: grid;
  gap: .85rem;
  margin-top: .25rem;
}
.welcome-popup__phone {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: stretch;
  border: 1.5px solid #d8d0c4;
  border-radius: .7rem;
  overflow: hidden;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.welcome-popup__phone:focus-within {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(142, 19, 18, 0.12);
}
.welcome-popup__phone-prefix {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: 0 .9rem;
  border-right: 1px solid #ebe4d8;
  background: #faf7f1;
  color: #3f3b34;
  font-size: .95rem;
  font-weight: 700;
  white-space: nowrap;
}
.welcome-popup__flag {
  width: 1.2rem;
  height: .82rem;
  border-radius: 1px;
  background: linear-gradient(#ff9933 0 33%, #fff 33% 66%, #138808 66% 100%);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
  position: relative;
  flex: 0 0 auto;
}
.welcome-popup__flag::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: .28rem;
  height: .28rem;
  margin: -.14rem 0 0 -.14rem;
  border-radius: 50%;
  background: #000088;
}
.welcome-popup__phone-input {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 1rem .95rem;
  font: inherit;
  font-size: .98rem;
  color: var(--color-ink);
  outline: none;
}
.welcome-popup__phone-input::placeholder { color: #9a9388; }

.welcome-popup__check {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .86rem;
  color: #4a453c;
  cursor: pointer;
}
.welcome-popup__check input {
  margin-top: .15rem;
  width: 1rem;
  height: 1rem;
  accent-color: var(--color-accent);
  flex: 0 0 auto;
}

.welcome-popup__submit {
  width: 100%;
  border: 0;
  border-radius: .7rem;
  padding: 1.05rem 1.25rem;
  background: linear-gradient(180deg, #a81820, #8e1312);
  color: #fff;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(142, 19, 18, 0.28);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.welcome-popup__submit:hover {
  background: linear-gradient(180deg, #bc1c25, #a11416);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(142, 19, 18, 0.34);
}
.welcome-popup__submit:active { transform: translateY(0); }

.welcome-popup__trust {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .85rem;
  margin: .15rem 0 0;
  padding: 0;
  list-style: none;
}
.welcome-popup__trust li {
  position: relative;
  padding-left: .95rem;
  font-size: .75rem;
  font-weight: 600;
  color: #6b655c;
}
.welcome-popup__trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35rem;
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: #1f7a4d;
}

.welcome-popup__legal {
  margin: .1rem 0 0;
  font-size: .7rem;
  line-height: 1.45;
  color: #8a8378;
}
.welcome-popup__legal a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.welcome-popup__legal a:hover { color: var(--color-accent); }

@media (max-width: 820px) {
  .welcome-popup {
    align-items: flex-end;
    padding: 0;
  }
  .welcome-popup__dialog {
    width: 100%;
    max-height: 94vh;
    border-radius: 1.2rem 1.2rem 0 0;
    overflow: auto;
  }
  .welcome-popup__grid {
    grid-template-columns: 1fr;
    min-height: 0;
    max-height: none;
  }
  .welcome-popup__intro-inner {
    min-height: 0;
    padding: 1.35rem 1.15rem 1.1rem;
    gap: 1rem;
  }
  .welcome-popup__copy { margin: 0; max-width: none; }
  .welcome-popup__welcome { font-size: 1.75rem; }
  .welcome-popup__lead { font-size: .9rem; }
  .welcome-popup__features { gap: .45rem; }
  .welcome-popup__feature { padding: .6rem .7rem; }
  .welcome-popup__auth {
    padding: 1.25rem 1.15rem 1.35rem;
    border-top: 1px solid var(--color-border);
  }
  .welcome-popup__close {
    top: .55rem;
    right: .55rem;
  }
}


/* ========== Mobile shell (phone-first UX) ========== */
.atelier-refine {
  margin: 0;
  border: 0;
  padding: 0;
}
.atelier-refine > summary {
  list-style: none;
  cursor: pointer;
}
.atelier-refine > summary::-webkit-details-marker { display: none; }
.atelier-refine__toggle {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin-bottom: 1rem;
  padding: .95rem 1rem;
  border: 1px solid rgba(28, 26, 23, 0.12);
  background: #fff;
  font-family: Manrope, sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-ink);
}
.atelier-refine__toggle::after {
  content: "Filter";
  font-size: .68rem;
  letter-spacing: .12em;
  color: var(--color-accent);
}
.atelier-refine[open] .atelier-refine__toggle::after { content: "Close"; }

@media (max-width: 1023px) {
  .atelier-refine__toggle { display: flex; }
  .atelier-rail {
    position: sticky;
    top: calc(4.25rem + 2px);
    z-index: 20;
    background: linear-gradient(180deg, var(--color-bg) 70%, transparent);
    padding-bottom: .35rem;
  }
  .atelier-filters {
    margin-bottom: 1.25rem;
    padding: 1rem 1rem 1.15rem;
    border: 1px solid rgba(28, 26, 23, 0.1);
    background: #fff;
  }
  .atelier-filters__label { display: none; }
}

@media (min-width: 1024px) {
  .atelier-refine__toggle { display: none !important; }
  .atelier-refine { display: block; }
  .atelier-refine > .atelier-filters {
    display: block !important;
  }
}

/* Mobile menu drawer */
@media (max-width: 1023px) {
  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.65rem;
    height: 2.65rem;
    padding: 0;
    border: 1px solid rgba(28, 26, 23, 0.14);
    border-radius: 0;
    background: rgba(255,255,255,.72);
    font-size: 0;
    letter-spacing: 0;
    color: var(--color-ink);
  }
  .menu-btn__icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 1.1rem;
  }
  .menu-btn__icon span {
    display: block;
    height: 1.5px;
    width: 100%;
    background: currentColor;
    transition: transform .25s ease, opacity .2s ease;
  }
  .menu-btn[aria-expanded="true"] .menu-btn__icon span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .menu-btn[aria-expanded="true"] .menu-btn__icon span:nth-child(2) { opacity: 0; }
  .menu-btn[aria-expanded="true"] .menu-btn__icon span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .site-header.is-transparent .menu-btn {
    background: rgba(8,6,5,.35);
    border-color: rgba(250,247,242,.35);
    color: #faf7f2;
  }

  .mobile-nav {
    display: none;
    position: fixed;
    inset: calc(4.25rem + 2px) 0 0;
    z-index: 80;
    margin: 0;
    padding: 1.25rem 1.25rem 2.5rem;
    overflow-y: auto;
    background: rgba(252, 251, 249, 0.98);
    border-top: 1px solid var(--color-border);
    backdrop-filter: blur(10px);
    -webkit-overflow-scrolling: touch;
  }
  .mobile-nav.open {
    display: flex;
    flex-direction: column;
    gap: .15rem;
  }
  .mobile-nav__title {
    margin: 0 0 .65rem;
    font-family: Manrope, sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--color-gold, #b08d3a);
  }
  .mobile-nav a {
    display: flex;
    align-items: center;
    min-height: 3.15rem;
    padding: .85rem 0;
    border-bottom: 1px solid rgba(28, 26, 23, 0.08);
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 500;
    color: var(--color-ink);
  }
  .mobile-nav a:last-child { border-bottom: 0; }
  body.nav-open {
    overflow: hidden;
  }
}

/* Hero phone layout */
@media (max-width: 767px) {
  .hero-bleed {
    min-height: 100svh;
  }
  .hero-bleed__stage {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 0;
  }
  .hero-copy {
    max-width: 100%;
    padding-right: 7.5rem;
    padding-bottom: .5rem;
  }
  .hero-copy .brand-mark {
    font-size: clamp(2.8rem, 13vw, 3.6rem) !important;
  }
  .hero-copy h1 {
    font-size: clamp(1.35rem, 5.8vw, 1.75rem) !important;
    margin-top: .7rem !important;
  }
  .hero-stone {
    margin-top: .65rem;
    font-size: .72rem;
  }
  .hero-actions {
    margin-top: 1.35rem;
  }
  .hero-ring {
    width: 108px !important;
    height: 108px !important;
    right: .85rem !important;
    bottom: 7.5rem !important;
  }
  .hero-footer {
    margin-top: 1.25rem;
  }
}

@media (max-width: 390px) {
  .hero-copy { padding-right: 6.5rem; }
  .hero-ring {
    width: 92px !important;
    height: 92px !important;
  }
}

/* Auth — app-like phone form */
@media (max-width: 640px) {
  .auth-page {
    min-height: calc(100svh - 4.5rem);
    padding: 1.75rem 0 2.5rem;
    display: flex;
    align-items: flex-start;
  }
  .auth-page__inner {
    width: 100%;
    max-width: none;
  }
  .auth-page__title {
    font-size: clamp(2rem, 9vw, 2.45rem);
  }
  .auth-form {
    padding: 1.15rem 1.1rem 1.25rem;
    border-radius: .35rem;
  }
  .auth-phone__prefix {
    min-width: 3.5rem;
    justify-content: center;
    font-size: 1rem;
  }
  .auth-phone__input,
  .auth-otp-input {
    min-height: 3.15rem;
    font-size: 1.15rem;
  }
  .auth-otp-input {
    letter-spacing: .42em;
    font-size: 1.35rem;
  }
  .auth-form__submit {
    min-height: 3.15rem;
    font-size: .78rem;
  }
}

/* Account — horizontal chips nav */
@media (max-width: 860px) {
  .account-nav {
    padding: 1rem;
  }
  .account-nav__list {
    display: flex;
    flex-wrap: nowrap;
    gap: .4rem;
    overflow-x: auto;
    padding-bottom: .15rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .account-nav__list::-webkit-scrollbar { display: none; }
  .account-nav__list a {
    flex: 0 0 auto;
    white-space: nowrap;
    border-radius: 999px;
    border: 1px solid rgba(28, 26, 23, 0.1);
    border-bottom: 1px solid rgba(28, 26, 23, 0.1);
    background: #fff;
    padding: .55rem .95rem;
    font-size: .82rem;
  }
  .account-nav__list a.is-active {
    border-color: var(--color-accent, #8e1312);
    border-bottom-color: var(--color-accent, #8e1312);
    background: rgba(142, 19, 18, 0.06);
  }
  .account-nav__logout {
    margin-top: .85rem;
  }
  .account-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .55rem;
  }
  .account-stat {
    padding: .85rem .7rem;
  }
  .account-stat__value { font-size: 1.45rem; }
  .account-stat__label { font-size: .72rem; }
}

/* Category facts / trust / shop strip touch comfort */
@media (max-width: 640px) {
  .shop-strip__inner {
    gap: .15rem 1rem;
    padding-block: .85rem;
  }
  .trust-bar__list {
    gap: .75rem;
  }
}

/* ========== App-style bottom tab bar ========== */
.app-tabbar { display: none; }

@media (max-width: 1023px) {
  .header-cart-desktop,
  .header-menu-desktop { display: none !important; }

  .app-tabbar {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    min-height: 3.85rem;
    padding: .35rem .35rem calc(.35rem + env(safe-area-inset-bottom));
    background: rgba(252, 251, 249, 0.96);
    border-top: 1px solid rgba(28, 26, 23, 0.1);
    box-shadow: 0 -8px 28px rgba(22, 20, 17, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .app-tab {
    appearance: none;
    border: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .22rem;
    min-height: 3.15rem;
    padding: .25rem .15rem;
    color: #7a7468;
    text-decoration: none;
    font: inherit;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: color .2s ease, transform .2s ease;
  }
  .app-tab:active { transform: scale(.96); }
  .app-tab.is-active {
    color: var(--color-accent, #8e1312);
  }
  .app-tab__icon {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 1.6rem;
    height: 1.6rem;
  }
  .app-tab__icon svg {
    display: block;
  }
  .app-tab.is-active .app-tab__icon svg path,
  .app-tab.is-active .app-tab__icon svg circle {
    stroke-width: 1.85;
  }
  .app-tab__label {
    font-family: Manrope, sans-serif;
    font-size: .62rem;
    font-weight: 650;
    letter-spacing: .04em;
    line-height: 1;
  }
  .app-tab__badge {
    position: absolute;
    top: -.45rem;
    right: -.55rem;
    min-width: 1.05rem;
    height: 1.05rem;
    padding: 0 .28rem;
    border-radius: 999px;
    background: var(--color-accent, #8e1312);
    color: #fff;
    font-family: Manrope, sans-serif;
    font-size: .58rem;
    font-weight: 700;
    line-height: 1.05rem;
    text-align: center;
    box-shadow: 0 0 0 2px #fcfbf9;
  }
  .app-tab__badge:not(.is-on):empty,
  .app-tab__badge:not(.is-on) {
    /* keep visible for "0" only when count > 0 feel; show always but dim at 0 */
  }
  .app-tab__badge:not(.is-on) {
    opacity: .35;
    transform: scale(.92);
  }
  .app-tab.is-bump .app-tab__icon {
    animation: appTabBump .45s ease;
  }
  @keyframes appTabBump {
    0% { transform: scale(1); }
    40% { transform: scale(1.18); }
    100% { transform: scale(1); }
  }

  body {
    padding-bottom: calc(4.35rem + env(safe-area-inset-bottom));
  }
  .site-footer {
    margin-bottom: .25rem;
  }

  /* More sheet sits above tab bar */
  .mobile-nav {
    inset: calc(4.25rem + 2px) 0 calc(3.85rem + env(safe-area-inset-bottom));
  }

  /* Sticky CTAs clear the tab bar */
  .cart-page__sticky,
  .checkout-sticky,
  .pdp__buybar {
    bottom: calc(3.85rem + env(safe-area-inset-bottom)) !important;
  }
}

@media (min-width: 1024px) {
  .app-tabbar { display: none !important; }
}
