/* Clara Pucci - design preview. Palette + type from clarapucci.com:
   bg 253,251,247 / ink 46,42,57 / gold 228,200,145 / logo red / quiz bronze.
   Fonts: Cormorant Garamond + Jost (their Google Fonts pair). */
:root {
  --bg: #fdfbf7;
  --surface: #ffffff;
  --surface-2: #f5f2ec;
  --ink: #2e2a39;
  --ink-2: #5a5565;
  --ink-3: #97929f;
  --gold: #e4c891;
  --bronze: #9c7c5a;
  --red: #c42430;
  --line: rgba(46, 42, 57, 0.12);
  --line-soft: rgba(46, 42, 57, 0.07);
  --serif: 'Cormorant Garamond', Garamond, Baskerville, serif;
  --sans: 'Jost', 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 749px) { .wrap { padding: 0 20px; } }

/* ---------- type ---------- */
.kick {
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--bronze);
  margin: 0 0 10px;
}
.h-display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  letter-spacing: 0.02em;
  line-height: 1.12;
}
.h-section {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  letter-spacing: 0.02em;
  line-height: 1.15;
}
.h-card {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.45rem;
  line-height: 1.2;
}
.lead { color: var(--ink-2); font-size: 0.95rem; max-width: 62ch; }

/* ---------- buttons: one fill + one ghost ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 30px;
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }

/* ---------- header ---------- */
.site-header { background: var(--bg); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 60; }
.hdr-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 0 10px; }
.hdr-logo img { height: 44px; width: auto; }
.hdr-icons { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  background: none; border: none; cursor: pointer; color: var(--ink);
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  position: relative;
}
.icon-btn svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute; top: 3px; right: 2px; background: var(--red); color: #fff;
  font-size: 0.6rem; font-weight: 500; min-width: 15px; height: 15px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; padding: 0 3px;
}
.main-nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 2px; padding-bottom: 8px; }
.nav-item { position: relative; }
.nav-link {
  display: inline-block; padding: 8px 13px; font-size: 0.8rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-2);
  background: none; border: none; cursor: pointer; font-family: var(--sans);
}
.nav-item > .nav-link:hover, .nav-item.open > .nav-link { color: var(--ink); }
.dd {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: var(--surface); border: 1px solid var(--line); min-width: 215px;
  padding: 10px 0; display: none; z-index: 70; box-shadow: 0 14px 34px rgba(46, 42, 57, 0.08);
}
.nav-item:hover > .dd, .nav-item.open > .dd { display: block; }
.dd a { display: block; padding: 8px 22px; font-size: 0.86rem; color: var(--ink-2); }
.dd a:hover { color: var(--ink); background: var(--surface-2); }
.dd-label { padding: 8px 22px 2px; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3); }
.burger { display: none; }
@media (max-width: 919px) {
  .main-nav { display: none; }
  .burger { display: flex; }
  .hdr-logo img { height: 36px; }
}

