/* =====================================================
   VVS — dark, luxe moissanite jewelry storefront
   ===================================================== */

:root {
  --bg: #0C0C0E;
  --bg-2: #131316;
  --bg-3: #1A1A1E;
  --ink: #F3F0EA;
  --ink-2: #EDEAE2;
  --muted: #9C988E;
  --muted-2: #75726B;
  --line: rgba(201, 162, 75, 0.18);
  --line-soft: rgba(243, 240, 234, 0.08);
  --gold: #C9A24B;
  --gold-bright: #D8B860;
  --gold-deep: #A8842F;
  --card: #FFFFFF;
  --card-champagne: #F7F4EE;
  --card-ink: #1a1a1a;
  --card-muted: #6a665e;
  --radius: 4px;
  --radius-lg: 8px;
  --maxw: 1240px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-card: 0 1px 2px rgba(0,0,0,0.4), 0 14px 40px rgba(0,0,0,0.35);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input { font-family: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.05; letter-spacing: -0.01em; }
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.serif { font-family: var(--serif); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans);
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 16px 34px;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  min-height: 48px;
  cursor: pointer;
}
.btn-gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #1a1306;
  border: 1px solid var(--gold-bright);
}
.btn-gold:hover { background: linear-gradient(180deg, #e4c777, var(--gold-bright)); box-shadow: 0 8px 26px rgba(201,162,75,0.3); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-bright); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 40px; }

/* ---------- Announcement bar ---------- */
.announce {
  background: #08080A;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase;
  text-align: center; padding: 10px 16px;
}
.announce strong { color: var(--gold-bright); font-weight: 600; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12,12,14,0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px; gap: 20px;
}
.brand {
  font-family: var(--serif); font-weight: 700; font-size: 30px;
  letter-spacing: 0.06em; line-height: 1; color: var(--ink);
}
.brand .dot { color: var(--gold); }
.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); font-weight: 500; transition: color 0.2s var(--ease);
  position: relative; padding: 4px 0;
}
.nav a:hover, .nav a.active { color: var(--ink); }
.nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--gold);
}
.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; color: var(--ink); transition: color 0.2s, background 0.2s; position: relative;
}
.icon-btn:hover { color: var(--gold-bright); background: rgba(255,255,255,0.04); }
.icon-btn svg { width: 21px; height: 21px; }
.cart-count {
  position: absolute; top: 4px; right: 2px;
  min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--gold); color: #1a1306;
  font-size: 10.5px; font-weight: 700; line-height: 18px;
  border-radius: 9px; text-align: center;
  font-family: var(--sans); letter-spacing: 0;
  transform: scale(0); transition: transform 0.25s var(--ease);
}
.cart-count.show { transform: scale(1); }
.hamburger { display: none; }

/* ---------- Mobile nav ---------- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 200;
  background: var(--bg); padding: 28px;
  transform: translateX(100%); transition: transform 0.35s var(--ease);
  display: flex; flex-direction: column;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.mobile-nav a {
  font-family: var(--serif); font-size: 30px; color: var(--ink);
  padding: 16px 0; border-bottom: 1px solid var(--line-soft);
}
.mobile-nav a:hover { color: var(--gold-bright); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.hero::before {
  content: ""; position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(201,162,75,0.16), rgba(201,162,75,0.04) 40%, transparent 68%);
  pointer-events: none;
}
.hero-inner {
  position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
  padding: 96px 0 104px;
}
.hero-copy .eyebrow { margin-bottom: 22px; }
.hero h1 {
  font-size: clamp(48px, 7vw, 90px); line-height: 0.98; margin-bottom: 26px;
}
.hero h1 em { font-style: italic; color: var(--gold-bright); }
.hero-lede { font-size: 18px; color: var(--muted); max-width: 480px; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--card-champagne);
  box-shadow: var(--shadow-card);
  aspect-ratio: 1 / 1;
}
.hero-media img { width: 100%; height: 100%; object-fit: contain; padding: 6%; }
.hero-media .corner {
  position: absolute; bottom: 18px; left: 18px; right: 18px;
  display: flex; justify-content: space-between; align-items: flex-end;
  color: var(--card-ink); font-family: var(--serif);
}

/* ---------- Trust strip ---------- */
.trust {
  border-bottom: 1px solid var(--line-soft); background: var(--bg-2);
}
.trust-inner {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px;
  padding: 20px 0;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 500;
}
.trust-item svg { width: 17px; height: 17px; stroke: var(--gold); flex-shrink: 0; }

