/* RADION STORE — shared stylesheet
   Design language inherited from /Radion/store.html + /Radion/mockup.html
*/

:root {
  --bg: #fbf9f3;
  --paper: #fffcf7;
  --paper-deep: #f6f0df;
  --paper-dark: #1a1610;
  --paper-darker: #0a0805;
  --ink: #1a1610;
  --ink-soft: #2a241a;
  --muted: #8a7d62;
  --muted-soft: #b1a385;
  --gold: #c9a55a;
  --gold-deep: #9e7a34;
  --gold-light: #d8b96f;
  --gold-pale: #f1d896;
  --rule: rgba(158, 122, 52, 0.22);
  --rule-strong: rgba(158, 122, 52, 0.45);
  --shadow-sm: 0 1px 0 rgba(255,255,255,0.6) inset, 0 8px 24px -16px rgba(80,60,20,0.12);
  --shadow-md: 0 1px 0 rgba(255,255,255,0.6) inset, 0 30px 60px -40px rgba(80,60,20,0.22), 0 8px 24px -16px rgba(80,60,20,0.12);
  --shadow-lg: 0 1px 0 rgba(255,255,255,0.6) inset, 0 40px 80px -40px rgba(80,60,20,0.32), 0 12px 30px -16px rgba(80,60,20,0.18);
}

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

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background-image:
    radial-gradient(ellipse 900px 600px at 12% 8%, rgba(201, 165, 90, 0.06), transparent 60%),
    radial-gradient(ellipse 800px 500px at 88% 92%, rgba(201, 165, 90, 0.05), transparent 60%);
  background-attachment: fixed;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.78 0 0 0 0 0.65 0 0 0 0 0.35 0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.55;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
img { max-width: 100%; display: block; }

.wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 56px 64px 96px;
  position: relative;
  z-index: 2;
}
.wrap.narrow { max-width: 980px; }
.wrap.tight  { max-width: 760px; }

/* ─────────── MASTHEAD ─────────── */
.masthead {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule-strong);
}
.masthead .left { display: flex; align-items: center; gap: 14px; }
.masthead .left a { display: flex; align-items: center; gap: 14px; }
.masthead .left img { height: 44px; width: auto; }
.masthead .left .word {
  font-weight: 700;
  letter-spacing: 0.34em;
  font-size: 17px;
  color: var(--ink);
}
.masthead .center { text-align: center; }
.masthead .center .eyebrow {
  font-size: 10px;
  letter-spacing: 0.55em;
  color: var(--gold-deep);
  text-transform: uppercase;
}
.masthead .center .title {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 30px;
  color: var(--ink);
  margin-top: 4px;
  letter-spacing: 0.01em;
}
.masthead .right {
  font-size: 9.5px;
  letter-spacing: 0.32em;
  color: var(--muted);
  text-align: right;
  line-height: 2;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-end;
}
.masthead .right .nav-row { display: flex; gap: 18px; }
.masthead .right .nav-row a { transition: color 0.2s ease; }
.masthead .right .nav-row a:hover { color: var(--ink); }
.masthead .right .nav-row a.active { color: var(--ink); border-bottom: 1px solid var(--gold); padding-bottom: 1px; }
.masthead .right .cart-link {
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  display: inline-block;
}
.micro-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-top: -1px;
  opacity: 0.6;
}

/* ─────────── SECTION HEAD ─────────── */
section { margin-top: 96px; }
.sec-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
  gap: 24px;
}
.sec-head .left { display: flex; align-items: flex-end; gap: 36px; }
.sec-head .num {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-style: italic;
  font-size: 130px;
  line-height: 0.78;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--gold-deep);
  letter-spacing: -0.01em;
  user-select: none;
}
.sec-head .titles { padding-bottom: 6px; }
.sec-head .titles .eyebrow {
  font-size: 10px;
  letter-spacing: 0.55em;
  color: var(--gold-deep);
  text-transform: uppercase;
}
.sec-head .titles h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 64px;
  line-height: 1;
  color: var(--ink);
  margin-top: 8px;
  letter-spacing: -0.005em;
}
.sec-head .titles h2 em {
  color: var(--gold-deep);
  font-style: italic;
  font-weight: 500;
}
.sec-head .meta {
  font-size: 9.5px;
  letter-spacing: 0.4em;
  color: var(--muted);
  text-align: right;
  line-height: 2.2;
  text-transform: uppercase;
  padding-bottom: 10px;
}
.sec-head .meta b { color: var(--ink); font-weight: 500; }

