/* ============================================================
   Nature Heals — Dark Sanctuary Shop
   Freedom's Purchase Ranch · Ridge Collection
   Adapted from Claude Design bundle styles.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,6..144,300;0,6..144,400;0,6..144,500;0,6..144,700;1,6..144,300;1,6..144,400;1,6..144,500;1,6..144,700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  --night:       #06090e;
  --night-1:     #0a0e15;
  --night-2:     #11161f;
  --night-3:     #1a212d;
  --night-line:  rgba(255,255,255,0.06);
  --night-line-2:rgba(255,255,255,0.10);

  --blossom:     #e8a8c0;
  --blossom-soft:rgba(232,168,192,0.16);
  --iris:        #b298dc;
  --iris-soft:   rgba(178,152,220,0.14);
  --gold:        #c8a968;
  --gold-soft:   rgba(200,169,104,0.16);

  --green:       #5a8062;
  --ok:          #6fb185;
  --alert:       #d97757;
  --mist:        #94a3b8;

  --ink:         #efe9dc;
  --ink-2:       #c5bfb2;
  --ink-3:       #8a8377;
  --ink-4:       #5a5448;

  --display: 'Fraunces', Georgia, serif;
  --body:    'Inter', system-ui, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);

  --s1:4px; --s2:8px; --s3:12px; --s4:16px; --s5:20px;
  --s6:24px; --s8:32px; --s10:40px; --s12:48px; --s16:64px; --s20:80px; --s24:96px;
  --r1:4px; --r2:8px; --r3:16px; --r4:24px;
}

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

html, body {
  background: var(--night);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
  min-height: 100vh;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(ellipse 1200px 600px at 50% -200px, rgba(178,152,220,0.08), transparent 60%),
    radial-gradient(ellipse 800px 400px at 90% 30%, rgba(232,168,192,0.04), transparent 60%),
    var(--night);
}

::selection { background: var(--blossom-soft); color: var(--ink); }

/* ======================== TOPBAR ======================== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  background: rgba(6,9,14,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--night-line);
}

.topbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  user-select: none;
  text-decoration: none;
}
.topbar__brand:hover { color: var(--ink); }
.topbar__brand .accent { color: var(--gold); font-style: italic; letter-spacing: 0.04em; text-transform: none; font-weight: 400; }
.topbar__mark {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  flex-shrink: 0;
}

.topbar__nav { display: flex; gap: 4px; }
.topbar__nav a, .topbar__nav button {
  background: none; border: none;
  color: var(--ink-2);
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 14px;
  cursor: pointer;
  text-decoration: none;
  border-radius: var(--r1);
  transition: color 220ms var(--ease), background 220ms var(--ease);
}
.topbar__nav a:hover, .topbar__nav button:hover { color: var(--ink); background: rgba(255,255,255,0.03); }
.topbar__nav a.is-active { color: var(--blossom); }

.topbar__right { display: flex; align-items: center; gap: 16px; }

.status-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 6px 10px;
  border: 1px solid var(--night-line);
  border-radius: 999px;
}
.status-dot {
  width: 6px; height: 6px;
  background: var(--blossom);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--blossom);
  animation: pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.cart-btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--night-line);
  border-radius: var(--r1);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 220ms var(--ease);
}
.cart-btn:hover { border-color: var(--gold); color: var(--gold); }
.cart-btn .count {
  background: var(--blossom);
  color: var(--night);
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 999px;
  min-width: 18px;
  text-align: center;
  font-size: 10px;
}

@media (max-width: 680px) {
  .topbar { padding: 12px 16px; }
  .topbar__nav { display: none; }
  .status-pill { display: none; }
  .topbar__brand { font-size: 12px; }
}

@media (max-width: 860px) {
  .line-strip {
    grid-template-columns: 1fr;
    padding-inline: 16px;
  }
  .line-card {
    min-height: 0;
  }
}

/* ======================== PETALS ======================== */
.petals {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.petal {
  position: absolute;
  top: -20px;
  width: 8px; height: 11px;
  border-radius: 60% 40% 60% 40% / 70% 50% 50% 30%;
  opacity: 0.55;
  animation: fall linear infinite;
  filter: blur(0.3px);
}
.petal--blossom { background: var(--blossom); }
.petal--iris    { background: var(--iris); }
.petal--gold    { background: var(--gold); opacity: 0.4; }

@keyframes fall {
  0%   { transform: translateY(-20px) translateX(0) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.55; }
  100% { transform: translateY(110vh) translateX(var(--xDrift, 80px)) rotate(720deg); opacity: 0; }
}

/* ======================== HERO ======================== */
.hero {
  position: relative; z-index: 2;
  padding: 96px 32px 64px;
  text-align: center;
  overflow: hidden;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blossom);
  margin-bottom: 28px;
}
.hero__eyebrow::before, .hero__eyebrow::after {
  content: '';
  width: 32px; height: 1px;
  background: linear-gradient(to right, transparent, var(--blossom), transparent);
}
.hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  max-width: 14ch;
  margin: 0 auto 24px;
  color: var(--ink);
}
.hero__title em { font-style: italic; color: var(--gold); font-weight: 400; }

