/* ============================================================
   LASTWELL — industrial heritage-workshop design system
   Waxed canvas, stamped steel, brass screws, one rust accent.
   ============================================================ */

:root {
  --paper: #ece5d6;        /* waxed canvas field */
  --paper-2: #e4dcc9;      /* panel tint */
  --paper-3: #ddd4bf;      /* deeper tint */
  --ink: #211c15;          /* stamped ink / near-black */
  --iron: #57503f;         /* secondary text */
  --faint: #7d7460;        /* tertiary */
  --hairline: #c7bda4;     /* rules */
  --hairline-dark: #a99e83;
  --rust: #a4441c;         /* the one oxidized accent */
  --rust-deep: #7c3113;
  --rust-wash: rgba(164, 68, 28, 0.08);
  --ink-panel: #262019;    /* dark bands */
  --paper-on-ink: #e6ddc8;
  --display: "Zilla Slab", "Rockwell", "Courier New", serif;
  --body: "Archivo", "Helvetica Neue", sans-serif;
  --mono: "IBM Plex Mono", "Courier New", monospace;
  --gutter: clamp(16px, 4vw, 48px);
  --maxw: 1360px;
}

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

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

body {
  font-family: var(--body);
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

/* --- grain overlay: the whole site sits on waxed canvas ---- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.55;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.55 0 0 0 0 0.51 0 0 0 0 0.42 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

::selection { background: var(--rust); color: var(--paper); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ============================================================ TOP TICKER */
.ticker {
  background: var(--ink-panel);
  color: var(--paper-on-ink);
  border-bottom: 3px solid var(--rust);
  overflow: hidden;
  white-space: nowrap;
}
.ticker span {
  display: inline-block;
  padding: 6px 0;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: ticker 60s linear infinite;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================ MASTHEAD */
.masthead {
  border-bottom: 1px solid var(--hairline-dark);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 100;
}
.masthead .wrap {
  display: flex;
  align-items: stretch;
  gap: 28px;
  min-height: 62px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 10px 0;
}
.brand-mark { width: 40px; height: 40px; flex: none; }
.brand-word {
  font-family: var(--display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.06em;
  line-height: 1;
}
.brand-word small {
  display: block;
  font-family: var(--mono);
  font-weight: 400;
  font-size: 8.5px;
  letter-spacing: 0.3em;
  color: var(--iron);
  margin-top: 3px;
}
.masthead nav {
  display: flex;
  align-items: stretch;
  margin-left: auto;
}
.masthead nav a {
  display: flex;
  align-items: center;
  padding: 0 18px;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-left: 1px solid var(--hairline);
  transition: background 0.15s ease;
}
.masthead nav a:hover { background: var(--paper-3); color: var(--rust-deep); }
@media (max-width: 720px) {
  .masthead nav a { padding: 0 10px; font-size: 9.5px; }
  .brand-word { font-size: 20px; }
}

/* ============================================================ HERO */
.hero {
  background: var(--ink-panel);
  color: var(--paper-on-ink);
  border-bottom: 1px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.hero::before {
  /* faint blueprint hatch */
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0 11px,
    rgba(230, 221, 200, 0.045) 11px 12px
  );
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: 48px;
  padding-top: clamp(48px, 7vw, 96px);
  padding-bottom: clamp(48px, 7vw, 88px);
}
.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 6.2vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.hero h1 em {
  font-style: normal;
  color: var(--rust);
  background: linear-gradient(transparent 78%, rgba(164, 68, 28, 0.35) 78%);
}
.hero .kicker { color: rgba(230, 221, 200, 0.55); margin-bottom: 22px; }
.hero .lede {
  margin-top: 26px;
  max-width: 52ch;
  font-size: 16.5px;
  line-height: 1.65;
  color: rgba(230, 221, 200, 0.78);
}
.hero-side {
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero-stamp { width: 168px; margin-left: auto; animation: stampIn 0.7s cubic-bezier(0.34, 1.3, 0.5, 1) 0.25s both; }
@keyframes stampIn {
  from { transform: rotate(-18deg) scale(1.5); opacity: 0; }
  to { transform: rotate(-8deg) scale(1); opacity: 1; }
}
.hero-facts {
  border-top: 1px solid rgba(230, 221, 200, 0.25);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(230, 221, 200, 0.65);
}
.hero-facts div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(230, 221, 200, 0.14);
}
.hero-facts b { color: var(--paper-on-ink); font-weight: 500; }
@media (max-width: 880px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 28px; }
  .hero-stamp { margin-left: 0; width: 128px; }
}

/* search bar row (in hero) */
.hero-search {
  margin-top: 34px;
  display: flex;
  max-width: 560px;
  border: 1px solid rgba(230, 221, 200, 0.4);
  background: rgba(0, 0, 0, 0.25);
}
.hero-search input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: 0;
  padding: 14px 16px;
  color: var(--paper-on-ink);
  font-size: 15px;
}
.hero-search input::placeholder { color: rgba(230, 221, 200, 0.4); }
.hero-search button {
  border: 0;
  border-left: 1px solid rgba(230, 221, 200, 0.4);
  background: var(--rust);
  color: #f4ecdc;
  padding: 0 26px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.15s ease;
}
.hero-search button:hover { background: var(--rust-deep); }

/* ============================================================ SECTION HEADINGS */
.section-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 44px 0 18px;
}
.section-head h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: 0.01em;
}
.section-head .rule { flex: 1; height: 1px; background: var(--hairline-dark); align-self: center; }
.section-head .mono { color: var(--iron); }

