/* UniStore — Storefront */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --bg: oklch(98.5% 0.005 80);
  --paper: oklch(99.5% 0.003 80);
  --surface: #ffffff;
  --surface-2: oklch(96.5% 0.006 80);
  --line: oklch(91% 0.008 80);
  --line-2: oklch(94.5% 0.006 80);
  --ink-1: oklch(20% 0.012 60);
  --ink-2: oklch(38% 0.012 60);
  --ink-3: oklch(54% 0.012 60);
  --ink-4: oklch(70% 0.010 60);

  --accent: oklch(34% 0.04 60); /* warm dark — earthy */
  --accent-2: oklch(28% 0.04 60);
  --accent-soft: oklch(96% 0.02 60);

  --gold: oklch(70% 0.13 75);
  --green: oklch(60% 0.14 152);
  --red: oklch(58% 0.20 22);

  --maxw: 1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  font: 15px/1.55 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink-1);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
button { cursor: pointer; font: inherit; color: inherit; }
input, select { font: inherit; color: inherit; }
.serif { font-family: 'Fraunces', Georgia, serif; font-weight: 500; letter-spacing: -.01em; }
.mono { font-family: 'IBM Plex Mono', monospace; font-feature-settings: 'tnum'; }
.tnum { font-variant-numeric: tabular-nums; }

/* ── Top announcement bar ─────────────────────────────── */
.bar-top {
  background: var(--ink-1);
  color: oklch(96% 0.005 80);
  text-align: center;
  font-size: 12.5px;
  padding: 8px 16px;
  letter-spacing: .01em;
}
.bar-top b { color: white; font-weight: 600; }

/* ── Header ─────────────────────────────── */
.hdr {
  position: sticky; top: 0; z-index: 30;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.hdr-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 14px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -.01em;
  color: var(--ink-1);
}
.brand-mark {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--ink-1);
  color: white;
  display: grid; place-items: center;
  font-size: 14px; font-weight: 700;
  font-family: 'Inter';
  letter-spacing: -.02em;
}

.nav-main {
  display: flex; gap: 4px;
  justify-content: center;
}
.nav-main a {
  padding: 8px 12px;
  font-size: 13.5px;
  color: var(--ink-2);
  text-decoration: none;
  border-radius: 6px;
  transition: background .15s;
  cursor: pointer;
  font-weight: 500;
}
.nav-main a:hover { background: var(--surface-2); color: var(--ink-1); }

.hdr-right { display: flex; align-items: center; gap: 4px; }
.hdr-search {
  height: 36px; width: 280px;
  display: flex; align-items: center; gap: 8px;
  padding: 0 12px;
  background: var(--surface-2);
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-3);
  transition: border-color .15s, background .15s;
}
.hdr-search:focus-within { border-color: var(--ink-3); background: white; color: var(--ink-1); }
.hdr-search input { border: 0; background: none; outline: none; flex: 1; }

.icon-btn {
  height: 36px; width: 36px;
  display: grid; place-items: center;
  border: 0; background: transparent;
  border-radius: 999px;
  color: var(--ink-2);
  position: relative;
}
.icon-btn:hover { background: var(--surface-2); color: var(--ink-1); }
.icon-btn .count {
  position: absolute; top: 4px; right: 4px;
  min-width: 16px; height: 16px;
  background: var(--ink-1); color: white;
  border-radius: 999px; font-size: 10px;
  font-weight: 600;
  display: grid; place-items: center;
  border: 1.5px solid white;
  padding: 0 4px;
}
.cur-pill {
  height: 30px; padding: 0 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px; font-weight: 500;
  font-family: 'IBM Plex Mono', monospace;
  color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 4px;
}
.cur-pill:hover { border-color: var(--ink-3); }

/* ── Category strip ─────────────────────────────── */
.cat-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.cat-strip-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 24px;
  display: flex; gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-strip-inner::-webkit-scrollbar { display: none; }