/* mobile drawer */
.drawer {
  position: fixed; inset: 0 25% 0 0; background: var(--bg); z-index: 90; overflow-y: auto;
  transform: translateX(-102%); transition: transform 0.28s ease; border-right: 1px solid var(--line);
  padding: 22px;
}
.drawer.open { transform: none; }
.drawer-veil { position: fixed; inset: 0; background: rgba(46, 42, 57, 0.4); z-index: 85; opacity: 0; pointer-events: none; transition: opacity 0.25s; }
.drawer-veil.open { opacity: 1; pointer-events: auto; }
.drawer .grp { border-bottom: 1px solid var(--line-soft); }
.drawer .grp > button {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; font-family: var(--sans); font-size: 0.85rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); padding: 14px 2px; cursor: pointer;
}
.drawer .grp > button svg { transition: transform 0.2s; }
.drawer .grp.open > button svg { transform: rotate(180deg); }
.drawer .sub { display: none; padding: 0 2px 12px; }
.drawer .grp.open .sub { display: block; }
.drawer .sub a { display: block; padding: 7px 12px; font-size: 0.9rem; color: var(--ink-2); }
.drawer > a.solo { display: block; padding: 14px 2px; font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; border-bottom: 1px solid var(--line-soft); }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero img { width: 100%; height: auto; }
.hero-inner {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: center; padding: 0 6vw; max-width: 640px;
}
.hero .h-display { margin-bottom: 10px; }
.hero-sub { font-family: var(--serif); font-style: normal; font-size: 1.25rem; color: var(--ink-2); margin-bottom: 22px; }
.hero-rating { display: flex; align-items: center; gap: 9px; margin-top: 18px; font-size: 0.82rem; color: var(--ink-2); }
.hero-rating svg { width: 15px; height: 15px; }
@media (max-width: 749px) {
  .hero-inner { position: static; padding: 26px 20px 8px; max-width: none; text-align: center; align-items: center; }
}

/* ---------- sections ---------- */
.section { padding: 64px 0; }
.section-head { text-align: center; margin-bottom: 38px; }
.section-head .lead { margin: 12px auto 0; }
.band-dark { background: var(--ink); color: var(--bg); }
.band-dark .lead, .band-dark .kick { color: rgba(253, 251, 247, 0.72); }
.band-gold { background: var(--surface-2); }

/* occasion banners */
.occasion-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
.occ { position: relative; overflow: hidden; }
.occ img { width: 100%; height: auto; transition: transform 0.6s ease; }
.occ:hover img { transform: scale(1.03); }
.occ-copy {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center;
  padding: 0 5%; max-width: 480px;
}
.occ-copy .h-section { margin-bottom: 6px; }
.occ-copy p { font-size: 0.9rem; color: var(--ink-2); margin-bottom: 16px; max-width: 34ch; }
@media (max-width: 749px) {
  .occ img { min-height: 200px; object-fit: cover; }
  .occ-copy { position: static; max-width: none; padding: 18px 4px 6px; }
}

/* product cards */
.pgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 26px 22px; }
.pcard { display: block; }
.pcard .ph { overflow: hidden; background: var(--surface); border: 1px solid var(--line-soft); position: relative; }
.pcard .ph img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform 0.55s ease; }
.pcard:hover .ph img { transform: scale(1.05); }
.sale-flag {
  position: absolute; top: 10px; left: 10px; background: var(--ink); color: var(--bg);
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; padding: 4px 10px;
}
.pcard .pt { font-size: 0.88rem; font-weight: 400; color: var(--ink); margin: 12px 0 4px; line-height: 1.4; }
.pcard .pp { font-size: 0.9rem; color: var(--ink-2); }
.pp .was { text-decoration: line-through; color: var(--ink-3); margin-right: 8px; }
.pp .now { color: var(--red); }

/* slider */
.pslider { position: relative; }
.ptrack { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 4px; }
.ptrack::-webkit-scrollbar { display: none; }
.ptrack .pcard { flex: 0 0 240px; scroll-snap-align: start; }
.slide-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 22px; }
.slide-arrow {
  background: none; border: 1px solid var(--line); color: var(--ink); width: 40px; height: 40px;
  border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.slide-arrow:hover { border-color: var(--ink); }
.slide-arrow svg { width: 15px; height: 15px; }
.slide-dots { display: flex; gap: 7px; }
.slide-dots button { width: 7px; height: 7px; border-radius: 50%; border: none; background: var(--line); cursor: pointer; padding: 0; }
.slide-dots button.on { background: var(--ink); }

/* best seller split */
.bs-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 22px; align-items: stretch; }
.bs-photo img { width: 100%; height: 100%; object-fit: cover; }
.bs-card { background: var(--surface); border: 1px solid var(--line-soft); display: flex; flex-direction: column; }
.bs-card .ph { position: relative; overflow: hidden; }
.bs-card .ph img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform 0.55s; }
.bs-card:hover .ph img { transform: scale(1.04); }
.bs-card .info { padding: 16px 18px 20px; }
@media (max-width: 919px) { .bs-grid { grid-template-columns: 1fr 1fr; } .bs-photo { grid-column: 1 / -1; } .bs-photo img { max-height: 420px; } }
@media (max-width: 599px) { .bs-grid { grid-template-columns: 1fr; } }