/* ---------- Sections ---------- */
.section { padding: 92px 0; }
.section-tight { padding: 64px 0; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
  margin-bottom: 44px;
}
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 { font-size: clamp(34px, 4.4vw, 52px); }
.section-head p { color: var(--muted); max-width: 420px; margin-top: 10px; }
.section-link {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
  font-weight: 600; white-space: nowrap; border-bottom: 1px solid transparent; padding-bottom: 3px;
}
.section-link:hover { border-color: var(--gold); }
.center { text-align: center; }
.center .section-head { flex-direction: column; align-items: center; }
.center .section-head p { margin-left: auto; margin-right: auto; }

/* ---------- Product grid + cards ---------- */
.grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
}
.card {
  display: flex; flex-direction: column;
  background: transparent;
  border-radius: var(--radius-lg);
  transition: transform 0.3s var(--ease);
}
.card:hover { transform: translateY(-4px); }
.card-media {
  position: relative;
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: var(--shadow-card);
}
.card:hover .card-media { border-color: rgba(201,162,75,0.5); box-shadow: 0 1px 2px rgba(0,0,0,0.4), 0 22px 50px rgba(0,0,0,0.45); }
.card-media img { width: 100%; height: 100%; object-fit: contain; padding: 9%; }
.badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: var(--sans); font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 6px 11px; border-radius: 2px;
  background: rgba(12,12,14,0.9); color: var(--gold-bright);
  border: 1px solid var(--line);
}
.badge.solid { background: var(--gold); color: #1a1306; border-color: var(--gold); }
.quick-add {
  position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 2;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  background: rgba(12,12,14,0.92); color: var(--ink);
  border: 1px solid var(--line);
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 12px; border-radius: var(--radius); backdrop-filter: blur(6px);
  min-height: 44px;
}
.quick-add:hover { background: var(--gold); color: #1a1306; border-color: var(--gold); }
.card:hover .quick-add { opacity: 1; transform: translateY(0); }
.card-body { padding: 16px 4px 6px; display: flex; flex-direction: column; flex: 1; }
.card-name {
  font-family: var(--sans); font-size: 14.5px; font-weight: 500; color: var(--ink-2);
  line-height: 1.35; margin-bottom: 8px;
}
.card-name:hover { color: var(--gold-bright); }
.stars { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.stars-glyph { color: var(--gold); font-size: 12px; letter-spacing: 1px; }
.stars-glyph .empty { color: var(--muted-2); }
.stars span { font-size: 11.5px; color: var(--muted); }
.card-foot { margin-top: auto; display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.price { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--gold-bright); }
.card-mat { font-size: 11px; letter-spacing: 0.06em; color: var(--muted-2); text-transform: uppercase; }

/* ---------- Category tiles ---------- */
.tiles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.tile {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--card-champagne); aspect-ratio: 3 / 4;
  border: 1px solid var(--line-soft);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.tile:hover { transform: translateY(-4px); border-color: var(--gold); }
.tile img { width: 100%; height: 72%; object-fit: contain; padding: 12%; }
.tile-cap {
  position: absolute; inset: auto 0 0 0; padding: 16px 16px 18px;
  background: linear-gradient(180deg, transparent, rgba(12,12,14,0.92));
}
.tile-cap h3 { font-size: 19px; color: #fff; }
.tile-cap span { font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-bright); }

/* ---------- Featured spotlight ---------- */
.spotlight { display: grid; grid-template-columns: 1fr 1fr; }
.spotlight-media {
  background: var(--card-champagne); display: flex; align-items: center; justify-content: center; padding: 6%;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.spotlight-media img { width: 100%; max-width: 520px; object-fit: contain; }
.spotlight-copy {
  background: var(--bg-2); padding: 72px 64px;
  display: flex; flex-direction: column; justify-content: center;
  border: 1px solid var(--line-soft); border-left: none;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.spotlight-copy h2 { font-size: clamp(32px, 4vw, 48px); margin: 16px 0 18px; }
.spotlight-copy p { color: var(--muted); margin-bottom: 28px; max-width: 440px; }
.spotlight-price { font-family: var(--serif); font-size: 26px; color: var(--gold-bright); margin-bottom: 30px; }

/* ---------- Editorial band (why moissanite) ---------- */
.editorial { background: var(--bg-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.editorial-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 48px; }
.ed-item { padding: 28px 0; border-top: 1px solid var(--line); }
.ed-item .num { font-family: var(--serif); font-size: 15px; color: var(--gold); letter-spacing: 0.1em; }
.ed-item h3 { font-size: 24px; margin: 14px 0 10px; }
.ed-item p { color: var(--muted); font-size: 14.5px; }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: 32px 30px;
}
.review .stars-glyph { font-size: 14px; margin-bottom: 16px; }
.review p { font-family: var(--serif); font-size: 19px; line-height: 1.45; color: var(--ink-2); margin-bottom: 20px; }
.review .who { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.review .who b { color: var(--gold-bright); font-weight: 600; }

/* ---------- Newsletter ---------- */
.newsletter { text-align: center; }
.newsletter::before {
  content: ""; display: block; width: 40px; height: 1px; background: var(--gold); margin: 0 auto 28px;
}
.newsletter h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 14px; }
.newsletter p { color: var(--muted); max-width: 440px; margin: 0 auto 30px; }
.news-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.news-form input {
  flex: 1; background: var(--bg-2); border: 1px solid var(--line); color: var(--ink);
  padding: 0 18px; height: 52px; border-radius: var(--radius); font-size: 14px;
}
.news-form input:focus { outline: none; border-color: var(--gold); }
.news-form input::placeholder { color: var(--muted-2); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line-soft); background: #08080A; padding: 72px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
.footer-brand .brand { font-size: 32px; margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: 14px; max-width: 300px; }
.footer-col h4 { font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 18px; font-weight: 600; }
.footer-col a { display: block; color: var(--muted); font-size: 14px; padding: 6px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  padding-top: 28px; border-top: 1px solid var(--line-soft);
  font-size: 12px; color: var(--muted-2); letter-spacing: 0.06em;
}

/* ---------- Cart drawer ---------- */
.drawer-overlay {
  position: fixed; inset: 0; z-index: 300; background: rgba(0,0,0,0.6);
  opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; z-index: 301; height: 100%;
  width: min(420px, 92vw); background: var(--bg);
  border-left: 1px solid var(--line); display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.35s var(--ease);
}
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 24px 26px; border-bottom: 1px solid var(--line-soft); }
.drawer-head h3 { font-size: 24px; }
.drawer-head .count-pill { font-size: 11px; color: var(--muted); letter-spacing: 0.1em; }
.drawer-body { flex: 1; overflow-y: auto; padding: 8px 26px; }
.drawer-empty { text-align: center; padding: 80px 20px; color: var(--muted); }
.drawer-empty svg { width: 40px; height: 40px; stroke: var(--muted-2); margin: 0 auto 18px; }
.line {
  display: grid; grid-template-columns: 76px 1fr auto; gap: 14px; padding: 20px 0;
  border-bottom: 1px solid var(--line-soft);
}
.line-img { background: var(--card); border-radius: var(--radius); aspect-ratio: 1/1; overflow: hidden; }
.line-img img { width: 100%; height: 100%; object-fit: contain; padding: 8%; }
.line-name { font-size: 13.5px; font-weight: 500; color: var(--ink-2); line-height: 1.35; }
.line-meta { font-size: 11.5px; color: var(--muted); margin-top: 4px; letter-spacing: 0.04em; }
.line-price { font-family: var(--serif); font-size: 16px; color: var(--gold-bright); margin-top: 8px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius); margin-top: 10px; }
.qty button { width: 30px; height: 30px; color: var(--ink); font-size: 16px; display: flex; align-items: center; justify-content: center; }
.qty button:hover { color: var(--gold-bright); }
.qty span { min-width: 30px; text-align: center; font-size: 13px; }
.line-remove { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); text-align: right; align-self: start; }
.line-remove:hover { color: var(--gold-bright); }
.drawer-foot { padding: 22px 26px 28px; border-top: 1px solid var(--line); }
.subtotal-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.subtotal-row .lbl { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.subtotal-row .amt { font-family: var(--serif); font-size: 26px; color: var(--ink); }
.ship-note { font-size: 11.5px; color: var(--muted-2); margin-bottom: 18px; letter-spacing: 0.06em; }

/* ---------- Shop page ---------- */
.page-head { padding: 64px 0 40px; border-bottom: 1px solid var(--line-soft); text-align: center; }
.page-head .eyebrow { margin-bottom: 16px; }
.page-head h1 { font-size: clamp(40px, 6vw, 68px); }
.page-head p { color: var(--muted); margin-top: 14px; }
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; padding: 30px 0; }
.chip {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
  padding: 11px 20px; border-radius: 40px; border: 1px solid var(--line-soft); color: var(--muted);
  transition: all 0.2s var(--ease); min-height: 42px;
}
.chip:hover { color: var(--ink); border-color: var(--line); }
.chip.active { background: var(--gold); color: #1a1306; border-color: var(--gold); }
.count-line { text-align: center; color: var(--muted-2); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; padding-bottom: 30px; }

/* ---------- Product page ---------- */
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; padding: 56px 0 80px; }
.pdp-media { position: sticky; top: 100px; align-self: start; }
.pdp-media .frame {
  background: var(--card); border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 1/1; box-shadow: var(--shadow-card); border: 1px solid var(--line-soft);
  position: relative;
}
.pdp-media .frame img { width: 100%; height: 100%; object-fit: contain; padding: 8%; }
.pdp-media .badge { top: 18px; left: 18px; }
.pdp-info .crumb { font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 18px; }
.pdp-info .crumb a:hover { color: var(--gold-bright); }
.pdp-info h1 { font-size: clamp(34px, 4.5vw, 50px); margin-bottom: 16px; line-height: 1.04; }
.pdp-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.pdp-rating .stars-glyph { font-size: 15px; }
.pdp-rating span { font-size: 13px; color: var(--muted); }
.pdp-price { font-family: var(--serif); font-size: 34px; color: var(--gold-bright); margin-bottom: 26px; }
.pdp-lede { color: var(--muted); margin-bottom: 30px; max-width: 480px; }
.spec-list { border-top: 1px solid var(--line-soft); margin-bottom: 30px; }
.spec-row { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid var(--line-soft); font-size: 14px; }
.spec-row .k { color: var(--muted); letter-spacing: 0.04em; }
.spec-row .v { color: var(--ink-2); font-weight: 500; text-align: right; }
.selector-label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; display: block; }
.size-opts { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 28px; }
.size-opt {
  min-width: 52px; height: 48px; padding: 0 14px; border: 1px solid var(--line); border-radius: var(--radius);
  color: var(--ink-2); font-size: 14px; transition: all 0.2s var(--ease);
}
.size-opt:hover { border-color: var(--gold); }
.size-opt.active { background: var(--gold); color: #1a1306; border-color: var(--gold); font-weight: 600; }
.one-size { display: inline-block; padding: 12px 20px; border: 1px solid var(--line-soft); border-radius: var(--radius); color: var(--muted); font-size: 13px; letter-spacing: 0.08em; margin-bottom: 28px; }
.buy-row { display: flex; gap: 12px; margin-bottom: 16px; align-items: stretch; }
.buy-row .qty { margin-top: 0; height: 54px; }
.buy-row .qty button { width: 44px; height: 100%; font-size: 18px; }
.buy-row .btn { flex: 1; }
.pdp-trust { margin-top: 30px; border-top: 1px solid var(--line-soft); padding-top: 26px; display: grid; gap: 14px; }
.pdp-trust .t { display: flex; gap: 12px; align-items: flex-start; }
.pdp-trust svg { width: 19px; height: 19px; stroke: var(--gold); flex-shrink: 0; margin-top: 1px; }
.pdp-trust .t b { font-size: 13.5px; font-weight: 600; color: var(--ink-2); display: block; }
.pdp-trust .t small { font-size: 12.5px; color: var(--muted); }
.pdp-desc { padding: 48px 0; border-top: 1px solid var(--line-soft); max-width: 760px; }
.pdp-desc h3 { font-size: 28px; margin-bottom: 18px; }
.pdp-desc p { color: var(--muted); font-size: 16px; }

/* ---------- Cart page ---------- */
.cart-page { padding: 56px 0 90px; display: grid; grid-template-columns: 1.6fr 0.8fr; gap: 48px; align-items: start; }
.cart-lines { border-top: 1px solid var(--line-soft); }
.cart-line { display: grid; grid-template-columns: 100px 1fr auto; gap: 22px; padding: 28px 0; border-bottom: 1px solid var(--line-soft); }
.cart-line .line-img { background: var(--card); border-radius: var(--radius); aspect-ratio: 1/1; overflow: hidden; }
.cart-line h3 { font-family: var(--sans); font-size: 16px; font-weight: 500; color: var(--ink-2); margin-bottom: 6px; }
.cart-line .line-price { font-size: 18px; }
.cart-summary { background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 32px 30px; position: sticky; top: 100px; }
.cart-summary h3 { font-size: 24px; margin-bottom: 22px; }
.sum-row { display: flex; justify-content: space-between; padding: 11px 0; font-size: 14px; color: var(--muted); }
.sum-row.total { border-top: 1px solid var(--line); margin-top: 12px; padding-top: 20px; }
.sum-row.total .lbl { color: var(--ink); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; }
.sum-row.total .amt { font-family: var(--serif); font-size: 28px; color: var(--gold-bright); }
.cart-empty { text-align: center; padding: 100px 20px; }
.cart-empty h2 { font-size: 40px; margin-bottom: 14px; }
.cart-empty p { color: var(--muted); margin-bottom: 30px; }

/* ---------- About ---------- */
.about-hero { padding: 90px 0 70px; text-align: center; position: relative; overflow: hidden; border-bottom: 1px solid var(--line-soft); }
.about-hero::before { content:""; position:absolute; top:-40%; left:50%; transform:translateX(-50%); width:800px; height:600px; background: radial-gradient(ellipse at center, rgba(201,162,75,0.13), transparent 65%); }
.about-hero h1 { font-size: clamp(44px, 7vw, 84px); position: relative; margin-bottom: 22px; }
.about-hero p { position: relative; color: var(--muted); font-size: 19px; max-width: 600px; margin: 0 auto; }
.about-body { padding: 80px 0; max-width: 760px; margin: 0 auto; }
.about-body p { font-size: 17px; color: var(--ink-2); margin-bottom: 24px; line-height: 1.75; }
.about-body p.lead { font-family: var(--serif); font-size: 26px; line-height: 1.4; color: var(--ink); }
.about-body h2 { font-size: 34px; margin: 18px 0 18px; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 60px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); margin: 20px 0 40px; }
.about-stat { text-align: center; }
.about-stat .n { font-family: var(--serif); font-size: 52px; color: var(--gold-bright); line-height: 1; }
.about-stat .l { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 12px; }

/* "You may also like" / related */
.related { padding: 70px 0 90px; border-top: 1px solid var(--line-soft); }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--gold); color: #1a1306; font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  padding: 14px 26px; border-radius: var(--radius); z-index: 400; opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
  .tiles { grid-template-columns: repeat(3, 1fr); }
  .editorial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 0 70px; }
  .hero-media { max-width: 460px; margin: 0 auto; width: 100%; }
  .spotlight { grid-template-columns: 1fr; }
  .spotlight-media { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .spotlight-copy { border-left: 1px solid var(--line-soft); border-top: none; border-radius: 0 0 var(--radius-lg) var(--radius-lg); padding: 48px 36px; }
  .reviews { grid-template-columns: 1fr; }
  .pdp { grid-template-columns: 1fr; gap: 36px; }
  .pdp-media { position: static; max-width: 480px; margin: 0 auto; width: 100%; }
  .cart-page { grid-template-columns: 1fr; gap: 32px; }
  .cart-summary { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  .wrap { padding: 0 18px; }
  .section { padding: 64px 0; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .tiles { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .tiles .tile:last-child { grid-column: 1 / -1; aspect-ratio: 16/7; }
  .editorial-grid { grid-template-columns: 1fr; gap: 0; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .center .section-head { align-items: center; }
  .quick-add { opacity: 1; transform: none; position: static; margin-top: 12px; }
  .card-media .quick-add { display: none; }
  .card-body .quick-add { display: block; }
  .news-form { flex-direction: column; }
  .cart-line { grid-template-columns: 80px 1fr; }
  .cart-line .line-remove { grid-column: 2; }
  .about-stats { grid-template-columns: 1fr; gap: 36px; }
  .brand { font-size: 26px; }
}
@media (min-width: 681px) { .card-body .quick-add { display: none; } }