.hero__sub {
  max-width: 56ch;
  margin: 0 auto 40px;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.6;
}
.hero__meta {
  display: inline-flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.hero__meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero__meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-4); }

/* ======================== LINE STRIP ======================== */
.line-strip {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.line-card {
  min-height: 148px;
  padding: 22px;
  border: 1px solid var(--night-line);
  border-radius: var(--r2);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012)),
    var(--night-1);
  position: relative;
  overflow: hidden;
}
.line-card::after {
  content: '';
  position: absolute;
  inset: auto -20% -60% 20%;
  height: 120px;
  background: radial-gradient(circle, var(--line-glow, rgba(232,168,192,0.16)), transparent 66%);
  pointer-events: none;
}
.line-card--spring { --line-glow: rgba(232,168,192,0.2); }
.line-card--ridge { --line-glow: rgba(90,128,98,0.22); }
.line-card--carry { --line-glow: rgba(200,169,104,0.18); }
.line-card__kicker {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.line-card__title {
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--ink);
}
.line-card p {
  color: var(--ink-3);
  font-size: 13px;
  line-height: 1.55;
  max-width: 34ch;
}

/* ======================== SHOP GRID ======================== */
.shop {
  position: relative; z-index: 2;
  padding: 32px 32px 96px;
  max-width: 1440px;
  margin: 0 auto;
}

.shop__head {
  display: flex; align-items: end; justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--night-line);
}
.shop__title {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.shop__title em { font-style: italic; color: var(--gold); font-weight: 400; }
.shop__count {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.filters { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-chip {
  background: none;
  border: 1px solid var(--night-line);
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--r1);
  cursor: pointer;
  transition: all 220ms var(--ease);
}
.filter-chip:hover { border-color: var(--night-line-2); color: var(--ink); }
.filter-chip.is-active { border-color: var(--blossom); color: var(--blossom); background: var(--blossom-soft); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* ======================== PRODUCT CARD ======================== */
.product-card {
  position: relative;
  background: var(--night-1);
  border: 1px solid var(--night-line);
  border-radius: var(--r3);
  overflow: hidden;
  cursor: pointer;
  transition: all 320ms var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.6);
}

.product-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--night-2);
}

.product-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
  display: block;
}
.product-card:hover .product-card__media img {
  transform: scale(1.04);
}

.product-card__media-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--night-2) 0%, var(--night-3) 100%);
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-4);
}