/* ============================================================ BROWSE LAYOUT */
.browse { padding-bottom: 72px; }
.browse-grid {
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}
@media (max-width: 880px) { .browse-grid { grid-template-columns: 1fr; } }

/* --------------------- filter sidebar */
.filters {
  position: sticky;
  top: 78px;
  border: 1px solid var(--hairline-dark);
  background: var(--paper-2);
}
.filters-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: var(--ink-panel);
  color: var(--paper-on-ink);
}
.filters-head button {
  background: none;
  border: 0;
  color: rgba(230, 221, 200, 0.6);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.filters-head button:hover { color: var(--paper-on-ink); }
.fgroup { border-top: 1px solid var(--hairline); padding: 14px; }
.fgroup:first-of-type { border-top: 0; }
.fgroup legend, .fgroup .flabel {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--iron);
  margin-bottom: 10px;
  display: block;
}
.fgroup fieldset { border: 0; }
.fopt {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 4px 0;
  font-size: 13.5px;
  cursor: pointer;
  color: var(--ink);
}
.fopt input { accent-color: var(--rust); width: 14px; height: 14px; flex: none; }
.fopt .count { margin-left: auto; font-family: var(--mono); font-size: 10px; color: var(--faint); }
.fopt:hover { color: var(--rust-deep); }
.fgroup select {
  width: 100%;
  border: 1px solid var(--hairline-dark);
  background: var(--paper);
  padding: 8px 10px;
  font-size: 13.5px;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%2357503f'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

/* --------------------- toolbar above grid */
.toolbar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 10px;
  margin-bottom: 22px;
}
.toolbar .result-count { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--iron); }
.toolbar .spacer { flex: 1; }
.toolbar label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--iron); }
.toolbar select {
  border: 1px solid var(--hairline-dark);
  background: var(--paper-2);
  padding: 7px 28px 7px 10px;
  font-size: 13px;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%2357503f'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.active-query {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  background: var(--rust-wash);
  border: 1px dashed var(--rust);
  color: var(--rust-deep);
  padding: 4px 10px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.active-query button { border: 0; background: none; color: var(--rust-deep); font-weight: 700; padding: 0; }

/* --------------------- product grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
  gap: 1px;
  border: 1px solid var(--hairline-dark);
}
.grid > * { outline: 1px solid var(--hairline-dark); }
.grid-empty {
  grid-column: 1 / -1;
  background: var(--paper-2);
  padding: 64px 24px;
  text-align: center;
  color: var(--iron);
}
.grid-empty .mono { color: var(--rust-deep); margin-bottom: 10px; }

.card {
  background: var(--paper);
  display: flex;
  flex-direction: column;
  text-align: left;
  border: 0;
  padding: 0;
  position: relative;
  transition: background 0.18s ease;
  animation: cardIn 0.4s ease both;
}
@keyframes cardIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.card:hover { background: #f2ecdf; }
.card:focus-visible { outline: 2px solid var(--rust); outline-offset: -2px; }
.card-art { position: relative; border-bottom: 1px solid var(--hairline); }
.card-art svg { width: 100%; height: auto; }
.card-proven {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 58px;
  height: 58px;
  transform: rotate(9deg);
  opacity: 0.92;
  transition: transform 0.25s cubic-bezier(0.34, 1.5, 0.5, 1);
}
.card:hover .card-proven { transform: rotate(3deg) scale(1.06); }
.card-body { padding: 14px 16px 12px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.card-shop { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); }
.card-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18.5px;
  line-height: 1.2;
}
.card-meta {
  margin-top: auto;
  padding-top: 8px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.card-price { font-family: var(--display); font-weight: 700; font-size: 17px; }
.card-price .from { font-family: var(--mono); font-weight: 400; font-size: 9px; letter-spacing: 0.1em; color: var(--faint); margin-right: 3px; }
.card-rating { font-family: var(--mono); font-size: 10.5px; color: var(--iron); letter-spacing: 0.05em; }
.card-rating b { color: var(--rust-deep); font-weight: 600; }

/* --------------------- the scorecard strip (memorable bit) */
.scorecard {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px dashed var(--hairline-dark);
  background: var(--paper-2);
}
.stamp-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 9px 4px 8px;
  border-left: 1px dashed var(--hairline-dark);
  min-width: 0;
}
.stamp-cell:first-child { border-left: 0; }
.stamp-cell svg { width: 17px; height: 17px; stroke: var(--iron); }
.stamp-cell.hot svg { stroke: var(--rust); }
.stamp-cell .v {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  padding: 0 3px;
}
.stamp-cell.hot .v { color: var(--rust-deep); font-weight: 600; }
.stamp-cell .k { font-family: var(--mono); font-size: 7px; letter-spacing: 0.18em; color: var(--faint); text-transform: uppercase; }