/* promo strip */
.promo-strip { display: block; }
.promo-strip img { width: 100%; height: auto; }

/* trust columns */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.trust-grid .h-card { margin-bottom: 8px; }
.trust-grid p { font-size: 0.9rem; color: var(--ink-2); max-width: 36ch; margin: 0 auto; }
@media (max-width: 749px) { .trust-grid { grid-template-columns: 1fr; gap: 28px; } }

/* metal switcher */
.metal-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.metal-photo { position: relative; overflow: hidden; background: var(--surface); border: 1px solid var(--line-soft); }
.metal-photo img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.metal-tabs { display: flex; gap: 10px; margin: 22px 0 18px; flex-wrap: wrap; }
.metal-tab {
  display: flex; align-items: center; gap: 9px; border: 1px solid var(--line); background: var(--surface);
  padding: 10px 18px; cursor: pointer; font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.06em;
  color: var(--ink-2);
}
.metal-tab .dot { width: 14px; height: 14px; border-radius: 50%; border: 1px solid var(--line); }
.metal-tab.on { border-color: var(--ink); color: var(--ink); }
.metal-pick-title { font-size: 0.92rem; margin-bottom: 2px; }
.metal-pick-price { font-size: 0.9rem; color: var(--ink-2); margin-bottom: 16px; }
@media (max-width: 819px) { .metal-wrap { grid-template-columns: 1fr; gap: 26px; } }

/* about */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.about-grid img { border: 1px solid var(--line-soft); }
.about-copy p { font-size: 0.94rem; color: var(--ink-2); margin-bottom: 14px; }
.claims-line {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bronze);
  margin-top: 20px; font-weight: 400;
}
@media (max-width: 819px) { .about-grid { grid-template-columns: 1fr; gap: 28px; } }

/* collection trio */
.trio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.trio { display: block; }
.trio .ph { overflow: hidden; background: var(--surface); border: 1px solid var(--line-soft); }
.trio .ph img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform 0.55s; }
.trio:hover .ph img { transform: scale(1.04); }
.trio .h-card { margin: 16px 0 6px; }
.trio p { font-size: 0.88rem; color: var(--ink-2); }
@media (max-width: 749px) { .trio-grid { grid-template-columns: 1fr; } }

/* multirow */
.mrow { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; margin-bottom: 0; }
.mrow .m-img img { width: 100%; height: 100%; object-fit: cover; }
.mrow .m-copy { display: flex; flex-direction: column; justify-content: center; padding: 7% 8%; background: var(--surface-2); }
.mrow .m-copy .h-section { margin-bottom: 14px; }
.mrow .m-copy p { font-size: 0.92rem; color: var(--ink-2); margin-bottom: 18px; max-width: 52ch; }
@media (max-width: 819px) {
  .mrow { grid-template-columns: 1fr; }
  .mrow.flip .m-img { order: -1; }
}

/* why columns */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; text-align: center; }
.why-grid .h-card { margin-bottom: 8px; font-size: 1.3rem; }
.why-grid p { font-size: 0.86rem; color: var(--ink-2); }
@media (max-width: 919px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 549px) { .why-grid { grid-template-columns: 1fr; } }

/* newsletter */
.newsletter { text-align: center; }
.nl-form { display: flex; max-width: 420px; margin: 24px auto 0; border: 1px solid var(--ink); }
.nl-form input {
  flex: 1; border: none; background: transparent; padding: 13px 16px; font-family: var(--sans);
  font-size: 0.9rem; color: var(--ink); outline: none;
}
.nl-form button { border: none; }
.nl-ok { margin-top: 16px; font-size: 0.9rem; color: var(--bronze); }