/* HUD reticle corners */
.product-card__media::before,
.product-card__media::after,
.product-card__media .corner-bl,
.product-card__media .corner-br {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  border-color: var(--gold);
  border-style: solid;
  border-width: 0;
  opacity: 0;
  transition: opacity 320ms var(--ease);
  z-index: 3;
}
.product-card__media::before { top: 8px; left: 8px; border-top-width: 1px; border-left-width: 1px; }
.product-card__media::after  { top: 8px; right: 8px; border-top-width: 1px; border-right-width: 1px; }
.product-card__media .corner-bl { bottom: 8px; left: 8px; border-bottom-width: 1px; border-left-width: 1px; }
.product-card__media .corner-br { bottom: 8px; right: 8px; border-bottom-width: 1px; border-right-width: 1px; }
.product-card:hover .product-card__media::before,
.product-card:hover .product-card__media::after,
.product-card:hover .product-card__media .corner-bl,
.product-card:hover .product-card__media .corner-br { opacity: 1; }

.product-card__sku {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; color: var(--ink-3); z-index: 2;
}
.product-card__badge {
  position: absolute; top: 12px; right: 12px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 999px; z-index: 2;
}
.badge--new  { background: var(--blossom-soft); color: var(--blossom); border: 1px solid var(--blossom); }
.badge--sale { background: var(--gold-soft);    color: var(--gold);    border: 1px solid var(--gold); }
.badge--low  { background: rgba(217,119,87,0.14); color: var(--alert); border: 1px solid var(--alert); }

.product-img-ph {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 50% 36%, rgba(184,115,51,0.22), transparent 34%),
    linear-gradient(135deg, var(--night-2), var(--night-3));
}

.product-card__body {
  padding: 20px;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.product-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.product-card__cat {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3);
}
.product-card__drop {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.product-card__name {
  font-family: var(--display);
  font-size: 22px; font-weight: 500;
  letter-spacing: -0.01em; line-height: 1.15; color: var(--ink);
}
.product-card__desc {
  font-size: 13px; color: var(--ink-3); line-height: 1.5; flex: 1;
}
.product-card__foot {
  display: flex; align-items: end; justify-content: space-between;
  margin-top: 12px; padding-top: 16px;
  border-top: 1px solid var(--night-line);
}
.product-card__price {
  font-family: var(--mono); font-size: 14px; color: var(--ink); letter-spacing: 0.04em;
}
.product-card__cta {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 220ms var(--ease);
}
.product-card:hover .product-card__cta { color: var(--gold); }

/* ======================== PDP ======================== */
.pdp {
  position: relative; z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 32px 96px;
}

.crumbs {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 32px;
}
.crumbs button {
  background: none; border: none;
  color: var(--ink-3); font: inherit;
  letter-spacing: inherit; text-transform: inherit;
  cursor: pointer; padding: 0;
  transition: color 220ms var(--ease);
}
.crumbs button:hover { color: var(--ink); }
.crumbs .sep { color: var(--ink-4); }

.pdp__layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 880px) { .pdp__layout { grid-template-columns: 1fr; gap: 32px; } }

.pdp__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--night-1);
  border: 1px solid var(--night-line);
  border-radius: var(--r3);
  overflow: hidden;
}
.pdp__media img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.pdp__media-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-style: italic; font-size: 18px; color: var(--ink-4);
}
.pdp__media-frame {
  position: absolute; inset: 16px;
  border: 1px dashed rgba(200,169,104,0.18);
  border-radius: var(--r2);
  pointer-events: none;
}
.pdp__media-corner {
  position: absolute;
  width: 24px; height: 24px;
  border: 1px solid var(--gold);
}
.pdp__media-corner.tl { top: 16px; left: 16px; border-right: none; border-bottom: none; }
.pdp__media-corner.tr { top: 16px; right: 16px; border-left: none; border-bottom: none; }
.pdp__media-corner.bl { bottom: 16px; left: 16px; border-right: none; border-top: none; }
.pdp__media-corner.br { bottom: 16px; right: 16px; border-left: none; border-top: none; }

.pdp__thumbs { display: flex; gap: 8px; margin-top: 12px; }
.pdp__thumb {
  width: 64px; height: 64px;
  background: var(--night-1);
  border: 1px solid var(--night-line);
  border-radius: var(--r1);
  cursor: pointer; overflow: hidden;
  transition: border-color 220ms var(--ease);
}
.pdp__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp__thumb.is-active { border-color: var(--gold); }
.pdp__thumb:hover { border-color: var(--night-line-2); }