.cat-strip a {
  padding: 12px 14px;
  font-size: 12.5px;
  color: var(--ink-3);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  font-weight: 500;
}
.cat-strip a:hover { color: var(--ink-1); }
.cat-strip a.active { color: var(--ink-1); border-bottom-color: var(--ink-1); }

/* ── Container ─────────────────────────────── */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ── Hero ─────────────────────────────── */
.hero {
  position: relative;
  margin: 16px 0 32px;
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 20%, oklch(85% 0.06 60 / .8), transparent 60%),
    linear-gradient(135deg, oklch(94% 0.025 60), oklch(90% 0.04 75));
  min-height: 380px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 14px;
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  line-height: 1.02;
  letter-spacing: -.02em;
  font-weight: 500;
  margin: 0 0 16px;
  color: var(--ink-1);
}
.hero h1 em { font-style: italic; font-weight: 400; }
.hero p {
  font-size: 15.5px;
  color: var(--ink-2);
  max-width: 460px;
  margin: 0 0 24px;
}
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-art {
  position: relative;
  height: 320px;
}
.hero-card {
  position: absolute;
  border-radius: 14px;
  background: white;
  box-shadow: 0 20px 60px -20px rgba(40,30,20,.25), 0 4px 12px rgba(40,30,20,.08);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.05);
}
.hero-card .swatch {
  width: 100%; height: 70%;
  background: repeating-linear-gradient(45deg, var(--c1, oklch(85% 0.06 60)) 0 8px, var(--c2, oklch(78% 0.10 60)) 8px 16px);
}
.hero-card .meta { padding: 10px 12px; }
.hero-card .meta b { font-size: 12.5px; display: block; }
.hero-card .meta span { font-size: 11.5px; color: var(--ink-3); }

/* ── Buttons ─────────────────────────────── */
.btn {
  height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--ink-1);
  background: var(--ink-1);
  color: white;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform .1s, background .15s;
}
.btn:hover { background: oklch(15% 0.012 60); }
.btn:active { transform: translateY(1px); }
.btn.outline { background: transparent; color: var(--ink-1); border-color: var(--ink-1); }
.btn.outline:hover { background: var(--ink-1); color: white; }
.btn.ghost { border-color: transparent; background: transparent; color: var(--ink-2); }
.btn.ghost:hover { background: var(--surface-2); }
.btn.sm { height: 34px; padding: 0 14px; font-size: 13px; }
.btn.lg { height: 50px; padding: 0 24px; font-size: 15px; }
.btn.full { width: 100%; justify-content: center; }
.btn.gold { background: var(--gold); border-color: var(--gold); color: white; }
.btn.gold:hover { background: oklch(64% 0.13 75); border-color: oklch(64% 0.13 75); }

/* ── Section ─────────────────────────────── */
.section { margin: 56px 0; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 22px;
  gap: 16px;
}
.section-head h2 {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -.015em;
  margin: 0 0 4px;
}
.section-head p { color: var(--ink-3); font-size: 14px; margin: 0; }
.section-head .more { color: var(--ink-1); font-weight: 500; font-size: 13.5px; text-decoration: none; cursor: pointer; }

/* ── Category tiles ─────────────────────────────── */
.cat-tiles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.cat-tile {
  position: relative;
  aspect-ratio: 1/1.1;
  border-radius: 14px;
  background: var(--surface-2);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--line);
  transition: transform .15s, box-shadow .15s;
  text-decoration: none;
  color: inherit;
}
.cat-tile:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -12px rgba(40,30,20,.18); }
.cat-tile .ct-art {
  position: absolute; inset: 0;
  background: var(--ct-bg, repeating-linear-gradient(45deg, oklch(88% 0.04 60) 0 12px, oklch(80% 0.07 60) 12px 24px));
}
.cat-tile .ct-label {
  position: absolute; left: 14px; bottom: 12px; right: 14px;
  font-family: 'Fraunces', serif;
  font-size: 17px; font-weight: 500;
  color: var(--ink-1);
}
.cat-tile .ct-count {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255,255,255,.85);
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px; font-weight: 500;
  color: var(--ink-2);
  backdrop-filter: blur(6px);
}