/* ─────────── PRODUCT GRID ─────────── */
.prod-grid {
  display: grid;
  gap: 32px;
  margin-top: 56px;
}
.prod-grid.two   { grid-template-columns: repeat(2, 1fr); gap: 40px; }
.prod-grid.three { grid-template-columns: repeat(3, 1fr); }
.prod-grid.four  { grid-template-columns: repeat(4, 1fr); }

.prod {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 44px 28px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-decoration: none;
  color: inherit;
}
.prod:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.prod::before, .prod::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.prod::before { top: 8px; left: 8px; border-right: 0; border-bottom: 0; }
.prod::after  { bottom: 8px; right: 8px; border-left: 0; border-top: 0; }

.prod-ref {
  position: absolute;
  top: 14px;
  left: 28px;
  font-size: 9px;
  letter-spacing: 0.45em;
  color: var(--gold-deep);
  font-weight: 500;
  text-transform: uppercase;
}
.prod-num {
  position: absolute;
  top: 14px;
  right: 28px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.prod-visual {
  margin: 8px auto 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prod-visual svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 340px;
}
.prod-visual.tall svg { max-width: 280px; }

.prod-title {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.05;
  color: var(--ink);
  margin-top: 4px;
  letter-spacing: -0.005em;
}
.prod-title em { color: var(--gold-deep); font-style: italic; }
.prod-desc {
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 10px;
  letter-spacing: 0.01em;
}
.prod-feats {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
}
.prod-feats li {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  padding-left: 14px;
  position: relative;
}
.prod-feats li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 1px;
  background: var(--gold);
}
.prod-scarcity {
  margin-top: 12px;
  font-size: 9.5px;
  letter-spacing: 0.32em;
  color: var(--gold-deep);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.prod-scarcity .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,165,90,0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(201,165,90,0.18); }
  50%      { box-shadow: 0 0 0 6px rgba(201,165,90,0.05); }
}

.prod-price-row {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.prod-price {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 32px;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.01em;
}
.prod-price .unit {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--muted);
  margin-left: 4px;
  text-transform: uppercase;
}
.prod-price.inquire {
  font-size: 22px;
  color: var(--gold-deep);
}
.prod-price .strike {
  font-size: 14px;
  color: var(--muted);
  text-decoration: line-through;
  margin-right: 6px;
}

/* ─────────── BUTTONS ─────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  background: linear-gradient(145deg, #d8b96f, #ae8234);
  color: #fff;
  border: 0;
  border-radius: 1px;
  font-family: "Poppins", sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 0.25s ease, transform 0.25s ease;
  box-shadow: 0 4px 14px -6px rgba(174, 130, 52, 0.6);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; filter: grayscale(0.3); }
.btn.lg { padding: 16px 28px; font-size: 10.5px; }
.btn.full { width: 100%; }
.btn.ghost {
  background: transparent;
  color: var(--gold-deep);
  border: 1px solid var(--gold);
  box-shadow: none;
}
.btn.ghost:hover { background: var(--gold); color: #fff; }
.btn.ink {
  background: linear-gradient(180deg, #2a241a, #0a0805);
  color: var(--gold-light);
  box-shadow: 0 4px 14px -6px rgba(0,0,0,0.4);
}
.btn.ink:hover { color: var(--gold-pale); }

/* ─────────── ORNAMENT ─────────── */
.ornament {
  margin: 80px auto 0;
  text-align: center;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  letter-spacing: 0.6em;
  opacity: 0.7;
}
.ornament::before, .ornament::after {
  content: '';
  display: inline-block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 18px;
  opacity: 0.5;
}

