/* ============================================================
   PLAN V — vegan apparel, reborn
   Design system: "Joyful Vegan Revolution" — risograph manifesto
   Paper + bottle green + riso vermilion, halftone, poster type
   ============================================================ */

:root {
  /* palette */
  --paper:   #F4EFE1;   /* warm newsprint base            */
  --paper-2: #FBF7EC;   /* card / raised paper            */
  --ink:     #14231A;   /* dark bottle-green, near-black  */
  --green:   #1C6B3C;   /* riso green                     */
  --green-2: #2E8B4E;   /* brighter grass                 */
  --red:     #E5443B;   /* riso vermilion (the accent)    */
  --muted:   #6B7A6E;   /* dim text on paper              */
  --line:    #D8D0BE;   /* hairline on paper              */

  /* type */
  --display: "Anton", "Arial Narrow", sans-serif;
  --body:    "Inter", system-ui, -apple-system, sans-serif;
  --mono:    "Space Mono", ui-monospace, "SFMono-Regular", monospace;

  /* geometry */
  --wrap: 1200px;
  --radius: 4px;
  --shadow: 6px 6px 0 var(--ink);

  --nav-h: 68px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* subtle paper grain via halftone dots */
  background-image:
    radial-gradient(var(--line) 0.6px, transparent 0.6px);
  background-size: 7px 7px;
  background-attachment: fixed;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }

/* ---------- type ---------- */
h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}
.mono { font-family: var(--mono); }

/* ---------- top promo bar ---------- */
.promo {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 12px;
}
.promo b { color: #F7D14B; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--ink);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; width: min(100% - 40px, var(--wrap)); }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand svg { height: 34px; width: auto; }
.brand-word {
  font-family: var(--display);
  font-size: 26px; letter-spacing: 0.02em;
  color: var(--ink);
}
.brand-word .v { color: var(--green); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  text-decoration: none; font-weight: 600; font-size: 15px;
  color: var(--ink); position: relative;
}
.nav-links a:not(.cart-btn)::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0;
  background: var(--red); transition: width .2s ease;
}
.nav-links a:not(.cart-btn):hover::after { width: 100%; }

.cart-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--paper);
  padding: 9px 16px; border-radius: 999px;
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.05em;
  border: none; cursor: pointer;
}
.cart-btn .count {
  background: var(--red); color: #fff; min-width: 20px; height: 20px;
  border-radius: 999px; display: grid; place-items: center;
  font-size: 12px; padding: 0 5px;
}
.nav-toggle { display: none; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: 64px 0 40px; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center;
}
.hero .eyebrow { margin-bottom: 18px; }
.hero h1 {
  font-size: clamp(48px, 8.5vw, 120px);
  letter-spacing: -0.005em;
}
.hero h1 .red { color: var(--red); }
.hero h1 .green { color: var(--green); }
.hero-sub {
  margin: 24px 0 0; max-width: 46ch; font-size: 18px; color: #33413a;
}
.hero-cta { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 14px; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none; cursor: pointer;
  padding: 14px 26px; border-radius: 999px; border: 2px solid var(--ink);
  background: var(--red); color: #fff; font-weight: 700;
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn:hover { transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--ink); }
.btn.ghost { background: transparent; color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: var(--paper); }