/* footer */
.site-footer { border-top: 1px solid var(--line); padding: 54px 0 34px; background: var(--bg); }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 34px; }
.foot-grid h4 { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 400; color: var(--ink-3); margin-bottom: 14px; }
.foot-grid a { display: block; font-size: 0.88rem; color: var(--ink-2); padding: 4px 0; }
.foot-grid a:hover { color: var(--ink); }
.foot-logo img { height: 40px; width: auto; margin-bottom: 14px; }
.foot-note { font-size: 0.84rem; color: var(--ink-2); max-width: 34ch; }
.socials { display: flex; gap: 14px; margin-top: 16px; }
.socials a { color: var(--ink-2); border: 1px solid var(--line); border-radius: 50%; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; }
.socials a:hover { color: var(--ink); border-color: var(--ink); }
.socials svg { width: 15px; height: 15px; }
.foot-base { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 44px; padding-top: 20px; border-top: 1px solid var(--line-soft); font-size: 0.78rem; color: var(--ink-3); }
@media (max-width: 819px) { .foot-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- collection pages ---------- */
.page-head { padding: 46px 0 8px; }
.page-head .lead { margin-top: 10px; }
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  padding: 18px 0; border-bottom: 1px solid var(--line); margin-bottom: 30px; position: relative; z-index: 5;
}
.fsel {
  font-family: var(--sans); font-weight: 300; font-size: 0.84rem; color: var(--ink);
  border: 1px solid var(--line); background: var(--surface); padding: 9px 12px; min-width: 130px;
}
.fcount { margin-left: auto; font-size: 0.8rem; color: var(--ink-3); }
.fclear { background: none; border: none; font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bronze); cursor: pointer; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: -14px 0 22px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line);
  background: var(--surface); font-size: 0.8rem; padding: 5px 12px; color: var(--ink-2);
}
.chip button { background: none; border: none; cursor: pointer; color: var(--ink-3); font-size: 0.95rem; line-height: 1; padding: 0; }
.empty-note { text-align: center; color: var(--ink-2); padding: 46px 0; }
.load-more-row { text-align: center; margin: 36px 0 10px; }