/* ─────────── DARK BANNER ─────────── */
.banner-dark {
  margin-top: 32px;
  padding: 28px 32px;
  background: linear-gradient(180deg, #1a1610 0%, #0a0805 100%);
  border: 1px solid var(--gold);
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
  align-items: center;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.banner-dark::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(158,122,52,0.35);
  border-radius: 1px;
  pointer-events: none;
}
.banner-dark .eyebrow {
  font-size: 9.5px;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
}
.banner-dark .title {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  color: #fff;
  margin-top: 6px;
}
.banner-dark .price {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 32px;
  color: var(--gold);
  letter-spacing: -0.01em;
}
.banner-dark .price .unit {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--muted);
  margin-left: 4px;
}

/* ─────────── HERO (storefront) ─────────── */
.hero {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero .copy .eyebrow {
  font-size: 10px;
  letter-spacing: 0.55em;
  color: var(--gold-deep);
  text-transform: uppercase;
}
.hero .copy h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 92px;
  line-height: 0.98;
  color: var(--ink);
  margin-top: 18px;
  letter-spacing: -0.015em;
}
.hero .copy h1 em { color: var(--gold-deep); font-style: italic; font-weight: 500; }
.hero .copy .lead {
  margin-top: 28px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 520px;
}
.hero .copy .actions {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero .copy .marks {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero .copy .marks span b { color: var(--ink); font-weight: 500; }

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
  border: 1px solid var(--rule);
  border-radius: 2px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.hero-visual::before, .hero-visual::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.hero-visual::before { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.hero-visual::after  { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }
.hero-visual .frame-tag {
  position: absolute;
  top: 22px;
  left: 32px;
  font-size: 9px;
  letter-spacing: 0.45em;
  color: var(--gold-deep);
  text-transform: uppercase;
}
.hero-visual .frame-num {
  position: absolute;
  top: 22px;
  right: 32px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
}

/* ─────────── TRUST BAR ─────────── */
.trust-bar {
  margin-top: 56px;
  padding: 22px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-bar .cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.trust-bar .key {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 24px;
  color: var(--ink);
  line-height: 1;
}
.trust-bar .label {
  font-size: 9px;
  letter-spacing: 0.4em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ─────────── PRODUCT DETAIL ─────────── */
.pd {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: start;
}
.pd-views {
  position: sticky;
  top: 28px;
}
.pd-stage {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 60px 36px 28px;
  position: relative;
  box-shadow: var(--shadow-md);
}
.pd-stage::before, .pd-stage::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.pd-stage::before { top: 8px; left: 8px; border-right: 0; border-bottom: 0; }
.pd-stage::after  { bottom: 8px; right: 8px; border-left: 0; border-top: 0; }
.pd-stage-label {
  position: absolute;
  top: 22px; left: 36px;
  font-size: 10px;
  letter-spacing: 0.45em;
  color: var(--gold-deep);
  font-weight: 500;
  text-transform: uppercase;
}
.pd-stage-num {
  position: absolute;
  top: 22px; right: 36px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
}
.pd-stage svg {
  display: block;
  width: 100%;
  max-width: 540px;
  height: auto;
  margin: 0 auto;
}
.pd-tabs {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.pd-tab {
  background: transparent;
  border: 1px solid var(--rule);
  padding: 14px 16px;
  font-size: 9.5px;
  letter-spacing: 0.4em;
  color: var(--muted);
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.pd-tab:hover { color: var(--ink); border-color: var(--gold); }
.pd-tab.active {
  background: linear-gradient(180deg, #1a1610 0%, #0a0805 100%);
  color: var(--gold-light);
  border-color: var(--gold);
}
.pd-tab .glyph { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 13px; letter-spacing: 0.05em; }

.pd-info { padding-top: 8px; }
.pd-info .ref {
  font-size: 10px;
  letter-spacing: 0.5em;
  color: var(--gold-deep);
  text-transform: uppercase;
}
.pd-info h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: italic;
  font-size: 64px;
  line-height: 1;
  color: var(--ink);
  margin-top: 14px;
  letter-spacing: -0.01em;
}
.pd-info h1 em { color: var(--gold-deep); }
.pd-info .desc {
  margin-top: 22px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.pd-price-row {
  margin-top: 28px;
  padding: 20px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: baseline;
  gap: 18px;
}
.pd-price {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  color: var(--ink);
}
.pd-price .unit {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--muted);
  margin-left: 6px;
  text-transform: uppercase;
}
.pd-edition {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pd-edition .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,165,90,0.18);
}
.pd-options { margin-top: 28px; display: flex; flex-direction: column; gap: 22px; }
.pd-opt-row { display: flex; flex-direction: column; gap: 10px; }
.pd-opt-row .lbl {
  font-size: 10px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.pd-opt-row .lbl b { color: var(--ink); font-weight: 500; }
.pd-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.pd-chip {
  padding: 10px 16px;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 1px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 52px;
}
.pd-chip:hover { color: var(--ink); border-color: var(--gold); }
.pd-chip.active {
  background: linear-gradient(180deg, #1a1610 0%, #0a0805 100%);
  color: var(--gold-light);
  border-color: var(--gold);
}
.pd-chip.swatch { padding: 0; width: 38px; height: 38px; min-width: 0; border-radius: 50%; position: relative; }
.pd-chip.swatch.active { box-shadow: 0 0 0 2px var(--bg), 0 0 0 3px var(--gold); }
.pd-chip.swatch .ring {
  position: absolute; inset: -4px; border: 1px solid var(--rule); border-radius: 50%;
}

.pd-cta {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  align-items: stretch;
}
.pd-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--rule);
  border-radius: 1px;
  overflow: hidden;
}
.pd-qty button {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--gold-deep);
  transition: background 0.2s ease;
}
.pd-qty button:hover { background: rgba(201,165,90,0.1); }
.pd-qty input {
  width: 48px;
  text-align: center;
  border: 0;
  background: transparent;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  outline: none;
}
.pd-qty input::-webkit-outer-spin-button,
.pd-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.pd-trust {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--muted);
  text-transform: uppercase;
}
.pd-trust .row { display: flex; align-items: center; gap: 10px; }
.pd-trust .row::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--gold);
}
.pd-trust .row b { color: var(--ink); font-weight: 500; letter-spacing: 0.28em; }

/* ─────────── SPEC SHEET ─────────── */
.specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-top: 64px;
  padding: 32px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.specs.three { grid-template-columns: repeat(3, 1fr); }
.spec .key {
  font-size: 9px;
  letter-spacing: 0.5em;
  color: var(--gold-deep);
  text-transform: uppercase;
}
.spec .val {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  margin-top: 10px;
  line-height: 1.25;
}

/* ─────────── REVIEWS ─────────── */
.reviews {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 32px 28px;
  border-radius: 2px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review .stars {
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.18em;
}
.review .quote {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: var(--ink);
}
.review .who {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  font-size: 9.5px;
  letter-spacing: 0.32em;
  color: var(--muted);
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.review .who b { color: var(--ink); font-weight: 500; }

/* ─────────── CART ─────────── */
.cart-layout {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: start;
}
.cart-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
}
.cart-empty {
  padding: 80px 0;
  text-align: center;
}
.cart-empty .glyph {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 64px;
  color: var(--gold);
  opacity: 0.5;
}
.cart-empty p {
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
}
.cart-empty .actions { margin-top: 28px; }

.cart-row {
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
}
.cart-row .thumb {
  width: 100px; height: 100px;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  position: relative;
}
.cart-row .thumb svg { width: 80%; height: 80%; }
.cart-row .info .name {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
}
.cart-row .info .name em { color: var(--gold-deep); }
.cart-row .info .opts {
  margin-top: 4px;
  font-size: 9.5px;
  letter-spacing: 0.32em;
  color: var(--muted);
  text-transform: uppercase;
}
.cart-row .info .ref {
  margin-top: 6px;
  font-size: 9px;
  letter-spacing: 0.4em;
  color: var(--gold-deep);
  text-transform: uppercase;
}
.cart-row .info .remove {
  margin-top: 10px;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--muted);
  background: none;
  border: 0;
  padding: 0;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: var(--rule);
  text-underline-offset: 4px;
}
.cart-row .info .remove:hover { color: var(--gold-deep); }
.cart-row .qty .pd-qty { margin: 0; }
.cart-row .price {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 28px;
  color: var(--ink);
  text-align: right;
  white-space: nowrap;
}

.cart-summary {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 36px 32px;
  position: sticky;
  top: 28px;
  box-shadow: var(--shadow-sm);
}
.cart-summary h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: italic;
  font-size: 28px;
  color: var(--ink);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}
.cart-summary .line {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}
.cart-summary .line b { color: var(--ink); font-weight: 500; font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 16px; letter-spacing: 0; text-transform: none; }
.cart-summary .line.total {
  margin-top: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--rule-strong);
  align-items: baseline;
}
.cart-summary .line.total .lbl {
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold-deep);
}
.cart-summary .line.total b {
  font-size: 36px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.cart-summary .promo {
  margin: 18px 0;
  display: flex;
  gap: 8px;
}
.cart-summary .promo input {
  flex: 1;
  padding: 10px 12px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 1px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  outline: none;
}
.cart-summary .promo input:focus { border-color: var(--gold); }
.cart-summary .promo button {
  padding: 10px 16px;
  background: transparent;
  border: 1px solid var(--gold);
  font-size: 9.5px;
  letter-spacing: 0.3em;
  color: var(--gold-deep);
  text-transform: uppercase;
  border-radius: 1px;
  transition: all 0.2s ease;
}
.cart-summary .promo button:hover { background: var(--gold); color: #fff; }
.cart-summary .check { margin-top: 22px; }
.cart-summary .reassure {
  margin-top: 18px;
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--muted);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.8;
}
.cart-summary .reassure b { color: var(--ink); font-weight: 500; }

/* ─────────── CHECKOUT ─────────── */
.co-layout {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.co-step {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
  border: 1px solid var(--rule);
  padding: 40px 36px;
  margin-bottom: 22px;
  position: relative;
  border-radius: 2px;
  box-shadow: var(--shadow-sm);
  transition: opacity 0.4s ease, filter 0.4s ease;
}
.co-step.locked { opacity: 0.45; pointer-events: none; filter: saturate(0.6); }
.co-step.complete { padding-bottom: 24px; }
.co-step .step-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}
.co-step .step-num {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-style: italic;
  font-size: 56px;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-deep);
  line-height: 0.8;
  user-select: none;
}
.co-step .step-titles { flex: 1; }
.co-step .step-titles .eyebrow {
  font-size: 9.5px;
  letter-spacing: 0.5em;
  color: var(--gold-deep);
  text-transform: uppercase;
}
.co-step .step-titles h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: italic;
  font-size: 32px;
  color: var(--ink);
  margin-top: 4px;
  letter-spacing: -0.005em;
}
.co-step .step-edit {
  background: none;
  border: 0;
  font-size: 9.5px;
  letter-spacing: 0.4em;
  color: var(--gold-deep);
  text-transform: uppercase;
  cursor: pointer;
}
.co-step .step-edit:hover { color: var(--ink); }
.co-step .step-body { padding-top: 24px; }
.co-step .step-summary {
  padding-top: 16px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.co-step .step-summary b { color: var(--ink); font-weight: 500; }

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 9.5px;
  letter-spacing: 0.4em;
  color: var(--gold-deep);
  text-transform: uppercase;
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  padding: 13px 14px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 1px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--gold); }
.field input::placeholder { color: var(--muted-soft); letter-spacing: 0; }
.field.error input,
.field.error select { border-color: #b04a2f; }
.field .hint {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.field .err {
  font-size: 10px;
  color: #b04a2f;
  letter-spacing: 0.15em;
}
.fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 22px;
}
.fields .full { grid-column: 1 / -1; }

.tsspay-card {
  margin: 8px 0 22px;
  position: relative;
  perspective: 900px;
  height: 220px;
}
.tsspay-card .face {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #221d15 0%, #0a0805 100%);
  border-radius: 14px;
  border: 1px solid var(--gold);
  padding: 24px 28px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 24px 48px -24px rgba(0,0,0,0.45), 0 0 0 1px rgba(158,122,52,0.4) inset;
  overflow: hidden;
}
.tsspay-card .face::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 50%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0) 100%);
  transform: rotate(20deg);
  pointer-events: none;
}
.tsspay-card .face-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.tsspay-card .label-row {
  font-size: 9px;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
}
.tsspay-card .word {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 20px;
  color: #fff;
  margin-top: 4px;
}
.tsspay-card .word em { color: var(--gold); }
.tsspay-card .chip {
  width: 38px;
  height: 28px;
  border-radius: 4px;
  background: linear-gradient(135deg, #d8b96f 0%, #9e7a34 100%);
  position: relative;
}
.tsspay-card .chip::before, .tsspay-card .chip::after {
  content: '';
  position: absolute;
  background: rgba(0,0,0,0.25);
}
.tsspay-card .chip::before { top: 6px; left: 4px; right: 4px; height: 1px; box-shadow: 0 5px 0 rgba(0,0,0,0.25), 0 10px 0 rgba(0,0,0,0.25); }
.tsspay-card .chip::after { left: 12px; top: 4px; bottom: 4px; width: 1px; box-shadow: 6px 0 0 rgba(0,0,0,0.25), 12px 0 0 rgba(0,0,0,0.25); }
.tsspay-card .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 30px;
  letter-spacing: 0.07em;
  color: #fff;
  word-spacing: 4px;
}
.tsspay-card .meta-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
}
.tsspay-card .meta-row .blk { display: flex; flex-direction: column; gap: 4px; }
.tsspay-card .meta-row .lbl {
  font-size: 7.5px;
  letter-spacing: 0.4em;
  color: var(--muted-soft);
  text-transform: uppercase;
}
.tsspay-card .meta-row .val {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: #fff;
}
.tsspay-card .brand {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  text-align: right;
}
.tsspay-card .brand small {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-size: 7.5px;
  color: var(--muted);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-top: 2px;
}