.skeleton { background: var(--paper); min-height: 340px; position: relative; overflow: hidden; }
.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  animation: sheen 1.4s ease infinite;
}
@keyframes sheen { from { transform: translateX(-100%); } to { transform: translateX(100%); } }

/* ============================================================ CATEGORY REGISTER (static SEO sections) */
.register { border-top: 2px solid var(--ink); background: var(--paper-2); }
.register-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1px;
  background: var(--hairline-dark);
  border: 1px solid var(--hairline-dark);
  margin-bottom: 64px;
}
.register-item { background: var(--paper); padding: 22px 22px 18px; display: flex; flex-direction: column; gap: 10px; }
.register-item h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 21px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.register-item h3 .idx { font-family: var(--mono); font-size: 10px; color: var(--rust); letter-spacing: 0.1em; }
.register-item p { font-size: 13.8px; color: var(--iron); line-height: 1.6; }
.register-item .browse-link {
  margin-top: auto;
  align-self: flex-start;
  background: none;
  border: 1px solid var(--ink);
  padding: 8px 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.15s ease;
}
.register-item .browse-link:hover { background: var(--ink); color: var(--paper); }

/* ============================================================ EDITORIAL */
.editorial {
  background: var(--ink-panel);
  color: var(--paper-on-ink);
  border-top: 3px solid var(--rust);
  position: relative;
  overflow: hidden;
}
.editorial::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent 0 11px, rgba(230, 221, 200, 0.04) 11px 12px);
  pointer-events: none;
}
.editorial .wrap { position: relative; padding-top: 64px; padding-bottom: 72px; }
.editorial h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.02;
  max-width: 16ch;
  margin: 14px 0 40px;
}
.editorial .kicker { color: rgba(230, 221, 200, 0.5); }
.args {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 36px;
}
.arg { border-top: 1px solid rgba(230, 221, 200, 0.3); padding-top: 16px; }
.arg .num { font-family: var(--mono); font-size: 11px; color: var(--rust); letter-spacing: 0.2em; }
.arg h3 { font-family: var(--display); font-weight: 600; font-size: 20px; margin: 8px 0 10px; }
.arg p { font-size: 14px; line-height: 1.65; color: rgba(230, 221, 200, 0.72); }
.ledger {
  margin-top: 52px;
  border: 1px solid rgba(230, 221, 200, 0.3);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.ledger > div { padding: 18px 22px; border-left: 1px solid rgba(230, 221, 200, 0.18); }
.ledger > div:first-child { border-left: 0; }
.ledger .mono { color: rgba(230, 221, 200, 0.5); margin-bottom: 6px; display: block; }
.ledger .big { font-family: var(--display); font-weight: 700; font-size: 30px; }
.ledger .big em { font-style: normal; color: var(--rust); }
.ledger .note { font-size: 12px; color: rgba(230, 221, 200, 0.55); margin-top: 4px; }
@media (max-width: 720px) {
  .ledger > div { border-left: 0; border-top: 1px solid rgba(230, 221, 200, 0.18); }
  .ledger > div:first-child { border-top: 0; }
}

/* ============================================================ FOOTER */
footer { background: var(--ink); color: rgba(230, 221, 200, 0.65); }
footer .wrap {
  padding-top: 40px;
  padding-bottom: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-end;
}
footer .fbrand { font-family: var(--display); font-weight: 700; font-size: 22px; letter-spacing: 0.06em; color: var(--paper-on-ink); }
footer .mono { color: rgba(230, 221, 200, 0.4); }
footer p { max-width: 46ch; font-size: 12.5px; line-height: 1.6; }

/* ============================================================ MODAL */
dialog.product-modal {
  margin: auto;
  border: 1px solid var(--ink);
  border-radius: 0;
  padding: 0;
  width: min(920px, calc(100vw - 32px));
  max-height: calc(100dvh - 48px);
  background: var(--paper);
  color: var(--ink);
  box-shadow: none;
}
dialog.product-modal::backdrop { background: rgba(24, 20, 14, 0.72); }
.modal-frame { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); }
@media (max-width: 760px) { .modal-frame { grid-template-columns: 1fr; } }
.modal-left {
  border-right: 1px solid var(--hairline-dark);
  background: var(--paper-2);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 760px) { .modal-left { border-right: 0; border-bottom: 1px solid var(--hairline-dark); } }