/* ---------- PDP ---------- */
.pdp { display: grid; grid-template-columns: 1.1fr 1fr; gap: 54px; padding: 46px 0 20px; }
.crumb { font-size: 0.78rem; color: var(--ink-3); padding: 18px 0 0; }
.crumb a { color: var(--ink-2); }
.pdp-gallery .main { border: 1px solid var(--line-soft); background: var(--surface); cursor: zoom-in; overflow: hidden; }
.pdp-gallery .main img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.thumbs { display: flex; gap: 10px; margin-top: 12px; }
.thumbs button { border: 1px solid var(--line); background: var(--surface); padding: 0; cursor: pointer; width: 76px; }
.thumbs button.on { border-color: var(--ink); }
.thumbs img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.pdp-info .h-section { margin: 6px 0 12px; }
.pdp-price { font-size: 1.25rem; margin-bottom: 22px; }
.pdp-price .was { text-decoration: line-through; color: var(--ink-3); margin-right: 10px; font-size: 1rem; }
.pdp-price .now { color: var(--red); }
.opt-label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); margin: 18px 0 8px; }
.opt-row { display: flex; gap: 10px; flex-wrap: wrap; }
.opt-pill {
  border: 1px solid var(--line); background: var(--surface); padding: 9px 20px; cursor: pointer;
  font-family: var(--sans); font-size: 0.84rem; color: var(--ink-2);
}
.opt-pill.on { border-color: var(--ink); color: var(--ink); }
.qty-row { display: flex; align-items: center; gap: 14px; margin: 24px 0; }
.qty { display: flex; border: 1px solid var(--line); }
.qty button { width: 42px; height: 46px; background: none; border: none; font-size: 1.1rem; cursor: pointer; color: var(--ink); }
.qty span { width: 40px; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; }
.pdp-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.spec-list { margin: 30px 0 0; border-top: 1px solid var(--line); }
.spec-list .row { display: flex; justify-content: space-between; gap: 18px; padding: 10px 2px; border-bottom: 1px solid var(--line-soft); font-size: 0.88rem; }
.spec-list .row span:first-child { color: var(--ink-3); }
.acc { border-bottom: 1px solid var(--line-soft); }
.acc > button {
  width: 100%; display: flex; justify-content: space-between; align-items: center; background: none;
  border: none; font-family: var(--sans); font-size: 0.86rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink); padding: 16px 2px; cursor: pointer;
}
.acc > button svg { transition: transform 0.2s; width: 13px; height: 13px; }
.acc.open > button svg { transform: rotate(180deg); }
.acc .body { display: none; padding: 0 2px 16px; font-size: 0.9rem; color: var(--ink-2); }
.acc.open .body { display: block; }
@media (max-width: 819px) { .pdp { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- cart drawer ---------- */
.cart-panel {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 92vw); background: var(--bg);
  z-index: 95; transform: translateX(103%); transition: transform 0.28s ease;
  border-left: 1px solid var(--line); display: flex; flex-direction: column;
}
.cart-panel.open { transform: none; }
.cart-head { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid var(--line); }
.cart-head .h-card { font-size: 1.4rem; }
.cart-items { flex: 1; overflow-y: auto; padding: 10px 24px; }
.cart-line { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.cart-line img { width: 74px; height: 74px; object-fit: cover; border: 1px solid var(--line-soft); }
.cart-line .t { font-size: 0.84rem; line-height: 1.35; }
.cart-line .meta { font-size: 0.78rem; color: var(--ink-3); margin: 3px 0; }
.cart-line .rm { background: none; border: none; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); cursor: pointer; padding: 0; }
.cart-line .rm:hover { color: var(--red); }
.cart-foot { border-top: 1px solid var(--line); padding: 18px 24px 24px; }
.cart-sub { display: flex; justify-content: space-between; font-size: 0.95rem; margin-bottom: 6px; }
.cart-note { font-size: 0.78rem; color: var(--ink-3); margin-bottom: 14px; }
.cart-empty { text-align: center; color: var(--ink-2); padding: 44px 10px; }
.cart-ok { text-align: center; padding: 30px 10px; color: var(--bronze); font-size: 0.92rem; }

/* ---------- search overlay ---------- */
.search-veil {
  position: fixed; inset: 0; background: rgba(253, 251, 247, 0.98); z-index: 100; overflow-y: auto;
  display: none; padding: 8vh 6vw;
}
.search-veil.open { display: block; }
.search-box { max-width: 760px; margin: 0 auto; }
.search-row { display: flex; align-items: center; gap: 14px; border-bottom: 1px solid var(--ink); padding-bottom: 10px; }
.search-row input {
  flex: 1; border: none; background: none; outline: none; font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 300; color: var(--ink);
}
.search-hint { font-size: 0.78rem; color: var(--ink-3); margin-top: 10px; }
.search-results { max-width: 980px; margin: 34px auto 0; }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; background: rgba(28, 25, 36, 0.93); z-index: 110;
  display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(920px, 88vw); max-height: 86vh; object-fit: contain; }