.tsspay-pad {
  margin-top: 18px;
  padding: 14px 18px;
  border: 1px solid var(--rule);
  border-radius: 1px;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--muted);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--paper);
}
.tsspay-pad .lock { color: var(--gold-deep); }
.tsspay-pad b { color: var(--ink); font-weight: 500; }

.co-summary {
  position: sticky;
  top: 28px;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.co-summary h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: italic;
  font-size: 26px;
  color: var(--ink);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}
.co-summary .li {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
}
.co-summary .li:last-child { border-bottom: 0; }
.co-summary .li .thumb {
  width: 56px; height: 56px;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px;
  position: relative;
}
.co-summary .li .thumb .qty {
  position: absolute;
  top: -8px; right: -8px;
  width: 22px; height: 22px;
  background: linear-gradient(145deg, #d8b96f, #9e7a34);
  color: #fff;
  border-radius: 50%;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.co-summary .li .thumb svg { width: 80%; height: 80%; }
.co-summary .li .nm {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.2;
}
.co-summary .li .opts {
  margin-top: 2px;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--muted);
  text-transform: uppercase;
}
.co-summary .li .pr {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 17px;
  color: var(--ink);
  white-space: nowrap;
}

/* ─────────── ORDER CONFIRMATION ─────────── */
.conf-card {
  margin-top: 56px;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
  border: 1px solid var(--gold);
  padding: 60px 56px;
  border-radius: 2px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-md);
}
.conf-card::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid var(--rule);
  border-radius: 1px;
  pointer-events: none;
}
.conf-seal {
  width: 96px;
  height: 96px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: linear-gradient(145deg, #d8b96f, #9e7a34);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 36px -16px rgba(158,122,52,0.5);
}
.conf-seal::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px dashed rgba(255,255,255,0.4);
  border-radius: 50%;
}
.conf-seal svg { width: 40px; height: 40px; color: #fff; position: relative; z-index: 2; }
.conf-card .eyebrow {
  font-size: 10px;
  letter-spacing: 0.55em;
  color: var(--gold-deep);
  text-transform: uppercase;
}
.conf-card h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: italic;
  font-size: 56px;
  color: var(--ink);
  margin-top: 12px;
  letter-spacing: -0.01em;
}
.conf-card h1 em { color: var(--gold-deep); }
.conf-card p.lead {
  margin-top: 14px;
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.conf-card .order-id {
  margin-top: 32px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--gold-deep);
  letter-spacing: 0.05em;
}
.conf-card .actions {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.conf-details {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.conf-block {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 28px;
  border-radius: 2px;
}
.conf-block .lbl {
  font-size: 9.5px;
  letter-spacing: 0.5em;
  color: var(--gold-deep);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.conf-block .val {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.5;
}
.conf-block .sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.6;
}

/* ─────────── TRACKING ─────────── */
.track-head {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: end;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
}
.track-head .order-line {
  font-size: 10px;
  letter-spacing: 0.55em;
  color: var(--gold-deep);
  text-transform: uppercase;
}
.track-head h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: italic;
  font-size: 56px;
  color: var(--ink);
  margin-top: 10px;
  letter-spacing: -0.01em;
}
.track-head h1 em { color: var(--gold-deep); }
.track-head .meta {
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--muted);
  text-transform: uppercase;
  text-align: right;
  line-height: 2;
}
.track-head .meta b { color: var(--ink); font-weight: 500; }