.pdp__cat {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--blossom); margin-bottom: 16px;
}
.pdp__title {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400; line-height: 1.04;
  letter-spacing: -0.02em; margin-bottom: 12px;
}
.pdp__title em { font-style: italic; color: var(--gold); }
.pdp__sub {
  color: var(--ink-3);
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  margin-bottom: 20px;
}

.pdp__meta-row {
  display: flex; gap: 24px; flex-wrap: wrap;
  padding: 12px 0;
  border-top: 1px solid var(--night-line);
  border-bottom: 1px solid var(--night-line);
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 24px;
}
.pdp__meta-row span { display: inline-flex; align-items: center; gap: 6px; }
.pdp__meta-row b { color: var(--ink); font-weight: 500; }

.pdp__price {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 24px;
}
.pdp__price .num {
  font-family: var(--display);
  font-size: 40px; font-weight: 500;
  color: var(--ink); letter-spacing: -0.02em;
}
.pdp__price .unit {
  font-family: var(--mono); font-size: 12px;
  color: var(--ink-3); letter-spacing: 0.14em; text-transform: uppercase;
}

.pdp__copy {
  color: var(--ink-2); font-size: 15px;
  line-height: 1.7; margin-bottom: 16px;
  max-width: 56ch;
}
.pdp__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
}
.pdp__chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--night-line-2);
  border-radius: 999px;
  background: rgba(255,255,255,0.025);
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.qty-row { display: flex; gap: 12px; margin-bottom: 16px; align-items: center; }
.variants { margin-bottom: 24px; }
.variants__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.variants__row { display: flex; flex-wrap: wrap; gap: 8px; }
.variant-chip {
  min-width: 48px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--night-line-2);
  border-radius: var(--r1);
  background: var(--night-1);
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: border-color 220ms var(--ease), color 220ms var(--ease), background 220ms var(--ease);
}
.variant-chip:hover { border-color: var(--gold); color: var(--gold); }
.variant-chip.is-active {
  border-color: var(--blossom);
  color: var(--blossom);
  background: var(--blossom-soft);
}
.qty-stepper {
  display: flex; align-items: center;
  border: 1px solid var(--night-line-2);
  border-radius: var(--r1);
  background: var(--night-1);
}
.qty-stepper button {
  width: 44px; height: 48px;
  background: none; border: none;
  color: var(--ink-2); font-size: 18px;
  cursor: pointer; transition: color 220ms var(--ease);
}
.qty-stepper button:hover { color: var(--blossom); }
.qty-stepper input {
  width: 52px; height: 48px;
  background: none; border: none;
  color: var(--ink);
  font-family: var(--mono); font-size: 14px;
  text-align: center; outline: none;
}

/* ======================== BUTTONS ======================== */
.btn-primary, .btn-ghost, .btn-line {
  font-family: var(--body);
  font-weight: 500; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: all 220ms var(--ease);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 48px; padding: 0 24px;
  border-radius: var(--r2);
}
.btn-primary {
  background: var(--blossom); color: var(--night); flex: 1;
  box-shadow: 0 0 0 0 var(--blossom-soft);
}
.btn-primary:hover:not(:disabled) { box-shadow: 0 0 0 6px var(--blossom-soft); }
.btn-primary:active:not(:disabled) { transform: scale(0.97); }
.btn-primary:disabled { background: var(--night-3); color: var(--ink-4); cursor: not-allowed; box-shadow: none; }
.btn-ghost {
  background: rgba(255,255,255,0.02); color: var(--ink);
  border: 1px solid var(--night-line-2);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,169,104,0.05); }
.btn-line {
  background: none; color: var(--ink-2);
  border: 1px solid var(--night-line-2);
  height: 40px; padding: 0 18px; font-size: 11px;
}
.btn-line:hover { color: var(--ink); border-color: var(--ink-3); }

/* Loading state */
.btn-primary.is-loading { opacity: 0.7; pointer-events: none; }

