/* ============================================================
   ZERELIX LAB — luxury black / gold / silver design system
   ============================================================ */

:root {
  --bg:        #08080a;
  --bg-2:      #0d0e11;
  --panel:     #121319;
  --panel-2:   #16171e;
  --line:      rgba(201, 168, 76, 0.18);
  --line-soft: rgba(255, 255, 255, 0.07);

  --text:      #ece9e1;
  --muted:     #9a9aa2;
  --faint:     #6c6c74;

  --gold:      #c8a24a;
  --gold-lite: #f4d77e;
  --gold-deep: #9b7521;
  --gold-grad: linear-gradient(135deg, #f6dd8a 0%, #c8a24a 45%, #9b7521 100%);
  --silver:    #d4d7dc;
  --silver-grad: linear-gradient(135deg, #ffffff 0%, #c9ccd1 45%, #8d9097 100%);

  --shadow:    0 24px 60px rgba(0,0,0,0.55);
  --radius:    14px;

  --display: "Cinzel", Georgia, serif;
  --body: "Manrope", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* atmospheric background glow + fine grain */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(900px 600px at 82% -8%, rgba(200,162,74,0.10), transparent 60%),
    radial-gradient(800px 700px at -10% 110%, rgba(160,168,180,0.06), transparent 55%);
  pointer-events: none; z-index: 0;
}
body::after {
  content: "";
  position: fixed; inset: 0;
  opacity: 0.035; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

main, header, footer { position: relative; z-index: 1; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { width: min(1180px, 92vw); margin-inline: auto; }

/* ---------- typography helpers ---------- */
.eyebrow {
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.serif { font-family: var(--display); font-weight: 600; }
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.silver-text {
  background: var(--silver-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

h1, h2, h3 { font-family: var(--display); font-weight: 700; line-height: 1.12; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8,8,10,0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 48px; height: 48px; border-radius: 50%; box-shadow: 0 0 0 1px var(--line), 0 6px 18px rgba(0,0,0,.5); }
.brand-name { font-family: var(--display); font-weight: 700; font-size: 1.12rem; letter-spacing: 0.18em; }
.brand-name small { display: block; font-family: var(--body); font-weight: 600; font-size: 0.58rem; letter-spacing: 0.4em; color: var(--gold); margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a { font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }

.nav-cart {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); padding: 9px 16px; border-radius: 40px;
  color: var(--text); font-size: 0.8rem; letter-spacing: 0.06em;
  transition: border-color .2s, background .2s;
}
.nav-cart:hover { border-color: var(--gold); background: rgba(200,162,74,0.07); }
.nav-cart .count {
  min-width: 20px; height: 20px; padding: 0 5px; border-radius: 20px;
  background: var(--gold-grad); color: #1a1407; font-weight: 800; font-size: 0.72rem;
  display: inline-flex; align-items: center; justify-content: center;
}
.nav-toggle { display: none; background: none; border: 0; color: var(--text); font-size: 1.5rem; cursor: pointer; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--body); font-weight: 700; font-size: 0.84rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 26px; border-radius: 40px; border: 1px solid transparent;
  cursor: pointer; transition: transform .15s, box-shadow .2s, background .2s, color .2s;
}
.btn:active { transform: translateY(1px); }
.btn-gold { background: var(--gold-grad); color: #191305; box-shadow: 0 10px 26px rgba(200,162,74,0.22); }
.btn-gold:hover { box-shadow: 0 14px 34px rgba(200,162,74,0.38); }
.btn-ghost { border-color: var(--line); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-lite); }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 86px 0 64px; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.hero h1 { font-size: clamp(2.6rem, 5.4vw, 4.4rem); letter-spacing: 0.02em; }
.hero h1 .line2 { display: block; }
.hero p.lead { color: var(--muted); font-size: 1.06rem; max-width: 30rem; margin: 22px 0 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 34px; margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line-soft); }
.hero-stats .stat .n { font-family: var(--display); font-size: 1.7rem; font-weight: 700; }
.hero-stats .stat .l { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); }

.hero-art { position: relative; }
.hero-art img { border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line-soft); }
.hero-art .ring {
  position: absolute; inset: -18px; border-radius: calc(var(--radius) + 18px);
  border: 1px solid var(--line); pointer-events: none;
}

/* reveal-on-load */
.reveal { opacity: 0; transform: translateY(22px); animation: rise .7s cubic-bezier(.2,.7,.2,1) forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section { padding: 72px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.section-head p { color: var(--muted); max-width: 34rem; margin-top: 10px; }
.section.alt { background: linear-gradient(180deg, var(--bg-2), var(--bg)); border-block: 1px solid var(--line-soft); }

/* notice strips */
.notice {
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
  text-align: center; font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); padding: 12px 16px;
  background: linear-gradient(90deg, transparent, rgba(200,162,74,0.06), transparent);
  border-block: 1px solid var(--line-soft);
}

/* ============================================================
   PRODUCT CARDS (hot sellers)
   ============================================================ */
.card-grid { display: grid; gap: 22px; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1080px){ .card-grid { grid-template-columns: repeat(3,1fr);} }
@media (max-width: 760px){ .card-grid { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 480px){ .card-grid { grid-template-columns: 1fr;} }

.product {
  display: flex; flex-direction: column;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  overflow: hidden; transition: transform .25s, border-color .25s, box-shadow .25s;
}
.product:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow); }
.product .media {
  position: relative; aspect-ratio: 1/1; display: grid; place-items: center;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(200,162,74,0.08), transparent 60%),
    linear-gradient(180deg, #0c0c10, #050507);
  border-bottom: 1px solid var(--line-soft); overflow: hidden;
}
.product .media { aspect-ratio: 4/5; }
.product .media img { height: 100%; width: 100%; object-fit: contain; padding: 16px 10px; }
.product .media .glyph {
  font-family: var(--display); font-weight: 700; font-size: 2.4rem; letter-spacing: .04em;
}
.product .media .glyph span { display:block; font-family: var(--body); font-size:.6rem; letter-spacing:.4em; color:var(--gold); text-align:center; margin-top:6px;}
.product .pill {
  position: absolute; top: 12px; left: 12px;
  font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 30px; background: rgba(0,0,0,.55);
  border: 1px solid var(--line); color: var(--gold-lite);
}
.product .body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product .name { font-family: var(--display); font-weight: 700; font-size: 1.18rem; }
.product .dose { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); }
.product .blurb { font-size: 0.84rem; color: var(--muted); margin: 6px 0 2px; }
.product .foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 14px; }
.product .price { font-family: var(--display); font-weight: 700; font-size: 1.3rem; }
.product .price::before { content: "$"; font-size: 0.8em; color: var(--gold); margin-right: 1px; }

.add-btn {
  border: 1px solid var(--line); background: rgba(200,162,74,.06); color: var(--gold-lite);
  border-radius: 40px; padding: 9px 16px; font-weight: 700; font-size: 0.74rem;
  letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: all .2s;
  white-space: nowrap;
}
.add-btn:hover { background: var(--gold-grad); color: #191305; border-color: transparent; }
.add-btn.added { background: var(--silver-grad); color:#15161a; border-color: transparent; }

.variant-select {
  width: 100%; margin-top: 6px; background: #0a0a0d; color: var(--text);
  border: 1px solid var(--line-soft); border-radius: 10px; padding: 8px 10px;
  font-family: var(--body); font-size: 0.82rem;
}

/* ============================================================
   STACKS
   ============================================================ */
.stack-grid { display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px){ .stack-grid { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 620px){ .stack-grid { grid-template-columns: 1fr;} }

.stack {
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(180deg, var(--panel), #0c0d11);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px;
  transition: transform .25s, box-shadow .25s;
}
.stack:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.stack .num { font-family: var(--display); font-weight: 700; font-size: 2.6rem; line-height: 1; color: rgba(200,162,74,.28); }
.stack h3 { font-size: 1.32rem; margin-top: 6px; }
.stack .tag { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.stack .comp { list-style: none; margin: 18px 0; display: flex; flex-direction: column; gap: 9px; }
.stack .comp li { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 0.9rem; border-bottom: 1px dashed var(--line-soft); padding-bottom: 9px; }
.stack .comp li:last-child { border-bottom: 0; }
.stack .comp .d { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.06em; }
.stack .foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 8px; }
.stack .price { font-family: var(--display); font-weight: 700; font-size: 1.6rem; }
.stack .price::before { content: "$"; font-size: 0.74em; color: var(--gold); }
.badge {
  position: absolute; top: -11px; right: 18px;
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 800;
  padding: 6px 12px; border-radius: 30px; background: var(--gold-grad); color: #191305;
  box-shadow: 0 8px 20px rgba(200,162,74,.3);
}
.badge.silver { background: var(--silver-grad); color: #15161a; }

/* ============================================================
   CATALOG TABLE BLOCKS
   ============================================================ */
.cat-block { margin-bottom: 30px; break-inside: avoid; }
.cat-block h3 {
  display: flex; align-items: center; gap: 12px; font-size: 1.18rem;
  padding-bottom: 12px; margin-bottom: 6px; border-bottom: 1px solid var(--line);
}
.cat-block h3 .bar { width: 26px; height: 2px; background: var(--gold-grad); }
.cat-list { display: flex; flex-direction: column; }
.cat-row {
  display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 14px;
  padding: 11px 4px; border-bottom: 1px solid var(--line-soft);
}
.cat-row:hover { background: rgba(255,255,255,0.015); }
.cat-row .n { font-weight: 600; }
.cat-row .n small { display:block; color: var(--faint); font-weight: 500; font-size: 0.72rem; letter-spacing: 0.06em; }
.cat-row .p { font-family: var(--display); font-weight: 700; color: var(--gold-lite); min-width: 78px; text-align: right; }
.cat-row .p::before { content:"$"; font-size:.78em; opacity:.8; }
.cat-columns { columns: 2; column-gap: 46px; }
@media (max-width: 820px){ .cat-columns { columns: 1; } }

.cat-row .variant-select { width: auto; margin: 0; padding: 6px 8px; }
.row-add {
  border: 1px solid var(--line); background: transparent; color: var(--gold-lite);
  width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: 1.1rem;
  display: grid; place-items: center; transition: all .2s; flex-shrink: 0;
}
.row-add:hover { background: var(--gold-grad); color: #191305; border-color: transparent; }

/* ============================================================
   FULL CATALOG IMAGE REFERENCE
   ============================================================ */
.catalog-ref { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* ============================================================
   CART / CHECKOUT
   ============================================================ */
.checkout-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 36px; align-items: start; }
@media (max-width: 900px){ .checkout-grid { grid-template-columns: 1fr; } }

.panel {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 26px;
}
.panel + .panel { margin-top: 22px; }
.panel h3 { font-size: 1.25rem; margin-bottom: 4px; }
.panel .sub { color: var(--muted); font-size: 0.88rem; margin-bottom: 18px; }

.cart-item { display: grid; grid-template-columns: 1fr auto auto; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.cart-item .ci-name { font-weight: 600; }
.cart-item .ci-name small { display: block; color: var(--faint); font-size: 0.74rem; letter-spacing: 0.06em; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line-soft); border-radius: 30px; overflow: hidden; }
.qty button { background: transparent; border: 0; color: var(--text); width: 30px; height: 30px; cursor: pointer; font-size: 1rem; }
.qty button:hover { color: var(--gold); }
.qty span { min-width: 26px; text-align: center; font-weight: 700; font-size: 0.9rem; }
.cart-item .ci-price { font-family: var(--display); font-weight: 700; min-width: 72px; text-align: right; }
.cart-item .ci-price::before { content:"$"; color: var(--gold); font-size:.8em; }
.ci-remove { background: none; border: 0; color: var(--faint); cursor: pointer; font-size: 1.1rem; transition: color .2s; }
.ci-remove:hover { color: #d98a8a; }

.summary-row { display: flex; justify-content: space-between; padding: 9px 0; color: var(--muted); }
.summary-row.total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 16px; color: var(--text); font-size: 1.15rem; }
.summary-row.note { padding: 0 0 6px; color: var(--faint); font-size: 0.74rem; letter-spacing: 0.04em; }
.summary-row.note span { margin-top: -4px; }
.summary-row.total b { font-family: var(--display); font-size: 1.5rem; }
.summary-row.total b::before { content:"$"; color: var(--gold); font-size:.74em; }

.empty-cart { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty-cart .glyph { font-family: var(--display); font-size: 3rem; color: rgba(200,162,74,.3); }

/* verification checkboxes */
.verify-list { display: flex; flex-direction: column; gap: 14px; margin: 6px 0 4px; }
.check {
  display: flex; gap: 14px; align-items: flex-start; cursor: pointer;
  padding: 14px 16px; border: 1px solid var(--line-soft); border-radius: 12px;
  background: #0b0b0e; transition: border-color .2s, background .2s;
}
.check:hover { border-color: var(--line); }
.check.checked { border-color: var(--gold); background: rgba(200,162,74,0.05); }
.check input { position: absolute; opacity: 0; pointer-events: none; }
.check .box {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 6px; margin-top: 1px;
  border: 1px solid var(--line); display: grid; place-items: center; transition: all .2s;
}
.check.checked .box { background: var(--gold-grad); border-color: transparent; }
.check.checked .box::after { content: "✓"; color: #191305; font-weight: 900; font-size: 0.9rem; }
.check .label { font-size: 0.88rem; color: var(--text); }
.check .label b { color: var(--gold-lite); }

/* payment options */
.pay-options { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.pay {
  border: 1px solid var(--line-soft); border-radius: 12px; overflow: hidden; transition: border-color .2s;
}
.pay.active { border-color: var(--gold); }
.pay-head {
  display: flex; align-items: center; gap: 14px; padding: 16px 18px; cursor: pointer; background: #0b0b0e;
}
.pay-head .ic { width: 38px; height: 38px; border-radius: 9px; display: grid; place-items: center; background: rgba(200,162,74,.08); border: 1px solid var(--line-soft); color: var(--gold-lite); }
.pay-head .ic svg { width: 20px; height: 20px; }
.pay-head .t { flex: 1; }
.pay-head .t b { display: block; font-size: 0.98rem; }
.pay-head .t span { font-size: 0.78rem; color: var(--muted); }
.pay-head .radio { width: 20px; height: 20px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; }
.pay.active .pay-head .radio::after { content:""; width: 11px; height: 11px; border-radius: 50%; background: var(--gold-grad); }
.pay-detail { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.pay.active .pay-detail { max-height: 460px; }
.pay-detail-inner { padding: 4px 18px 20px; border-top: 1px solid var(--line-soft); }
.pay-field {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: #060607; border: 1px solid var(--line-soft); border-radius: 10px;
  padding: 12px 14px; margin-top: 12px;
}
.pay-field .k { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }
.pay-field .v { font-family: var(--display); font-weight: 700; font-size: 1.02rem; word-break: break-all; }
.copy-btn { background: none; border: 1px solid var(--line); color: var(--gold-lite); border-radius: 8px; padding: 6px 12px; font-size: 0.72rem; letter-spacing:.08em; text-transform: uppercase; cursor: pointer; transition: all .2s; white-space: nowrap; }
.copy-btn:hover { background: var(--gold-grad); color: #191305; border-color: transparent; }
.pay-note { font-size: 0.84rem; color: var(--muted); margin-top: 14px; line-height: 1.7; }
.pay-note b { color: var(--gold-lite); }

.form-err { color: #e69a9a; font-size: 0.84rem; margin-top: 12px; display: none; }
.form-err.show { display: block; }

/* ============================================================
   AGE VERIFICATION GATE
   ============================================================ */
body.age-locked { overflow: hidden; }
.age-gate {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  background:
    radial-gradient(700px 460px at 50% -6%, rgba(200,162,74,0.14), transparent 60%),
    rgba(6,6,9,0.97);
  backdrop-filter: blur(8px);
}
.age-card {
  width: min(486px, 100%); text-align: center;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line); border-radius: 20px; padding: 40px 34px 34px;
  box-shadow: var(--shadow); animation: rise .4s ease;
}
.age-logo { width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 18px; box-shadow: 0 0 0 1px var(--line), 0 8px 22px rgba(0,0,0,.5); }
.age-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
  color: var(--gold); border: 1px solid var(--line); border-radius: 30px; padding: 6px 14px;
}
.age-pill svg { width: 14px; height: 14px; }
.age-card h2 { font-size: clamp(1.7rem, 4.4vw, 2.3rem); margin: 18px 0 12px; }
.age-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 22px; }
.age-card p b { color: var(--text); }
.age-warn {
  text-align: left; background: rgba(200,162,74,0.05);
  border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; margin-bottom: 24px;
}
.age-warn b { display: block; color: var(--gold-lite); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 6px; }
.age-warn span { font-size: 0.82rem; color: var(--faint); line-height: 1.65; }
.age-exit { display: inline-block; margin-top: 18px; color: var(--muted); font-size: 0.85rem; text-decoration: underline; transition: color .2s; }
.age-exit:hover { color: var(--text); }

/* shipping & contact info form */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px; }
.form-grid .span-2 { grid-column: 1 / -1; }
@media (max-width: 520px){ .form-grid { grid-template-columns: 1fr; } .form-grid .span-2 { grid-column: auto; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); }
.field input {
  background: #060607; border: 1px solid var(--line-soft); border-radius: 10px;
  padding: 12px 14px; color: var(--text); font-family: var(--body); font-size: 0.92rem;
  transition: border-color .2s, background .2s;
}
.field input::placeholder { color: #54545c; }
.field input:focus { outline: none; border-color: var(--gold); background: #0a0a0c; }

.ship-h { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin: 22px 0 12px; }
.ship-opt {
  display: flex; align-items: center; gap: 14px; cursor: pointer;
  padding: 16px 18px; border: 1px solid var(--line-soft); border-radius: 12px; background: #0b0b0e;
  transition: border-color .2s, background .2s;
}
.ship-opt.selected { border-color: var(--gold); background: rgba(200,162,74,0.05); }
.ship-opt input { position: absolute; opacity: 0; pointer-events: none; }
.ship-radio { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; }
.ship-opt.selected .ship-radio::after { content: ""; width: 11px; height: 11px; border-radius: 50%; background: var(--gold-grad); }
.ship-main { flex: 1; }
.ship-main b { display: block; font-size: 0.96rem; }
.ship-main span { font-size: 0.78rem; color: var(--muted); }
.ship-price { font-family: var(--display); font-weight: 700; font-size: 1.1rem; color: var(--gold-lite); }

/* ============================================================
   CONTACT MODAL
   ============================================================ */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 100; background: rgba(4,4,6,.72);
  backdrop-filter: blur(6px); display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-backdrop.open { display: flex; }
.modal {
  width: min(420px, 100%); background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line); border-radius: 18px; padding: 28px; box-shadow: var(--shadow);
  animation: rise .35s ease;
}
.modal h3 { font-size: 1.4rem; }
.modal p { color: var(--muted); font-size: 0.88rem; margin: 6px 0 18px; }
.contact-opt {
  display: flex; align-items: center; gap: 14px; padding: 14px; border-radius: 12px;
  border: 1px solid var(--line-soft); margin-bottom: 10px; transition: border-color .2s, background .2s;
}
.contact-opt:hover { border-color: var(--gold); background: rgba(200,162,74,.05); }
.contact-opt .ic { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: rgba(200,162,74,.08); color: var(--gold-lite); }
.contact-opt .ic svg { width: 22px; height: 22px; }
.contact-opt .t b { display: block; }
.contact-opt .t span { font-size: 0.8rem; color: var(--muted); }
.modal-close { position: absolute; }

/* floating contact button */
.fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%; border: 1px solid var(--gold);
  background: var(--gold-grad); color: #191305; cursor: pointer;
  display: grid; place-items: center; box-shadow: 0 12px 30px rgba(200,162,74,.4);
  transition: transform .2s;
}
.fab:hover { transform: scale(1.07); }
.fab svg { width: 26px; height: 26px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { border-top: 1px solid var(--line-soft); background: var(--bg-2); padding: 60px 0 32px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
@media (max-width: 760px){ .footer-grid { grid-template-columns: 1fr; gap: 30px; } }
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer-brand img { width: 56px; height: 56px; border-radius: 50%; box-shadow: 0 0 0 1px var(--line); }
.site-footer p.tag { color: var(--muted); font-size: 0.9rem; max-width: 26rem; }
.footer-col h4 { font-family: var(--body); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col a, .footer-col .item { display: flex; align-items: center; gap: 10px; color: var(--muted); margin-bottom: 12px; font-size: 0.9rem; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-col svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--gold-lite); }
.footer-bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.78rem; color: var(--faint); }
.footer-disclaimer { font-size: 0.76rem; color: var(--faint); margin-top: 18px; line-height: 1.7; max-width: 30rem; }

/* toast */
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(120%);
  background: var(--silver-grad); color: #15161a; font-weight: 700; font-size: 0.88rem;
  padding: 12px 22px; border-radius: 40px; z-index: 200; box-shadow: var(--shadow);
  transition: transform .35s cubic-bezier(.2,.8,.2,1); letter-spacing: 0.02em;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ---------- mobile nav ---------- */
@media (max-width: 860px) {
  .nav-links {
    position: fixed; inset: 78px 0 auto 0; flex-direction: column; gap: 0;
    background: rgba(8,8,10,0.97); border-bottom: 1px solid var(--line);
    padding: 10px 0; transform: translateY(-140%); transition: transform .3s; z-index: 49;
  }
  .nav-links.open { transform: none; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links li a { display: block; padding: 14px; }
  .nav-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { order: -1; max-width: 420px; margin-inline: auto; }
}