/* ── Product grid ─────────────────────────────── */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px 16px; }
.product-card {
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex; flex-direction: column;
  position: relative;
}
.product-card .pc-img {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface-2);
  margin-bottom: 10px;
  border: 1px solid var(--line);
}
.product-card .pc-img .stripes {
  position: absolute; inset: 0;
  background: var(--swatch);
}
.product-card .badges {
  position: absolute; top: 10px; left: 10px;
  display: flex; gap: 4px;
}
.badge-pill {
  background: white; padding: 3px 8px;
  border-radius: 999px;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.badge-pill.sale { background: var(--ink-1); color: white; }
.badge-pill.new  { background: var(--green); color: white; }
.badge-pill.low  { background: var(--gold); color: white; }
.product-card .wish {
  position: absolute; top: 10px; right: 10px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(4px);
  border: 0; border-radius: 999px;
  display: grid; place-items: center;
  color: var(--ink-2);
  opacity: 0;
  transition: opacity .15s, background .15s;
}
.product-card:hover .wish { opacity: 1; }
.wish.on { opacity: 1; color: var(--red); }
.product-card .pc-quick {
  position: absolute; left: 10px; right: 10px; bottom: 10px;
  display: flex; gap: 6px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .18s, transform .18s;
}
.product-card:hover .pc-quick { opacity: 1; transform: none; }

.pc-meta { padding: 0 2px; }
.pc-brand { font-size: 11.5px; color: var(--ink-3); font-weight: 500; letter-spacing: .03em; text-transform: uppercase; }
.pc-name {
  font-size: 14.5px; font-weight: 500;
  color: var(--ink-1);
  margin: 3px 0 4px;
  line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.pc-price { display: flex; align-items: baseline; gap: 8px; font-variant-numeric: tabular-nums; }
.pc-price .now { font-size: 14.5px; font-weight: 600; color: var(--ink-1); }
.pc-price .was { font-size: 12.5px; color: var(--ink-4); text-decoration: line-through; }
.pc-price .pct { font-size: 11.5px; color: var(--red); font-weight: 600; }
.pc-rating { display: flex; align-items: center; gap: 4px; font-size: 11.5px; color: var(--ink-3); margin-top: 4px; }
.pc-rating .stars { color: var(--gold); }

/* ── Filters bar (catalog page) ─────────────────────────────── */
.filt-row {
  display: flex; gap: 8px; flex-wrap: wrap;
  padding: 14px 0;
  align-items: center;
}
.chip {
  height: 32px; padding: 0 12px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 999px;
  font-size: 12.5px; font-weight: 500;
  color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 5px;
}
.chip:hover { border-color: var(--ink-3); }
.chip.active { background: var(--ink-1); color: white; border-color: var(--ink-1); }
.chip .count { color: var(--ink-3); font-size: 11px; }
.chip.active .count { color: rgba(255,255,255,.6); }

/* ── Page-grid layout (sidebar filters + grid) ─────────────────────────────── */
.cat-page { display: grid; grid-template-columns: 240px 1fr; gap: 32px; margin-top: 24px; }
.filter-side { display: flex; flex-direction: column; gap: 24px; }
.filter-grp h4 { font-size: 13px; font-weight: 600; margin: 0 0 10px; color: var(--ink-1); }
.filter-grp label { display: flex; align-items: center; gap: 8px; padding: 5px 0; font-size: 13px; color: var(--ink-2); }
.filter-grp .ctn { color: var(--ink-4); margin-left: auto; font-size: 11.5px; }
.range-row { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.range-row input { flex: 1; height: 32px; padding: 0 10px; border: 1px solid var(--line); border-radius: 6px; outline: none; font-size: 13px; }
.swatch-row { display: flex; flex-wrap: wrap; gap: 6px; }
.color-swatch { width: 22px; height: 22px; border-radius: 999px; border: 1px solid var(--line); cursor: pointer; }
.color-swatch.on { box-shadow: 0 0 0 2px var(--ink-1); }

/* ── PDP ─────────────────────────────── */
.pdp { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; margin-top: 24px; }
.pdp-gallery { display: flex; flex-direction: column; gap: 10px; }
.pdp-main {
  aspect-ratio: 1/1.15;
  border-radius: 16px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.pdp-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.pdp-thumb {
  aspect-ratio: 1/1;
  border-radius: 8px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  overflow: hidden;
  cursor: pointer;
}
.pdp-thumb.on { border-color: var(--ink-1); border-width: 2px; }

.pdp-info { padding-top: 4px; }
.pdp-info .brand { font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
.pdp-info h1 { font-family: 'Fraunces', serif; font-size: 36px; font-weight: 500; letter-spacing: -.015em; margin: 8px 0 12px; line-height: 1.1; }
.pdp-rating { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--ink-3); margin-bottom: 18px; }
.pdp-price { display: flex; align-items: baseline; gap: 12px; margin: 0 0 8px; font-variant-numeric: tabular-nums; }
.pdp-price .now { font-size: 30px; font-weight: 600; }
.pdp-price .was { font-size: 18px; color: var(--ink-4); text-decoration: line-through; }
.pdp-price .pct { font-size: 12.5px; color: var(--red); font-weight: 600; padding: 3px 8px; border-radius: 4px; background: oklch(96% 0.04 22); }
.pdp-tax { color: var(--ink-3); font-size: 12.5px; margin-bottom: 28px; }

.opt-block { margin: 22px 0; }
.opt-block .opt-head { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 8px; }
.opt-block .opt-head b { font-weight: 600; }
.opt-block .opt-head span { color: var(--ink-3); }
.size-row { display: flex; flex-wrap: wrap; gap: 6px; }
.size-pill {
  min-width: 48px; height: 40px; padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  font-size: 13px; font-weight: 500;
  display: inline-flex; align-items: center; justify-content: center;
}
.size-pill:hover { border-color: var(--ink-2); }
.size-pill.on { background: var(--ink-1); color: white; border-color: var(--ink-1); }
.size-pill.dis { color: var(--ink-4); text-decoration: line-through; cursor: not-allowed; background: var(--surface-2); }

.qty-stepper {
  display: inline-flex; height: 40px;
  border: 1px solid var(--line); border-radius: 8px;
  overflow: hidden;
}
.qty-stepper button { background: white; border: 0; width: 36px; }
.qty-stepper button:hover { background: var(--surface-2); }
.qty-stepper input { border: 0; outline: none; width: 44px; text-align: center; font-variant-numeric: tabular-nums; font-weight: 500; }

.pdp-cta { display: flex; gap: 10px; margin: 20px 0 24px; }
.pdp-cta .btn { flex: 1; }

.pdp-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.perk { display: flex; gap: 10px; font-size: 12.5px; color: var(--ink-2); }
.perk b { display: block; color: var(--ink-1); font-size: 13px; margin-bottom: 1px; }

.pdp-acc { margin-top: 8px; }
.pdp-acc details { padding: 14px 0; border-bottom: 1px solid var(--line); }
.pdp-acc summary { font-weight: 500; font-size: 14px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.pdp-acc summary::-webkit-details-marker { display: none; }
.pdp-acc summary::after { content: '+'; font-size: 18px; color: var(--ink-3); transition: transform .2s; }
.pdp-acc details[open] summary::after { transform: rotate(45deg); }
.pdp-acc .body { padding-top: 10px; color: var(--ink-2); font-size: 13.5px; line-height: 1.6; }

/* Reviews block */
.review-summary { display: flex; gap: 32px; align-items: center; margin-bottom: 24px; }
.review-summary .big { font-size: 46px; font-family: 'Fraunces', serif; font-weight: 500; line-height: 1; }
.review-bar { display: flex; flex-direction: column; gap: 5px; flex: 1; max-width: 300px; }
.rb-row { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--ink-3); }
.rb-row .bar { flex: 1; height: 6px; background: var(--surface-2); border-radius: 3px; overflow: hidden; }
.rb-row .bar > span { display: block; height: 100%; background: var(--gold); border-radius: 3px; }

.review { padding: 16px 0; border-top: 1px solid var(--line); }
.review .who { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; font-size: 13px; }
.review .who b { font-weight: 600; }
.review .who .vp { font-size: 11px; color: var(--green); font-weight: 600; padding: 2px 6px; background: oklch(96% 0.04 152); border-radius: 4px; }
.review p { margin: 4px 0 0; font-size: 13.5px; color: var(--ink-2); line-height: 1.55; }

/* ── Cart drawer ─────────────────────────────── */
.scrim {
  position: fixed; inset: 0;
  background: rgba(20,15,10,.4);
  z-index: 100;
  animation: fade .15s ease;
}
@keyframes fade { from { opacity: 0; } }
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100vh;
  width: min(440px, 100vw);
  background: white;
  z-index: 101;
  display: flex; flex-direction: column;
  animation: slide .25s cubic-bezier(.2,.7,.3,1);
  box-shadow: -10px 0 40px rgba(0,0,0,.1);
}
@keyframes slide { from { transform: translateX(20px); opacity: .5; } }
.drawer-head { padding: 20px 24px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.drawer-head h3 { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 500; margin: 0; }
.drawer-body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.drawer-foot { border-top: 1px solid var(--line); padding: 16px 24px; }

.cart-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line-2); }
.cart-item:last-child { border-bottom: none; }
.cart-item .img { width: 72px; height: 88px; border-radius: 8px; flex-shrink: 0; overflow: hidden; border: 1px solid var(--line); background: var(--surface-2); }
.cart-item .info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.cart-item .info .nm { font-size: 13.5px; font-weight: 500; }
.cart-item .info .br { font-size: 11.5px; color: var(--ink-3); }
.cart-item .info .vr { font-size: 11.5px; color: var(--ink-3); }
.cart-item .info .row { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.cart-item .qmini { display: inline-flex; height: 28px; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.cart-item .qmini button { background: white; border: 0; width: 26px; font-size: 13px; }
.cart-item .qmini span { padding: 0 8px; align-self: center; font-variant-numeric: tabular-nums; font-size: 12.5px; }
.cart-item .price { font-weight: 600; font-variant-numeric: tabular-nums; font-size: 13.5px; }

.cart-empty { text-align: center; padding: 60px 24px; color: var(--ink-3); }
.cart-empty .ico { width: 60px; height: 60px; border-radius: 999px; background: var(--surface-2); display: grid; place-items: center; margin: 0 auto 16px; color: var(--ink-3); }

.totals { display: flex; flex-direction: column; gap: 6px; font-size: 13.5px; }
.totals .row { display: flex; justify-content: space-between; }
.totals .row.muted { color: var(--ink-3); }
.totals .row.total { padding-top: 8px; border-top: 1px solid var(--line); margin-top: 4px; font-size: 16px; font-weight: 600; }

/* ── Checkout ─────────────────────────────── */
.co-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; margin-top: 24px; }
.co-step {
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 14px;
  background: white;
}
.co-step-head {
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  font-size: 15px;
}
.co-step-head .num {
  width: 24px; height: 24px; border-radius: 999px;
  background: var(--ink-1); color: white;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 600;
}
.co-step.done .co-step-head .num { background: var(--green); }
.co-step.todo .co-step-head .num { background: var(--surface-2); color: var(--ink-3); }
.co-step-head b { font-weight: 600; }
.co-step-body { padding: 0 20px 20px; }

.field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.field label { font-size: 12.5px; font-weight: 500; color: var(--ink-2); }
.input {
  height: 42px; padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  font-size: 14px;
  background: white;
}
.input:focus { border-color: var(--ink-1); box-shadow: 0 0 0 3px oklch(85% 0.02 60 / .4); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.pay-method { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px; margin-bottom: 8px; cursor: pointer; }
.pay-method.on { border-color: var(--ink-1); background: var(--surface-2); }
.pay-method .icon { width: 36px; height: 24px; border-radius: 4px; background: var(--surface-2); display: grid; place-items: center; font-size: 10px; font-weight: 700; color: var(--ink-2); }
.pay-method.jc .icon { background: oklch(94% 0.06 30); color: oklch(50% 0.18 30); }
.pay-method.ep .icon { background: oklch(94% 0.06 152); color: oklch(45% 0.16 152); }
.pay-method.cd .icon { background: oklch(94% 0.05 252); color: oklch(45% 0.18 252); }
.pay-method.cod .icon { background: oklch(95% 0.04 75); color: oklch(50% 0.13 75); }
.pay-method b { font-size: 14px; font-weight: 500; }
.pay-method .sub { font-size: 11.5px; color: var(--ink-3); }

.co-summary {
  position: sticky; top: 86px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  background: var(--paper);
  align-self: start;
}
.co-line { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line-2); }
.co-line:last-of-type { border-bottom: none; }
.co-line .img { width: 56px; height: 64px; border-radius: 6px; overflow: hidden; border: 1px solid var(--line); flex-shrink: 0; }
.co-line .info { flex: 1; min-width: 0; }
.co-line .nm { font-size: 13px; font-weight: 500; }
.co-line .meta { font-size: 11.5px; color: var(--ink-3); }
.co-line .price { font-weight: 600; font-size: 13px; font-variant-numeric: tabular-nums; }

/* ── Footer ─────────────────────────────── */
footer.site {
  background: oklch(96% 0.005 60);
  border-top: 1px solid var(--line);
  margin-top: 64px;
  padding: 48px 0 32px;
  font-size: 13.5px;
  color: var(--ink-2);
}
footer.site .container { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 32px; }
footer.site h5 { font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 14px; color: var(--ink-1); }
footer.site ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
footer.site a { color: var(--ink-2); text-decoration: none; }
footer.site a:hover { color: var(--ink-1); }
footer.site .nl-row { display: flex; gap: 6px; max-width: 300px; }
footer.site .nl-row input { flex: 1; height: 38px; padding: 0 12px; border: 1px solid var(--line); border-radius: 999px; outline: none; background: white; }
.foot-bottom { max-width: var(--maxw); margin: 32px auto 0; padding: 16px 24px 0; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--ink-3); }

/* ── Toast ─────────────────────────────── */
.toast-wrap { position: fixed; right: 20px; bottom: 20px; display: flex; flex-direction: column-reverse; gap: 8px; z-index: 200; }
.toast { background: var(--ink-1); color: white; padding: 12px 16px; border-radius: 10px; font-size: 13.5px; box-shadow: 0 12px 40px rgba(0,0,0,.18); display: flex; align-items: center; gap: 10px; max-width: 320px; animation: slide-up .2s ease; }
@keyframes slide-up { from { transform: translateY(8px); opacity: 0; } }

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; padding: 32px; min-height: auto; }
  .hero h1 { font-size: 40px; }
  .hero-art { display: none; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-tiles { grid-template-columns: repeat(3, 1fr); }
  .pdp { grid-template-columns: 1fr; gap: 32px; }
  .cat-page { grid-template-columns: 1fr; }
  .filter-side { display: none; }
  .co-grid { grid-template-columns: 1fr; }
  footer.site .container { grid-template-columns: repeat(2, 1fr); }
  .nav-main { display: none; }
  .hdr-search { width: 180px; }
}
@media (max-width: 640px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 12px; }
  .cat-tiles { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 32px; }
  .pdp-info h1 { font-size: 26px; }
  .hdr-inner { grid-template-columns: auto 1fr auto; gap: 12px; }
  .hdr-search { display: none; }
  .container { padding: 0 16px; }
  footer.site .container { grid-template-columns: 1fr; }
  .section { margin: 36px 0; }
  .section-head h2 { font-size: 24px; }
}