/* ======================== PROVENANCE PANEL ======================== */
.provenance {
  margin-top: 40px; padding: 24px;
  background: var(--night-1);
  border: 1px solid var(--night-line);
  border-radius: var(--r3);
}
.provenance__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid var(--night-line);
}
.provenance__head h3 {
  font-family: var(--display); font-size: 16px; font-weight: 500; letter-spacing: 0.02em;
}
.provenance__head .id {
  font-family: var(--mono); font-size: 11px; color: var(--blossom); letter-spacing: 0.14em;
}
.provenance__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 32px;
}
.provenance__row { display: flex; flex-direction: column; gap: 4px; }
.provenance__row .k {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3);
}
.provenance__row .v { font-family: var(--mono); font-size: 13px; color: var(--ink); }
.provenance__row .v em {
  font-style: italic; color: var(--gold);
  font-family: var(--display); font-size: 14px;
}
.provenance__story {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid var(--night-line);
  font-size: 13px; color: var(--ink-2); line-height: 1.6;
  font-style: italic; font-family: var(--display); font-weight: 400;
}

/* ======================== CART DRAWER ======================== */
.drawer-scrim {
  position: fixed; inset: 0;
  background: rgba(6,9,14,0.7);
  backdrop-filter: blur(4px);
  z-index: 90;
  opacity: 0; pointer-events: none;
  transition: opacity 320ms var(--ease);
}
.drawer-scrim.is-open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(440px, 100vw);
  background: var(--night-1);
  border-left: 1px solid var(--night-line-2);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 420ms var(--ease);
  display: flex; flex-direction: column;
}
.drawer.is-open { transform: translateX(0); }

.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--night-line);
}
.drawer__head h3 {
  font-family: var(--display); font-size: 22px; font-weight: 500; letter-spacing: -0.01em;
}
.drawer__head h3 em { font-style: italic; color: var(--gold); }
.drawer__close {
  background: none; border: 1px solid var(--night-line);
  color: var(--ink-2);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer; font-size: 18px;
  display: grid; place-items: center;
  transition: all 220ms var(--ease);
}
.drawer__close:hover { color: var(--ink); border-color: var(--ink-3); }

.drawer__body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.drawer__body::-webkit-scrollbar { width: 4px; }
.drawer__body::-webkit-scrollbar-thumb { background: var(--night-3); border-radius: 2px; }

.cart-empty {
  text-align: center; padding: 64px 24px; color: var(--ink-3);
}
.cart-empty p {
  font-family: var(--display); font-style: italic; font-size: 18px;
  margin-bottom: 16px; color: var(--ink-2);
  max-width: none;
}