/* hero poster art */
.hero-art {
  position: relative; aspect-ratio: 4/5;
  border: 2px solid var(--ink);
  background: var(--green);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-art svg { position: absolute; inset: 0; height: 100%; width: 100%; }

.marquee {
  margin-top: 52px; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  background: var(--paper-2); overflow: hidden; white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 40px; padding: 12px 0;
  font-family: var(--display); text-transform: uppercase; font-size: 22px;
  letter-spacing: 0.04em; animation: slide 26s linear infinite;
}
.marquee-track span { color: var(--ink); }
.marquee-track span::after { content: "✦"; color: var(--red); margin-left: 40px; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- section header ---------- */
.section { padding: 72px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 36px; }
.section-head h2 { font-size: clamp(34px, 5vw, 60px); }
.section-head p { margin: 0; color: var(--muted); max-width: 40ch; }

/* ---------- product grid ---------- */
.grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.card {
  background: var(--paper-2); border: 2px solid var(--ink);
  border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .14s ease, box-shadow .14s ease;
}
.card:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow); }
.card-art {
  position: relative; aspect-ratio: 1/1; border-bottom: 2px solid var(--ink);
  display: grid; place-items: center; overflow: hidden;
}
.card-art svg { width: 100%; height: 100%; }
.card-art img.card-mock { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-swatch { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.card-swatch i { width: 12px; height: 12px; border-radius: 50%; border: 1.5px solid var(--ink); display: inline-block; }
.line .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--red); color: #fff; padding: 3px 9px; border-radius: 999px;
}
.card-body { padding: 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-body h3 { font-size: 24px; }
.card-body .desc { color: var(--muted); font-size: 14.5px; margin: 0; flex: 1; }
.card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
.price { font-family: var(--mono); font-weight: 700; font-size: 18px; }
.add {
  border: 2px solid var(--ink); background: var(--paper); color: var(--ink);
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 9px 14px; border-radius: 999px; cursor: pointer; font-weight: 700;
  transition: background .12s, color .12s;
}
.add:hover { background: var(--green); color: #fff; border-color: var(--green); }
.add.added { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ---------- manifesto ---------- */
.manifesto { background: var(--ink); color: var(--paper); }
.manifesto .eyebrow { color: #F7D14B; }
.manifesto h2 { font-size: clamp(32px, 5vw, 64px); max-width: 16ch; }
.manifesto h2 .red { color: var(--red); }
.manifesto h2 .green { color: var(--green-2); }
.manifesto-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; margin-top: 44px; }
.manifesto-cols .num { font-family: var(--mono); color: var(--red); font-size: 13px; letter-spacing: .1em; }
.manifesto-cols h4 { font-family: var(--display); text-transform: uppercase; font-size: 22px; margin: 8px 0 6px; }
.manifesto-cols p { margin: 0; color: #C7CFC7; font-size: 15px; }

/* ---------- newsletter ---------- */
.news { text-align: center; }
.news .box {
  border: 2px solid var(--ink); border-radius: var(--radius); background: var(--paper-2);
  padding: 48px 30px; box-shadow: var(--shadow);
}
.news h2 { font-size: clamp(30px, 5vw, 54px); }
.news h2 .red { color: var(--red); }
.news p { color: var(--muted); margin: 12px auto 26px; max-width: 42ch; }
.news form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.news input[type=email] {
  font-family: var(--mono); font-size: 15px; padding: 13px 18px;
  border: 2px solid var(--ink); border-radius: 999px; min-width: 280px; background: #fff; color: var(--ink);
}
.news input[type=email]:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; }
.news .note { font-family: var(--mono); font-size: 12px; color: var(--muted); margin-top: 16px; }

/* ---------- footer ---------- */
footer { border-top: 2px solid var(--ink); padding: 48px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; align-items: start; }
.foot-brand .brand-word { font-size: 34px; }
.foot-brand p { color: var(--muted); max-width: 34ch; font-size: 14.5px; }
footer h5 { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin: 0 0 12px; }
footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
footer a { text-decoration: none; font-size: 15px; }
footer a:hover { color: var(--red); }
.foot-bottom { margin-top: 40px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-family: var(--mono); font-size: 12px; color: var(--muted); }

/* ---------- cart drawer ---------- */
.overlay {
  position: fixed; inset: 0; background: rgba(20,35,26,.5); z-index: 60;
  opacity: 0; pointer-events: none; transition: opacity .2s ease;
}
.overlay.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 92vw); z-index: 70;
  background: var(--paper); border-left: 2px solid var(--ink);
  transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 2px solid var(--ink); }
.drawer-head h3 { font-size: 26px; }
.drawer-close { background: none; border: none; font-size: 26px; cursor: pointer; line-height: 1; color: var(--ink); }
.drawer-items { flex: 1; overflow-y: auto; padding: 12px 20px; }
.cart-empty { text-align: center; color: var(--muted); padding: 50px 10px; font-family: var(--mono); font-size: 14px; }
.line {
  display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.line .thumb { width: 56px; height: 56px; border: 2px solid var(--ink); border-radius: var(--radius); overflow: hidden; background: var(--paper-2); }
.line .thumb svg { width: 100%; height: 100%; }
.line h4 { margin: 0; font-family: var(--body); font-weight: 700; font-size: 14.5px; text-transform: none; }
.line .meta { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.qty { display: inline-flex; align-items: center; gap: 8px; margin-top: 4px; }
.qty button { width: 22px; height: 22px; border: 1px solid var(--ink); background: var(--paper-2); border-radius: 4px; cursor: pointer; font-family: var(--mono); line-height: 1; }
.line .lp { font-family: var(--mono); font-weight: 700; }
.line .rm { background: none; border: none; color: var(--muted); font-size: 12px; cursor: pointer; font-family: var(--mono); text-decoration: underline; }
.drawer-foot { border-top: 2px solid var(--ink); padding: 20px; display: grid; gap: 12px; }
.subtotal { display: flex; justify-content: space-between; font-family: var(--mono); font-weight: 700; font-size: 17px; }
.discount-row { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 13px; color: var(--green); }
.drawer-foot .btn { justify-content: center; width: 100%; }
.drawer-note { font-family: var(--mono); font-size: 11px; color: var(--muted); text-align: center; }

/* ---------- checkout modal ---------- */
.modal-wrap { position: fixed; inset: 0; z-index: 80; display: none; place-items: center; padding: 20px; background: rgba(20,35,26,.55); }
.modal-wrap.open { display: grid; }
.modal { background: var(--paper); border: 2px solid var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); width: min(460px, 100%); max-height: 90vh; overflow-y: auto; }
.modal-head { padding: 20px; border-bottom: 2px solid var(--ink); display: flex; justify-content: space-between; align-items: center; }
.modal-head h3 { font-size: 24px; }
.modal-body { padding: 20px; display: grid; gap: 14px; }
.modal-body label { font-family: var(--mono); font-size: 12px; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); display: grid; gap: 6px; }
.modal-body input, .modal-body select { font-family: var(--body); font-size: 15px; padding: 11px 14px; border: 2px solid var(--ink); border-radius: var(--radius); background: #fff; color: var(--ink); }
.modal-body input:focus-visible, .modal-body select:focus-visible { outline: 3px solid var(--green); outline-offset: 1px; }
.modal-summary { background: var(--paper-2); border: 2px solid var(--ink); border-radius: var(--radius); padding: 14px; font-family: var(--mono); font-size: 13px; }
.modal-summary .row { display: flex; justify-content: space-between; padding: 3px 0; }
.modal-summary .row.tot { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 8px; font-weight: 700; font-size: 15px; }
.confirm { text-align: center; padding: 40px 24px; }
.confirm .big { font-family: var(--display); font-size: 40px; text-transform: uppercase; color: var(--green); }
.confirm p { color: var(--muted); }

/* ---------- toast ---------- */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translate(-50%, 20px); z-index: 90; background: var(--ink); color: var(--paper); font-family: var(--mono); font-size: 13px; padding: 12px 20px; border-radius: 999px; opacity: 0; pointer-events: none; transition: all .25s ease; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 380px; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .manifesto-cols { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .nav-links { position: fixed; inset: var(--nav-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--paper); border-bottom: 2px solid var(--ink); padding: 8px 20px 16px; transform: translateY(-120%); transition: transform .25s ease, visibility .25s; visibility: hidden; box-shadow: 0 8px 0 rgba(20,35,26,.06); }
  .nav-links.open { transform: translateY(0); visibility: visible; }
  .nav-links a { padding: 14px 2px; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: inline-grid; place-items: center; background: none; border: 2px solid var(--ink); border-radius: 8px; width: 42px; height: 42px; cursor: pointer; }
  .grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .card-body { padding: 14px; }
  .foot-grid { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
}

/* ---------- card links (grid -> PDP) ---------- */
.card-art { text-decoration: none; }
.card-title { text-decoration: none; color: inherit; }
.card-title:hover { color: var(--red); }

/* ============================================================
   PRODUCT PAGE (PDP)
   ============================================================ */
.pdp-main { padding-top: 20px; }
.pdp-crumb { font-family: var(--mono); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); padding: 18px 0 6px; }
.pdp-crumb a { color: var(--muted); text-decoration: none; }
.pdp-crumb a:hover { color: var(--red); }
.pdp-crumb span { margin: 0 6px; }

.pdp-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 54px; padding: 14px 0 40px; align-items: start; }

/* gallery */
.pdp-gallery { position: sticky; top: calc(var(--nav-h) + 16px); display: flex; flex-direction: column; gap: 12px; }
.pdp-hero { aspect-ratio: 4/5; border: 2px solid var(--ink); border-radius: var(--radius); overflow: hidden; background: var(--paper-2); box-shadow: var(--shadow); }
.pdp-hero img { width: 100%; height: 100%; object-fit: cover; }
.pdp-hero.art { background: var(--paper-2); }
.pdp-hero.art img { object-fit: contain; padding: 8%; }
.pdp-thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.pdp-thumb { width: 78px; height: 78px; padding: 0; border: 2px solid var(--line); border-radius: var(--radius); overflow: hidden; cursor: pointer; background: var(--paper-2); transition: border-color .12s; }
.pdp-thumb.on { border-color: var(--ink); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumb.art img { object-fit: contain; padding: 8px; }

/* info */
.pdp-info { padding-top: 6px; }
.pdp-tag { display: inline-block; font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; background: var(--red); color: #fff; padding: 3px 10px; border-radius: 999px; margin-bottom: 12px; }
.pdp-info h1 { font-size: clamp(38px, 6vw, 62px); line-height: .9; }
.pdp-tag-line { color: var(--muted); font-size: 17px; margin: 12px 0 0; max-width: 46ch; }
.pdp-price { font-family: var(--mono); font-weight: 700; font-size: 26px; margin: 18px 0 4px; }
.pdp-meta-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.pdp-dot { opacity: .5; }
.pdp-swatch { display: inline-flex; align-items: center; gap: 7px; }
.pdp-swatch i { width: 13px; height: 13px; border-radius: 50%; border: 1.5px solid var(--ink); display: inline-block; }

.pdp-buy { margin-top: 26px; border-top: 2px solid var(--line); padding-top: 22px; }
.pdp-size-head { display: flex; align-items: center; justify-content: space-between; font-family: var(--mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 10px; }
.pdp-guide-toggle { background: none; border: none; color: var(--red); font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: .05em; cursor: pointer; text-decoration: underline; padding: 0; }
.pdp-size-opts { display: flex; gap: 8px; flex-wrap: wrap; }
.pdp-size-btn { min-width: 52px; padding: 11px 12px; border: 2px solid var(--ink); background: var(--paper-2); color: var(--ink); font-family: var(--mono); font-weight: 700; font-size: 14px; border-radius: var(--radius); cursor: pointer; transition: background .12s, color .12s; }
.pdp-size-btn:hover { background: var(--line); }
.pdp-size-btn.on { background: var(--ink); color: var(--paper); }
.pdp-add { width: 100%; justify-content: center; margin-top: 18px; font-size: 15px; }
.pdp-reassure { font-family: var(--mono); font-size: 11.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; margin: 12px 0 0; text-align: center; }

.pdp-guide { width: 100%; border-collapse: collapse; margin-top: 20px; font-family: var(--mono); font-size: 13px; border: 2px solid var(--ink); }
.pdp-guide caption { font-size: 11px; color: var(--muted); text-align: left; padding: 8px 2px; text-transform: uppercase; letter-spacing: .05em; }
.pdp-guide th, .pdp-guide td { padding: 8px 12px; text-align: left; border-bottom: 1px solid var(--line); }
.pdp-guide thead th { background: var(--ink); color: var(--paper); text-transform: uppercase; font-size: 11px; letter-spacing: .06em; }
.pdp-guide tbody tr:last-child td { border-bottom: none; }

.pdp-acc { margin-top: 26px; border-top: 2px solid var(--line); }
.pdp-item { border-bottom: 2px solid var(--line); }
.pdp-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; padding: 16px 2px; font-family: var(--display); font-size: 19px; text-transform: uppercase; }
.pdp-item summary::-webkit-details-marker { display: none; }
.pdp-chev { font-family: var(--mono); font-size: 22px; color: var(--red); transition: transform .15s; }
.pdp-item[open] .pdp-chev { transform: rotate(45deg); }
.pdp-item-body { padding: 0 2px 18px; color: var(--muted); font-size: 15px; line-height: 1.65; }
.pdp-item-body a { color: var(--red); }

/* mission */
.pdp-mission { background: var(--ink); color: var(--paper); padding: 68px 0; margin-top: 20px; }
.pdp-mission .eyebrow { color: var(--red); }
.pdp-mission h2 { font-size: clamp(34px, 5vw, 56px); margin: 14px 0 18px; }
.pdp-mission h2 .green { color: var(--green-2); }
.pdp-mission p { max-width: 62ch; color: #D9D2C4; font-size: 17px; }
.pdp-mission .btn.ghost { margin-top: 24px; border-color: var(--paper); color: var(--paper); }
.pdp-mission .btn.ghost:hover { background: var(--paper); color: var(--ink); }

/* more */
.pdp-more { padding: 64px 0; }
.pdp-more .section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.pdp-more .section-head h2 { font-size: clamp(30px, 4vw, 46px); }
.pdp-more .section-head p { color: var(--muted); max-width: 34ch; margin: 0; }
.pdp-more-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pdp-more-card { text-decoration: none; color: inherit; border: 2px solid var(--ink); border-radius: var(--radius); overflow: hidden; background: var(--paper-2); display: flex; flex-direction: column; transition: transform .14s ease, box-shadow .14s ease; }
.pdp-more-card:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow); }
.pdp-more-art { aspect-ratio: 1/1; border-bottom: 2px solid var(--ink); overflow: hidden; }
.pdp-more-art img { width: 100%; height: 100%; object-fit: cover; }
.pdp-more-art svg { width: 100%; height: 100%; }
.pdp-more-body { padding: 12px 14px; display: flex; align-items: center; justify-content: space-between; }
.pdp-more-body h3 { font-size: 17px; }
.pdp-more-body span { font-family: var(--mono); font-weight: 700; font-size: 14px; }

.pdp-missing { text-align: center; padding: 90px 0; }
.pdp-missing h1 { font-size: 44px; }
.pdp-missing p { color: var(--muted); margin: 14px 0 24px; }

@media (max-width: 900px) {
  .pdp-grid { grid-template-columns: 1fr; gap: 28px; }
  .pdp-gallery { position: static; }
  .pdp-more-grid { grid-template-columns: repeat(2, 1fr); }
  .pdp-more .section-head { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (max-width: 620px) {
  .pdp-hero { aspect-ratio: 1/1; }
  .pdp-thumb { width: 64px; height: 64px; }
}