.timeline {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0;
}
.timeline .step {
  display: contents;
}
.timeline .marker {
  position: relative;
  display: flex;
  justify-content: center;
}
.timeline .marker::before {
  content: '';
  position: absolute;
  top: 0; bottom: -32px;
  width: 1px;
  background: var(--rule);
}
.timeline .step:last-child .marker::before { display: none; }
.timeline .marker .dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--rule);
  position: relative;
  z-index: 1;
  margin-top: 4px;
}
.timeline .step.done .marker .dot {
  background: linear-gradient(145deg, #d8b96f, #9e7a34);
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 4px rgba(201,165,90,0.18);
}
.timeline .step.current .marker .dot {
  background: var(--paper);
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(201,165,90,0.18);
  animation: pulse 2s ease-in-out infinite;
}
.timeline .body {
  padding-bottom: 32px;
  padding-left: 24px;
}
.timeline .body .when {
  font-size: 9.5px;
  letter-spacing: 0.4em;
  color: var(--gold-deep);
  text-transform: uppercase;
}
.timeline .body .what {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
  color: var(--ink);
  margin-top: 4px;
}
.timeline .body .detail {
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.timeline .step.future .body .what,
.timeline .step.future .body .when { opacity: 0.5; }

.track-info {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}

/* ─────────── ORDERS LIST ─────────── */
.orders-list {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.order-card {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 28px;
  align-items: center;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 22px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
}
.order-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.order-card .id {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--gold-deep);
  letter-spacing: 0.04em;
}
.order-card .summary {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.order-card .summary .items {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
}
.order-card .summary .when {
  font-size: 9px;
  letter-spacing: 0.4em;
  color: var(--muted);
  text-transform: uppercase;
}
.order-card .status {
  font-size: 9.5px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 1px;
  border: 1px solid var(--rule);
  color: var(--muted);
}
.order-card .status.delivered { color: #2c7a4d; border-color: rgba(44,122,77,0.4); }
.order-card .status.transit   { color: var(--gold-deep); border-color: var(--gold); }
.order-card .status.processing{ color: var(--ink-soft); border-color: var(--rule-strong); }
.order-card .total {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
}

/* ─────────── FOOTER ─────────── */
footer.foot {
  margin-top: 96px;
  padding-top: 24px;
  border-top: 1px solid var(--rule-strong);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  font-size: 9.5px;
  letter-spacing: 0.35em;
  color: var(--muted);
  text-transform: uppercase;
}
footer.foot .left { display: flex; align-items: center; gap: 12px; }
footer.foot .right { text-align: right; }
footer.foot img { height: 22px; opacity: 0.85; }
footer.foot .center {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: 0.04em;
  text-transform: none;
  text-align: center;
}

/* ─────────── TOAST ─────────── */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: linear-gradient(180deg, #1a1610 0%, #0a0805 100%);
  color: var(--gold-light);
  border: 1px solid var(--gold);
  padding: 16px 24px;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  border-radius: 1px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 200;
  box-shadow: 0 16px 40px -16px rgba(0,0,0,0.4);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast b { color: #fff; font-weight: 500; }

/* ─────────── PROCESSING OVERLAY ─────────── */
.tss-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 5, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.tss-overlay.show { opacity: 1; pointer-events: auto; }
.tss-modal {
  background: linear-gradient(180deg, #1a1610 0%, #0a0805 100%);
  border: 1px solid var(--gold);
  border-radius: 2px;
  padding: 56px 64px;
  text-align: center;
  max-width: 480px;
  width: 90%;
  position: relative;
  box-shadow: 0 32px 80px -16px rgba(0,0,0,0.6);
}
.tss-modal::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(158,122,52,0.45);
  pointer-events: none;
}
.tss-modal .eyebrow {
  font-size: 10px;
  letter-spacing: 0.55em;
  color: var(--gold);
  text-transform: uppercase;
}
.tss-modal h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: italic;
  font-size: 36px;
  color: #fff;
  margin-top: 12px;
}
.tss-modal h3 em { color: var(--gold-light); }
.tss-modal .stage {
  margin-top: 32px;
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--muted-soft);
  text-transform: uppercase;
  min-height: 18px;
}
.tss-modal .bar {
  margin-top: 22px;
  height: 2px;
  background: rgba(201,165,90,0.18);
  position: relative;
  overflow: hidden;
}
.tss-modal .bar::before {
  content: '';
  position: absolute;
  top: 0; left: -30%;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: slide 1.4s linear infinite;
}
@keyframes slide {
  0%   { left: -30%; }
  100% { left: 100%; }
}

/* ─────────── ANIMATION ─────────── */
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.masthead { animation: rise 0.7s ease 0s both; }
section { animation: rise 0.8s ease 0.1s both; }
section:nth-of-type(2) { animation-delay: 0.18s; }
section:nth-of-type(3) { animation-delay: 0.26s; }
section:nth-of-type(4) { animation-delay: 0.34s; }
section:nth-of-type(5) { animation-delay: 0.42s; }
footer { animation: rise 0.8s ease 0.5s both; }

/* ─────────── RESPONSIVE ─────────── */
@media (max-width: 1080px) {
  .prod-grid.four { grid-template-columns: repeat(2, 1fr); }
  .prod-grid.three { grid-template-columns: repeat(2, 1fr); }
  .hero { grid-template-columns: 1fr; gap: 40px; }
  .hero .copy h1 { font-size: 64px; }
  .pd { grid-template-columns: 1fr; gap: 40px; }
  .pd-views { position: static; }
  .cart-layout { grid-template-columns: 1fr; gap: 40px; }
  .co-layout { grid-template-columns: 1fr; gap: 40px; }
  .conf-details { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .track-info { grid-template-columns: 1fr; }
  .track-head { grid-template-columns: 1fr; }
  .track-head .meta { text-align: left; }
}
@media (max-width: 720px) {
  .wrap { padding: 32px 20px 64px; }
  .prod-grid.two,
  .prod-grid.three,
  .prod-grid.four { grid-template-columns: 1fr; }
  .sec-head { grid-template-columns: 1fr; gap: 16px; }
  .sec-head .left { gap: 18px; }
  .sec-head .meta { text-align: left; }
  .sec-head .titles h2 { font-size: 44px; }
  .sec-head .num { font-size: 96px; }
  .masthead { grid-template-columns: 1fr; text-align: center; gap: 12px; }
  .masthead .left, .masthead .right { justify-content: center; text-align: center; align-items: center; }
  footer.foot { grid-template-columns: 1fr; text-align: center; }
  footer.foot .left, footer.foot .right { justify-content: center; text-align: center; }
  .pd-info h1 { font-size: 44px; }
  .pd-price { font-size: 40px; }
  .specs, .specs.three { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .fields { grid-template-columns: 1fr; }
  .banner-dark { grid-template-columns: 1fr; text-align: center; }
  .order-card { grid-template-columns: 1fr 1fr; gap: 16px; }
  .cart-row { grid-template-columns: 80px 1fr; gap: 16px; }
  .cart-row .qty, .cart-row .price { grid-column: 2; }
  .conf-card { padding: 40px 28px; }
  .conf-card h1 { font-size: 36px; }
  .tss-modal { padding: 40px 28px; }
  .tss-modal h3 { font-size: 28px; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .pd-cta { flex-wrap: wrap; }
  .pd-cta .btn { flex: 1; }
}