.cart-row {
  display: grid; grid-template-columns: 64px 1fr auto;
  gap: 14px; padding: 16px 0;
  border-bottom: 1px solid var(--night-line);
}
.cart-row__media {
  width: 64px; height: 80px;
  background: var(--night-2);
  border: 1px solid var(--night-line);
  border-radius: var(--r1); overflow: hidden;
}
.cart-row__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cart-row__body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.cart-row__cat {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3);
}
.cart-row__name {
  font-family: var(--display); font-size: 15px; font-weight: 500;
  line-height: 1.2; color: var(--ink);
}
.cart-row__variant {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.cart-row__qty {
  display: inline-flex; align-items: center;
  margin-top: 8px;
  border: 1px solid var(--night-line);
  border-radius: var(--r1);
  width: fit-content;
}
.cart-row__qty button {
  width: 28px; height: 28px; background: none; border: none;
  color: var(--ink-2); font-size: 14px; cursor: pointer;
  transition: color 220ms var(--ease);
}
.cart-row__qty button:hover { color: var(--blossom); }
.cart-row__qty span {
  font-family: var(--mono); font-size: 12px;
  width: 28px; text-align: center; color: var(--ink);
}
.cart-row__price-col {
  display: flex; flex-direction: column;
  align-items: flex-end; justify-content: space-between;
  font-family: var(--mono); font-size: 13px;
}
.cart-row__remove {
  background: none; border: none; color: var(--ink-4);
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; transition: color 220ms var(--ease);
}
.cart-row__remove:hover { color: var(--alert); }

.drawer__foot {
  border-top: 1px solid var(--night-line);
  padding: 24px;
  background: var(--night-1);
  flex-shrink: 0;
}
.cart-totals { margin-bottom: 16px; }
.cart-totals .row {
  display: flex; justify-content: space-between;
  padding: 6px 0;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.06em; color: var(--ink-3);
}
.cart-totals .row.total {
  margin-top: 8px; padding-top: 12px;
  border-top: 1px solid var(--night-line);
  font-size: 16px; color: var(--ink);
}
.cart-totals .row.total .v {
  font-family: var(--display); font-size: 22px;
  color: var(--gold); font-style: italic;
}
.cart-note {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.12em; color: var(--ink-3);
  margin-bottom: 16px; text-align: center;
}
.cart-note strong { color: var(--blossom); }

/* ======================== CHECKOUT ======================== */
.checkout {
  position: relative; z-index: 2;
  max-width: 1180px; margin: 0 auto;
  padding: 32px 32px 96px;
}
.checkout__steps {
  display: flex; gap: 24px;
  margin-bottom: 40px; padding-bottom: 16px;
  border-bottom: 1px solid var(--night-line);
  flex-wrap: wrap;
}
.step {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-4);
}
.step .num {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--night-line-2);
  display: grid; place-items: center; font-size: 11px;
}
.step.is-active { color: var(--blossom); }
.step.is-active .num { border-color: var(--blossom); color: var(--blossom); }
.step.is-done { color: var(--ink-2); }
.step.is-done .num { border-color: var(--ok); color: var(--ok); background: rgba(111,177,133,0.06); }

.checkout__layout {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 64px; align-items: start;
}
@media (max-width: 880px) { .checkout__layout { grid-template-columns: 1fr; gap: 40px; } }

.checkout__form h2 {
  font-family: var(--display); font-size: 28px; font-weight: 500;
  margin-bottom: 8px; letter-spacing: -0.01em;
}
.checkout__form h2 em { font-style: italic; color: var(--gold); }
.checkout__form .sub { color: var(--ink-3); font-size: 14px; margin-bottom: 32px; max-width: none; }

.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-row.three { grid-template-columns: 2fr 1fr 1fr; }
.field label {
  display: block; font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 6px;
}
.field input, .field select {
  width: 100%; height: 48px;
  background: var(--night-1);
  border: 1px solid var(--night-line);
  border-radius: var(--r1);
  color: var(--ink); font-family: var(--body);
  font-size: 14px; padding: 0 14px;
  outline: none; transition: border-color 220ms var(--ease);
}
.field input:focus, .field select:focus { border-color: var(--blossom); }
.field input::placeholder { color: var(--ink-4); }

.payment-method {
  display: flex; align-items: center; gap: 12px;
  padding: 16px; border: 1px solid var(--night-line);
  border-radius: var(--r2); cursor: pointer;
  margin-bottom: 8px; transition: all 220ms var(--ease);
}
.payment-method.is-active { border-color: var(--blossom); background: var(--blossom-soft); }
.payment-method__radio {
  width: 16px; height: 16px;
  border: 1px solid var(--ink-3); border-radius: 50%; position: relative;
}
.payment-method.is-active .payment-method__radio { border-color: var(--blossom); }
.payment-method.is-active .payment-method__radio::after {
  content: ''; position: absolute; inset: 3px;
  background: var(--blossom); border-radius: 50%;
}
.payment-method__label { font-family: var(--display); font-size: 16px; font-weight: 500; }
.payment-method__cards { margin-left: auto; font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.1em; }