.modal-left svg { width: 100%; height: auto; }
.modal-proven { position: absolute; top: 14px; left: 14px; width: 74px; height: 74px; transform: rotate(-8deg); }
.modal-right { padding: 26px 28px 28px; overflow-y: auto; max-height: calc(100dvh - 48px); }
.modal-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  border: 0;
  border-left: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
  width: 44px;
  height: 44px;
  font-size: 20px;
  line-height: 1;
}
.modal-close:hover { background: var(--rust); color: var(--paper); }
.modal-right .card-shop { margin-bottom: 4px; }
.modal-right h2 { font-family: var(--display); font-weight: 700; font-size: 28px; line-height: 1.1; margin-bottom: 6px; padding-right: 30px; }
.modal-sub { display: flex; gap: 14px; flex-wrap: wrap; align-items: baseline; margin-bottom: 14px; }
.modal-price { font-family: var(--display); font-weight: 700; font-size: 22px; }
.modal-desc { color: var(--iron); font-size: 14.5px; margin-bottom: 18px; }
.modal-stamps { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.chip {
  border: 1px solid var(--hairline-dark);
  background: var(--paper-2);
  padding: 5px 10px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.chip.hot { border-color: var(--rust); color: var(--rust-deep); background: var(--rust-wash); }

.why {
  border: 1px solid var(--ink);
  margin-bottom: 22px;
}
.why-head {
  background: var(--ink);
  color: var(--paper-on-ink);
  padding: 8px 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.why ul { list-style: none; }
.why li {
  padding: 9px 14px;
  border-top: 1px solid var(--hairline);
  font-size: 13.5px;
  display: flex;
  gap: 10px;
}
.why li:first-child { border-top: 0; }
.why li::before { content: "▸"; color: var(--rust); flex: none; }

.spec-table { width: 100%; border-collapse: collapse; margin-bottom: 22px; }
.spec-table caption {
  text-align: left;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--iron);
  padding-bottom: 8px;
}
.spec-table td {
  border-top: 1px solid var(--hairline);
  padding: 7px 2px;
  font-size: 13px;
  vertical-align: top;
}
.spec-table td:first-child { font-family: var(--mono); font-size: 10.5px; color: var(--faint); width: 34%; letter-spacing: 0.06em; text-transform: uppercase; padding-right: 12px; }

.buy-row { display: flex; flex-direction: column; gap: 8px; }
.buy-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper-on-ink);
  padding: 12px 16px;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.buy-btn:hover { background: var(--rust-deep); border-color: var(--rust-deep); }
.buy-btn .vname { font-size: 14px; font-weight: 500; }
.buy-btn .vprice { margin-left: auto; font-family: var(--display); font-weight: 700; font-size: 16px; }
.buy-btn .go { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(230, 221, 200, 0.6); }
.buy-btn.unavailable { opacity: 0.45; pointer-events: none; }
.buy-note { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); margin-top: 6px; }