.lb-btn {
  position: absolute; background: none; border: 1px solid rgba(253, 251, 247, 0.4); color: #fdfbf7;
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.lb-btn:hover { border-color: #fdfbf7; }
.lb-btn svg { width: 17px; height: 17px; }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }
.lb-cap { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: rgba(253, 251, 247, 0.85); font-size: 0.85rem; max-width: 80vw; text-align: center; }

/* ---------- quiz (ported from clarapucci.com Find Your Ring wizard) ---------- */
.fyr-steps-band { background: var(--surface); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); padding: 14px 0; margin: 30px 0 36px; }
.fyr-steps { display: flex; align-items: center; overflow-x: auto; }
.fyr-step { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--ink-3); cursor: pointer; white-space: nowrap; flex-shrink: 0; }
.fyr-step--active { color: var(--ink); font-weight: 500; }
.fyr-step--done { color: var(--bronze); }
.fyr-num {
  width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--line); display: flex;
  align-items: center; justify-content: center; font-size: 11px; background: var(--surface); color: var(--ink-2);
}
.fyr-step--active .fyr-num { background: var(--ink); color: #fff; border-color: var(--ink); }
.fyr-step--done .fyr-num { background: var(--bronze); color: #fff; border-color: var(--bronze); }
.fyr-div { flex: 1; height: 1px; background: var(--line-soft); margin: 0 10px; min-width: 18px; }
.fyr-pane { display: none; }
.fyr-pane.on { display: block; }
.fyr-pane-title { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; margin-bottom: 4px; }
.fyr-pane-sub { font-size: 0.86rem; color: var(--ink-2); margin-bottom: 22px; }
.fyr-metal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; max-width: 700px; }
.fyr-metal-card {
  display: flex; align-items: center; gap: 13px; border: 1px solid var(--line); background: var(--surface);
  padding: 16px 18px; cursor: pointer; transition: border-color 0.15s;
}
.fyr-metal-card.sel { border-color: var(--ink); }
.fyr-metal-dot { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line); flex-shrink: 0; }
.fyr-metal-label { font-size: 0.92rem; }
.fyr-metal-sub { font-size: 0.76rem; color: var(--ink-3); }
.fyr-gem-group { margin-bottom: 20px; }
.fyr-gem-title { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 10px; }
.fyr-pills { display: flex; flex-wrap: wrap; gap: 9px; }
.fyr-pill {
  border: 1px solid var(--line); background: var(--surface); padding: 7px 15px; font-size: 0.82rem;
  color: var(--ink-2); cursor: pointer; border-radius: 100px;
}
.fyr-pill.sel { border-color: var(--ink); color: var(--ink); background: var(--surface-2); }
.fyr-cut-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(105px, 1fr)); gap: 12px; }
.fyr-cut {
  border: 1px solid var(--line); background: var(--surface); padding: 14px 8px 10px; cursor: pointer;
  text-align: center; font-size: 0.78rem; color: var(--ink-2);
}
.fyr-cut.sel { border-color: var(--ink); color: var(--ink); }
.fyr-cut svg { margin: 0 auto 7px; display: block; }
.fyr-style-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 12px; }
.fyr-style { border: 1px solid var(--line); background: var(--surface); padding: 14px 16px; cursor: pointer; }
.fyr-style.sel { border-color: var(--ink); }
.fyr-style .n { font-size: 0.9rem; margin-bottom: 2px; }
.fyr-style .d { font-size: 0.76rem; color: var(--ink-3); }
.fyr-btn-row { display: flex; align-items: center; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.fyr-skip { font-size: 0.8rem; color: var(--ink-3); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.fyr-summary { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin: 18px 0; }
.fyr-sum-card { border: 1px solid var(--line-soft); background: var(--surface); padding: 12px 15px; }
.fyr-sum-label { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); }
.fyr-sum-val { font-size: 0.88rem; margin-top: 3px; }
.fyr-result-count { font-family: var(--serif); font-size: 1.3rem; }
.fyr-result-sub { font-size: 0.8rem; color: var(--ink-3); }
.fyr-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 20px; margin-top: 22px; }
.fyr-actions { display: flex; gap: 14px; align-items: center; margin-top: 28px; flex-wrap: wrap; }

/* misc */
.skip-link { position: absolute; left: -9999px; }
.center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