.order-summary {
  background: var(--night-1);
  border: 1px solid var(--night-line);
  border-radius: var(--r3);
  padding: 24px; position: sticky; top: 80px;
}
.order-summary__head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 16px; border-bottom: 1px solid var(--night-line);
  margin-bottom: 16px;
}
.order-summary__head h3 { font-family: var(--display); font-size: 18px; font-weight: 500; }
.order-summary__head .meta {
  font-family: var(--mono); font-size: 11px;
  color: var(--ink-3); letter-spacing: 0.14em;
}
.summary-row {
  display: grid; grid-template-columns: 48px 1fr auto;
  gap: 12px; padding: 10px 0; align-items: center;
}
.summary-row__media {
  width: 48px; height: 60px;
  background: var(--night-2); border-radius: var(--r1);
  border: 1px solid var(--night-line); overflow: hidden;
}
.summary-row__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.summary-row__name .n { font-family: var(--display); font-size: 14px; color: var(--ink); display: block; }
.summary-row__name .v {
  font-family: var(--mono); font-size: 10px;
  color: var(--ink-3); letter-spacing: 0.1em; text-transform: uppercase;
}
.summary-row__price { font-family: var(--mono); font-size: 13px; color: var(--ink); }

/* ======================== ORDER COMPLETE ======================== */
.complete {
  position: relative; z-index: 2;
  max-width: 720px; margin: 0 auto;
  padding: 96px 32px; text-align: center;
}
.complete__seal {
  width: 96px; height: 96px;
  margin: 0 auto 32px; border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  background: var(--gold-soft); position: relative;
}
.complete__seal::before, .complete__seal::after {
  content: ''; position: absolute; inset: -8px;
  border: 1px solid var(--gold-soft); border-radius: 50%;
}
.complete__seal::after { inset: -16px; opacity: 0.4; }
.complete__id {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--blossom); margin-bottom: 16px;
}
.complete__title {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400; line-height: 1.05;
  letter-spacing: -0.02em; margin-bottom: 24px;
}
.complete__title em { font-style: italic; color: var(--gold); }
.complete__copy {
  color: var(--ink-2); font-size: 16px; line-height: 1.6;
  margin: 0 auto 32px; max-width: 52ch;
}
.complete__sroi {
  display: inline-flex; flex-direction: column; gap: 8px;
  padding: 20px 32px;
  background: var(--night-1);
  border: 1px solid var(--night-line);
  border-radius: var(--r3);
  margin: 16px 0 32px;
}
.complete__sroi .num {
  font-family: var(--display); font-size: 36px;
  color: var(--gold); font-weight: 500; font-style: italic;
}
.complete__sroi .label {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3);
}

/* ======================== FOOTER ======================== */
.footer {
  position: relative; z-index: 2;
  border-top: 1px solid var(--night-line);
  padding: 48px 32px 32px; margin-top: 96px;
  color: var(--ink-3); font-size: 13px;
}
.footer__inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px;
}
@media (max-width: 700px) { .footer__inner { grid-template-columns: 1fr; } }
.footer h4 {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-2); margin-bottom: 16px;
}
.footer p { line-height: 1.6; max-width: 36ch; }
.footer ul { list-style: none; display: grid; gap: 8px; }
.footer a { color: var(--ink-2); text-decoration: none; transition: color 220ms var(--ease); }
.footer a:hover { color: var(--blossom); }
.footer__bottom {
  max-width: 1280px; margin: 32px auto 0;
  padding-top: 24px; border-top: 1px solid var(--night-line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-4);
}

/* ======================== TOAST ======================== */
.toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--night-1);
  border: 1px solid var(--ok);
  color: var(--ink); font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 12px 24px; border-radius: var(--r2);
  z-index: 200; opacity: 0;
  transition: all 300ms var(--ease);
  white-space: nowrap;
}
.toast.is-visible { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ======================== RESPONSIVE ======================== */
@media (max-width: 640px) {
  .hero { padding: 72px 16px 48px; }
  .shop { padding: 24px 16px 64px; }
  .pdp { padding: 16px 16px 64px; }
  .checkout { padding: 24px 16px 64px; }
  .complete { padding: 64px 16px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .drawer__head h3 { font-size: 18px; }
  .field-row, .field-row.three { grid-template-columns: 1fr; }
}
@media (max-width: 380px) {
  .product-grid { grid-template-columns: 1fr; }
}
