/* v2 1777140991193 */
/* PixelPawn website kit — shared component styles */
@import url('../../colors_and_type.css');

* { box-sizing: border-box; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font-sans); }

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

/* ---------- header ---------- */
.pp-header {
  position: sticky; top: 0; z-index: 20;
  background: var(--brand); color: var(--paper);
  border-bottom: 2px solid var(--ink);
}
.pp-header .inner { display:flex; align-items:center; gap: 20px; height: var(--header-h); }
.pp-logo { display:flex; align-items:center; gap: 10px; cursor: pointer; }
.pp-logo img { height: 40px; }
.pp-logo-text { font-family: var(--font-pixel); font-size: 18px; line-height: 1; gap: 0; letter-spacing: -0.5px; }
.logo-retro  { color: var(--accent); }
.logo-games  { color: #fff; }
.logo-kopen  { color: #E8A33E; }
.logo-tld    { color: rgba(255,255,255,0.45); font-size: 13px; vertical-align: baseline; margin-left: 1px; }
.pp-nav { display:flex; gap: 18px; margin-left: 16px; }
.pp-nav a { color: var(--paper); font-size: 14px; font-weight: 500; background-image: linear-gradient(var(--accent), var(--accent)); }
.pp-nav a:hover { color: var(--accent); }
.pp-search { flex:1; max-width: 460px; display:flex; background: var(--paper); border-radius: var(--r-sm); border: 2px solid var(--ink); overflow: hidden; }
.pp-search input { flex:1; border:0; padding: 8px 12px; font-family: var(--font-sans); font-size: 14px; background: transparent; color: var(--ink); }
.pp-search input:focus { outline: none; }
.pp-search button { border:0; background: var(--action); color:#fff; padding: 0 14px; font-weight: 600; cursor: pointer; }
.pp-header-actions { display:flex; gap: 10px; align-items:center; margin-left:auto; }

/* ---------- buttons ---------- */
.btn {
  font-family: var(--font-sans); font-weight: 600; font-size: 15px;
  padding: 10px 18px; border-radius: var(--r-sm);
  border: 2px solid var(--ink); background: var(--card); color: var(--ink);
  box-shadow: var(--shadow-rest); cursor: pointer;
  transition: transform var(--d-quick) var(--ease-spring), box-shadow var(--d-quick) var(--ease-out);
  display: inline-flex; align-items: center; gap: 8px; text-decoration:none;
}
.btn:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow-hover); }
.btn:active { transform: translate(3px,3px); box-shadow: var(--shadow-press); }
.btn-primary { background: var(--action); color: var(--on-action); }
.btn-sell { background: var(--accent); color: var(--on-accent); }
.btn-ghost { background: transparent; color: var(--paper); border-color: var(--paper); box-shadow: none; }
.btn-ghost:hover { background: rgba(251,246,236,0.1); transform: none; box-shadow: none; }
.btn-sm { padding: 6px 12px; font-size: 13px; box-shadow: var(--shadow-rest-sm); }
.btn-lg { padding: 14px 26px; font-size: 17px; }

/* ---------- badges / chips ---------- */
.badge {
  font-family: var(--font-pixel); font-size: 9px; letter-spacing: var(--ls-pixel);
  padding: 5px 7px; border-radius: var(--r-xs);
  border: 2px solid var(--ink); background: var(--card); color: var(--ink);
  display: inline-block; line-height: 1;
}
.badge-new { background: var(--accent); color: var(--accent-ink); }
.badge-rare { background: var(--action); color: #fff; }
.badge-sale { background: var(--brand); color: var(--paper); }

.chip {
  font-family: var(--font-mono); font-size: 12px; padding: 4px 10px;
  border-radius: var(--r-pill); border: 1.5px solid var(--ink-soft);
  background: var(--card); color: var(--ink); cursor: pointer; transition: background var(--d-quick);
}
.chip:hover { background: var(--paper-2); }
.chip.active { background: var(--brand); color: var(--paper); border-color: var(--brand); }

.grade {
  font-family: var(--font-mono); font-weight: 700; font-size: 13px;
  width: 26px; height: 26px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 2px solid var(--ink); background: var(--accent); color: var(--ink);
}
.grade-b { background: var(--warn); }
.grade-c { background: var(--paper-3); }

/* ---------- card ---------- */
.card {
  background: var(--card); border: 2px solid var(--ink); border-radius: var(--r-md);
  box-shadow: var(--shadow-rest); overflow: hidden; position: relative;
  transition: transform var(--d-quick) var(--ease-spring), box-shadow var(--d-quick) var(--ease-out);
  cursor: pointer;
}
.card:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow-hover); }

.product-card .img { background: var(--paper-2); aspect-ratio: 4/3; display:flex; align-items:center; justify-content:center; border-bottom: 1.5px solid var(--ink); }
.product-card .img img { width: 78%; }
.product-card .body { padding: 14px; }
.product-card .platform { font-family: var(--font-mono); font-size: 10px; color: var(--ink-3); text-transform: uppercase; letter-spacing: var(--ls-wide); }
.product-card .title { font-size: 15px; font-weight: 600; color: var(--brand); margin: 4px 0 10px; line-height: 1.25; }
.product-card .row { display:flex; justify-content:space-between; align-items:center; }
.product-card .price { font-family: var(--font-mono); font-weight: 700; font-size: 16px; color: var(--ink); }
.product-card .price .old { color: var(--ink-3); font-size: 12px; text-decoration: line-through; margin-right: 6px; }
.product-card .corner { position: absolute; top: 10px; left: 10px; }

/* ---------- inputs ---------- */
.field {
  width: 100%; padding: 10px 12px; border-radius: var(--r-sm);
  border: var(--border); background: var(--card); color: var(--ink);
  font-family: var(--font-sans); font-size: 15px;
}
.field:focus { outline: var(--focus-ring); outline-offset: 2px; border-color: var(--brand); }

/* ---------- eyebrow ---------- */
.eyebrow {
  font-family: var(--font-mono); font-size: 12px; color: var(--ink-3);
  text-transform: uppercase; letter-spacing: var(--ls-wide); font-weight: 500;
}
.section-label {
  font-family: var(--font-pixel); font-size: 10px; letter-spacing: var(--ls-pixel);
  color: var(--action);
}

/* ---------- hero ---------- */
.hero {
  background: var(--brand);
  background-image: url('assets/pattern-pixelgrid.svg');
  background-size: 40px 40px;
  color: var(--paper);
  border-bottom: 2px solid var(--ink);
  padding: 64px 0 72px;
  position: relative; overflow: hidden;
}
.hero::after {
  content: ""; position:absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 2px, rgba(251,246,236,0.02) 2px 4px);
  pointer-events:none;
}
.hero .inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; position:relative; z-index:1; }
.hero h1 { font-size: var(--t-80); line-height: 0.95; margin: 12px 0 20px; letter-spacing: var(--ls-tight); color: var(--paper); }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero .sub { font-size: 18px; color: #C6CAE0; max-width: 46ch; line-height: 1.5; }
.hero .cta-row { display:flex; gap: 14px; margin-top: 28px; }
.hero-visual { justify-self: end; }

/* ---------- trust row ---------- */
.trust {
  background: var(--paper-2); border-bottom: 1.5px solid var(--paper-3);
  padding: 20px 0;
}
.trust .row { display:grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-cell { display:flex; gap: 12px; align-items:center; }
.trust-cell .dot { width: 32px; height: 32px; border-radius: 50%; background: var(--accent); border: 2px solid var(--ink); display:flex; align-items:center; justify-content:center; font-family: var(--font-pixel); font-size: 10px; color: var(--ink); }
.trust-cell .t { font-size: 13px; font-weight: 600; color: var(--brand); line-height: 1.3; }
.trust-cell .t small { display:block; font-weight:400; font-size: 12px; color: var(--ink-3); margin-top: 2px; }

/* ---------- sections ---------- */
.section { padding: 64px 0; }
.section h2 { font-size: var(--t-32); margin: 8px 0 24px; }

/* ---------- console grid ---------- */
.console-grid { display:grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.console-tile {
  background: var(--card); border: 2px solid var(--ink); border-radius: var(--r-md);
  padding: 16px 12px 14px; text-align:center; cursor: pointer;
  box-shadow: var(--shadow-rest-sm);
  transition: transform var(--d-quick) var(--ease-spring), box-shadow var(--d-quick) var(--ease-out);
}
.console-tile:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow-hover); }
.console-tile .swatch { width: 100%; aspect-ratio: 1.4; border-radius: var(--r-sm); margin-bottom: 8px; display:flex; align-items:center; justify-content:center; }
.console-tile .name { font-size: 13px; font-weight: 600; color: var(--brand); }
.console-tile .count { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); }

/* ---------- product grid ---------- */
.product-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

/* ---------- sell band ---------- */
.sell-band {
  background: var(--accent);
  border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  padding: 56px 0;
}
.sell-band .inner { display:grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items:center; }
.sell-band h2 { font-size: var(--t-40); margin: 0 0 12px; color: var(--accent-ink); }
.sell-band p { font-size: 17px; color: var(--accent-ink); max-width: 48ch; }

/* ---------- footer ---------- */
.pp-footer { background: var(--brand-deep); color: var(--paper); padding: 56px 0 32px; border-top: 2px solid var(--ink); }
.pp-footer .cols { display:grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.pp-footer h5 { color: var(--accent); font-size: 13px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: var(--ls-wide); margin: 0 0 12px; font-weight: 500;}
.pp-footer ul { list-style: none; padding:0; margin:0; }
.pp-footer li { margin-bottom: 8px; font-size: 14px; color: #C6CAE0; }
.pp-footer li a { color: #C6CAE0; background-image: linear-gradient(var(--accent), var(--accent)); }
.pp-footer li a:hover { color: var(--accent); }
.pp-footer .brand-col p { font-size: 14px; color: #C6CAE0; line-height: 1.55; max-width: 36ch; }
.pp-footer .bottom { border-top: 1px solid var(--brand-scanline); padding-top: 20px; display:flex; justify-content:space-between; font-size: 12px; color: var(--ink-3); font-family: var(--font-mono); }

/* ---------- PLP layout ---------- */
.plp { display:grid; grid-template-columns: 240px 1fr; gap: 32px; padding: 32px 0; }
.filter-group { margin-bottom: 24px; }
.filter-group h5 { font-size: 12px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: var(--ls-wide); color: var(--ink-3); margin: 0 0 10px; font-weight: 500; }
.filter-group label { display:flex; align-items:center; gap: 8px; font-size: 14px; padding: 4px 0; cursor: pointer; }
.filter-group input[type="checkbox"] { accent-color: var(--brand); width: 16px; height: 16px; }
.plp-top { display:flex; justify-content:space-between; align-items:center; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1.5px solid var(--paper-3); }
.plp-top .count { font-family: var(--font-mono); font-size: 13px; color: var(--ink-3); }
.plp-top select { font-family: var(--font-sans); font-size: 14px; padding: 6px 10px; border: var(--border); border-radius: var(--r-sm); background: var(--card); }

/* ---------- PDP ---------- */
.pdp { display:grid; grid-template-columns: 1.2fr 1fr; gap: 48px; padding: 40px 0; }
.pdp-gallery { background: var(--card); border: 2px solid var(--ink); border-radius: var(--r-md); box-shadow: var(--shadow-rest); overflow:hidden; }
.pdp-gallery .main { aspect-ratio: 4/3; background: var(--paper-2); display:flex; align-items:center; justify-content:center; border-bottom: 1.5px solid var(--ink); }
.pdp-gallery .main img { width: 70%; }
.pdp-gallery .thumbs { display:flex; gap: 8px; padding: 12px; }
.pdp-gallery .thumb { width: 56px; height: 56px; border: 1.5px solid var(--paper-3); border-radius: var(--r-sm); background: var(--paper-2); display:flex; align-items:center; justify-content:center; cursor:pointer; }
.pdp-gallery .thumb.active { border-color: var(--brand); border-width: 2px; }
.pdp-gallery .thumb img { width: 80%; }
.pdp-info .platform-chip { display:inline-block; padding: 4px 10px; border-radius: var(--r-pill); background: var(--paper-2); font-family: var(--font-mono); font-size: 12px; color: var(--ink-2); margin-bottom: 10px; }
.pdp-info h1 { font-size: var(--t-40); line-height: 1.05; margin: 0 0 12px; }
.pdp-info .price-row { display:flex; align-items:baseline; gap: 14px; margin: 16px 0; }
.pdp-info .price { font-family: var(--font-mono); font-weight: 700; font-size: 32px; color: var(--ink); }
.pdp-info .old { color: var(--ink-3); text-decoration: line-through; font-family: var(--font-mono); }
.pdp-info .discount { font-family: var(--font-pixel); font-size: 10px; background: var(--action); color:#fff; padding: 4px 8px; border: 2px solid var(--ink); border-radius: var(--r-xs); letter-spacing: var(--ls-pixel); }
.pdp-info .condition-panel { background: var(--paper-2); border: 1.5px solid var(--paper-3); border-radius: var(--r-md); padding: 16px; margin: 20px 0; }
.pdp-info .condition-panel .h { display:flex; gap: 10px; align-items:center; font-weight: 600; color: var(--brand); margin-bottom: 8px; }
.pdp-info .condition-panel p { font-size: 14px; color: var(--ink-2); margin: 0; line-height: 1.5; }
.pdp-info .feature-row { display:flex; gap: 16px; margin: 16px 0 24px; }
.pdp-info .feature { display:flex; gap: 8px; font-size: 13px; color: var(--ink-2); align-items:center; }
.pdp-info .feature img { width: 20px; height: 20px; }
.pdp-info .buy-row { display:flex; gap: 12px; margin-top: 20px; }

/* ---------- sell flow ---------- */
.sell-page { padding: 40px 0 80px; }
.sell-hero { background: var(--accent); border: 2px solid var(--ink); border-radius: var(--r-md); box-shadow: var(--shadow-rest); padding: 36px; margin-bottom: 32px; position: relative; overflow:hidden; }
.sell-hero h1 { color: var(--accent-ink); font-size: var(--t-56); line-height: 1; margin: 0 0 12px; }
.sell-hero p { color: var(--accent-ink); max-width: 44ch; font-size: 16px; line-height: 1.5; margin: 0; }
.sell-step { background: var(--card); border: 2px solid var(--ink); border-radius: var(--r-md); box-shadow: var(--shadow-rest); padding: 28px; margin-bottom: 20px; }
.sell-step .num { width: 34px; height: 34px; background: var(--brand); color: var(--paper); font-family: var(--font-pixel); font-size: 14px; border-radius: 50%; display:inline-flex; align-items:center; justify-content:center; margin-right: 12px; border: 2px solid var(--ink); }
.sell-step h3 { display:flex; align-items:center; margin: 0 0 10px; font-size: var(--t-20); }
.sell-step .search-big { display:flex; border: 2px solid var(--ink); border-radius: var(--r-sm); background: var(--paper); overflow: hidden; box-shadow: var(--shadow-rest-sm); }
.sell-step .search-big input { flex:1; border:0; padding: 14px 16px; font-size: 16px; font-family: var(--font-sans); background: transparent; }
.sell-step .search-big input:focus { outline: none; }
.sell-step .search-big button { border:0; background: var(--action); color:#fff; padding: 0 22px; font-weight: 700; cursor:pointer; font-size: 15px; }
.sell-step .results { margin-top: 16px; border-top: 1px dashed var(--paper-3); padding-top: 14px; display: grid; gap: 10px; }
.sell-step .result-row { display:grid; grid-template-columns: auto 1fr auto auto; gap: 14px; align-items:center; padding: 10px; border: 1.5px solid var(--paper-3); border-radius: var(--r-sm); background: var(--paper); cursor:pointer; transition: background var(--d-quick); }
.sell-step .result-row:hover { background: var(--paper-2); }
.sell-step .result-row.selected { border-color: var(--brand); background: var(--paper-2); border-width: 2px; }
.sell-step .result-row .img { width: 48px; height: 48px; background: var(--card); border-radius: var(--r-sm); display:flex; align-items:center; justify-content:center; border: 1px solid var(--paper-3); }
.sell-step .result-row .img img { width: 80%; }
.sell-step .result-row .t { font-weight: 600; color: var(--brand); }
.sell-step .result-row .p { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); margin-top: 2px; }
.sell-step .result-row .offer { font-family: var(--font-mono); font-weight: 700; font-size: 18px; color: var(--action); }
.condition-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 10px; }
.condition-option { padding: 18px; border: 1.5px solid var(--paper-3); border-radius: var(--r-md); cursor: pointer; background: var(--paper); transition: all var(--d-quick); text-align:center; }
.condition-option:hover { background: var(--paper-2); }
.condition-option.selected { border-color: var(--brand); border-width: 2px; background: var(--paper-2); }
.condition-option .grade-big { width: 52px; height: 52px; font-size: 22px; margin: 0 auto 10px; }
.condition-option .lbl { font-weight: 600; color: var(--brand); margin-bottom: 4px; }
.condition-option .desc { font-size: 12px; color: var(--ink-3); line-height: 1.4; }
.quote-box { background: var(--brand); color: var(--paper); border-radius: var(--r-md); border: 2px solid var(--ink); box-shadow: var(--shadow-rest); padding: 28px; margin-top: 14px; }
.quote-box .lbl { font-family: var(--font-mono); font-size: 12px; color: #B8BCD6; text-transform: uppercase; letter-spacing: var(--ls-wide); }
.quote-box .amount { font-family: var(--font-pixel); font-size: 38px; color: var(--accent); margin: 8px 0 6px; letter-spacing: 0.04em; }
.quote-box .note { font-size: 13px; color: #C6CAE0; max-width: 44ch; margin-bottom: 20px; line-height: 1.5; }

/* ---------- cart ---------- */
.cart-page { display:grid; grid-template-columns: 1.6fr 1fr; gap: 40px; padding: 40px 0; }
.cart-lines { background: var(--card); border: 2px solid var(--ink); border-radius: var(--r-md); box-shadow: var(--shadow-rest); overflow:hidden; }
.cart-line { display:grid; grid-template-columns: 80px 1fr auto auto; gap: 16px; align-items:center; padding: 16px; border-bottom: 1px dashed var(--paper-3); }
.cart-line:last-child { border-bottom: 0; }
.cart-line .img { width: 80px; height: 64px; background: var(--paper-2); border-radius: var(--r-sm); display:flex; align-items:center; justify-content:center; }
.cart-line .img img { width: 80%; }
.cart-line .t { font-weight: 600; color: var(--brand); }
.cart-line .p { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); margin-top: 2px; }
.cart-line .qty { display:inline-flex; border: 1.5px solid var(--paper-3); border-radius: var(--r-sm); overflow:hidden; }
.cart-line .qty button { border:0; background: var(--card); padding: 4px 10px; font-weight: 600; cursor:pointer; font-family: var(--font-sans); }
.cart-line .qty button:hover { background: var(--paper-2); }
.cart-line .qty span { padding: 4px 10px; font-family: var(--font-mono); font-weight: 700; min-width: 30px; text-align:center; }
.cart-line .line-total { font-family: var(--font-mono); font-weight: 700; font-size: 15px; }
.summary { background: var(--card); border: 2px solid var(--ink); border-radius: var(--r-md); box-shadow: var(--shadow-rest); padding: 24px; height: fit-content; position: sticky; top: calc(var(--header-h) + 20px); }
.summary h3 { margin: 0 0 16px; font-size: var(--t-20); }
.summary .row { display:flex; justify-content:space-between; padding: 6px 0; font-size: 14px; }
.summary .row.total { border-top: 1.5px solid var(--paper-3); margin-top: 8px; padding-top: 14px; font-weight: 700; font-size: 18px; }
.summary .row.total .v { font-family: var(--font-mono); }
.summary .row .v { font-family: var(--font-mono); }

/* ---------- toast ---------- */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 40;
  background: var(--brand); color: var(--paper);
  border: 2px solid var(--ink); border-radius: var(--r-md);
  box-shadow: var(--shadow-overlay);
  padding: 14px 20px; display:flex; align-items:center; gap: 10px;
  animation: toast-in 0.35s var(--ease-spring);
}
.toast .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
@keyframes toast-in { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ---------- star rating ---------- */
.rating { color: var(--action); font-family: var(--font-sans); font-size: 14px; letter-spacing: 2px; }

/* =========================================================
   ARCADE HOME — animated bits
   ========================================================= */

/* stars scrolling up */
.hero-arcade { position: relative; overflow: hidden; padding: 48px 0 0; }
.hero-arcade .stars { position:absolute; inset:0; pointer-events:none; z-index:0; }
.hero-arcade .star {
  position:absolute; width: 3px; height: 3px; background: var(--accent);
  box-shadow: 0 0 4px var(--accent);
  animation: starTwinkle 3s infinite ease-in-out;
}
.hero-arcade .star:nth-child(3n) { background: var(--paper); box-shadow: 0 0 3px var(--paper); width:2px; height:2px; }
.hero-arcade .star:nth-child(4n) { background: var(--action); box-shadow: 0 0 4px var(--action); }
@keyframes starTwinkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}

.hero-inner-arcade { position: relative; z-index: 2; padding-bottom: 56px; }

/* HUD score bar */
.hud {
  display:inline-flex; gap: 18px; margin-bottom: 18px;
  font-family: var(--font-pixel); font-size: 10px; letter-spacing: var(--ls-pixel);
  color: var(--paper);
}
.hud-item { display:inline-flex; align-items:center; gap:6px; }
.hud-val { font-style: normal; color: var(--accent); }
.hud-item:nth-child(3) { color: var(--action); }

/* title glow + rainbow */
.hero-arcade .hero-title { font-size: var(--t-80); line-height: 0.95; margin: 12px 0 20px; color: var(--paper); font-weight:700; letter-spacing: var(--ls-tight); }
.hero-arcade .hero-title .hero-line { display:block; }
.hero-arcade .hero-line-2 em { font-style: normal; color: var(--accent); text-shadow: 0 0 24px rgba(198,244,50,0.6), 4px 4px 0 var(--action); animation: pulse 2s infinite; display:inline-block; }
@keyframes pulse { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-4px) scale(1.02); } }

.rainbow {
  background: linear-gradient(90deg, var(--action), var(--accent), var(--action), var(--accent));
  background-size: 300% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: rainbowShift 4s linear infinite;
}
@keyframes rainbowShift { from { background-position: 0% 0; } to { background-position: 300% 0; } }

.jiggle { display:inline-block; animation: jiggle 3s ease-in-out infinite; }
@keyframes jiggle {
  0%, 90%, 100% { transform: rotate(0); }
  93% { transform: rotate(-2deg); }
  96% { transform: rotate(2deg); }
}

/* Press start */
.press-start {
  display:inline-block; margin-top: 22px; cursor: pointer;
  font-family: var(--font-pixel); font-size: 14px; letter-spacing: var(--ls-pixel);
  color: var(--accent);
}
.blink { animation: blink 1s steps(2) infinite; }
.blink-slow { animation: blink 2s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0.25; } }

/* button pop on hover */
.pop { transition: transform var(--d-quick) var(--ease-spring), box-shadow var(--d-quick) var(--ease-out); }
.pop:hover { animation: wiggle 0.4s ease-in-out; }
@keyframes wiggle {
  0%, 100% { transform: translate(-2px,-2px) rotate(0); }
  25% { transform: translate(-2px,-2px) rotate(-1.5deg); }
  75% { transform: translate(-2px,-2px) rotate(1.5deg); }
}

/* arcade scene — floating cartridges */
.arcade-scene { position: relative; min-height: 320px; }
.float-1 { animation: float1 4s ease-in-out infinite; filter: drop-shadow(8px 8px 0 #0E1020); transform-origin: center; }
.float-2 { animation: float2 5s ease-in-out infinite; filter: drop-shadow(6px 6px 0 #0E1020); }
@keyframes float1 {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-12px); }
}
@keyframes float2 {
  0%, 100% { transform: rotate(8deg) translateY(-4px); }
  50% { transform: rotate(10deg) translateY(8px); }
}
.spin-coin { animation: spinCoin 2s linear infinite; }
@keyframes spinCoin { from { transform: rotateY(0); } to { transform: rotateY(360deg); } }

.pixel-boom {
  position: absolute; top: 10%; left: -30px;
  font-family: var(--font-pixel); font-size: 48px; color: var(--action);
  -webkit-text-stroke: 3px var(--ink);
  animation: boom 1.8s ease-in-out infinite;
  transform-origin: center;
}
@keyframes boom {
  0%, 100% { transform: scale(1) rotate(-8deg); opacity: 1; }
  50% { transform: scale(1.3) rotate(-12deg); opacity: 0.8; }
}

/* marquee */
.marquee {
  margin-top: 36px;
  background: var(--action); color: var(--paper);
  border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  overflow: hidden; position: relative; z-index: 2;
  padding: 10px 0;
}
.marquee-track {
  display: inline-flex; white-space: nowrap;
  animation: marquee 35s linear infinite;
  font-size: 12px; letter-spacing: var(--ls-pixel);
}
.marquee-track > span { padding: 0 20px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* stats row with pixel numbers */
.stats-row {
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  padding: 24px; background: var(--card); border: 2px solid var(--ink);
  border-radius: var(--r-md); box-shadow: var(--shadow-rest);
  margin-top: -32px; position: relative; z-index: 3;
}
.stat { text-align: center; padding: 10px 0; }
.stat-num { font-size: 26px; color: var(--brand); letter-spacing: 0.04em; }
.stat-lbl { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); text-transform: uppercase; letter-spacing: var(--ls-wide); margin-top: 6px; }

/* console tiles — jump in, then bob on hover */
.tile-jump {
  animation: tileIn 0.5s var(--ease-spring) both;
}
@keyframes tileIn {
  from { transform: translateY(24px) scale(0.9); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.console-grid-arcade .console-tile { transition: transform var(--d-quick) var(--ease-spring), box-shadow var(--d-quick) var(--ease-out); }
.console-grid-arcade .console-tile:hover {
  animation: tileBounce 0.6s ease-in-out;
}
@keyframes tileBounce {
  0%, 100% { transform: translate(-2px,-2px); }
  30% { transform: translate(-2px,-10px) rotate(-1.5deg); }
  60% { transform: translate(-2px,-4px) rotate(1deg); }
}

/* sell band — bobbing gameboy + coin rain */
.sell-band-arcade { position: relative; overflow: hidden; }
.bob { animation: bob 3s ease-in-out infinite; }
@keyframes bob {
  0%, 100% { transform: rotate(8deg) translateY(0); }
  50% { transform: rotate(6deg) translateY(-10px); }
}
.coin-rain { position: absolute; inset: 0; pointer-events: none; }
.coin-drop {
  position: absolute; top: -30px;
  font-size: 18px; color: var(--brand);
  -webkit-text-stroke: 1px var(--ink);
  animation: coinFall 2.5s linear infinite;
  font-family: var(--font-pixel);
}
@keyframes coinFall {
  0% { transform: translateY(-40px) rotate(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(340px) rotate(720deg); opacity: 0; }
}

.glow { position:relative; }

/* new sprites + effects */
.sprite-track { position:absolute; left:0; right:0; bottom: 56px; height: 40px; pointer-events:none; z-index: 1; overflow: hidden; }
.sprite-run { position:absolute; bottom: 8px; width: 32px; height: 32px; image-rendering: pixelated; }
.sprite-run svg { width: 100%; height: 100%; }
.sprite-run-1 { animation: runAcross 12s linear infinite; animation-delay: 0s; }
.sprite-run-2 { animation: runAcross 9s linear infinite; animation-delay: -4s; }
.sprite-run-3 { animation: runAcross 7s linear infinite; animation-delay: -2s; }
@keyframes runAcross {
  from { left: -5%; transform: translateY(0); }
  25% { transform: translateY(-12px); }
  50% { transform: translateY(0); }
  75% { transform: translateY(-8px); }
  to { left: 105%; transform: translateY(0); }
}

.brick-floor { position:absolute; bottom: 48px; left:0; right:0; height: 14px; display:flex; z-index:1; pointer-events:none; }
.brick-floor .brick { flex:1; height:14px; background: var(--action); border-right: 1.5px solid var(--ink); border-top: 1.5px solid var(--ink); box-shadow: inset 0 -4px 0 rgba(0,0,0,0.25); }
.brick-floor .brick:nth-child(2n) { background: #C32A36; }

.hearts { display:inline-flex; gap: 3px; }
.heart-pulse { width: 18px; height: 18px; image-rendering: pixelated; animation: heartBeat 1.4s ease-in-out infinite; }
.heart-pulse:nth-child(2) { animation-delay: 0.15s; }
.heart-pulse:nth-child(3) { animation-delay: 0.3s; }
.heart-pulse svg { width:100%; height:100%; }
@keyframes heartBeat { 0%,100%{transform:scale(1);} 20%{transform:scale(1.25);} 40%{transform:scale(1);} }

.hint { font-family: var(--font-mono); font-size: 10px; color: #B8BCD6; margin-left: 10px; text-transform: uppercase; letter-spacing: var(--ls-wide); }

/* type-in fade */
.type-in { opacity: 0; animation: typeIn 0.5s var(--ease-out) forwards; }
@keyframes typeIn { to { opacity: 1; } from { opacity: 0; transform: translateY(8px); } }

/* combo */
.combo { position:absolute; margin-top: -80px; margin-left: 180px; animation: comboPop 1.2s ease-out forwards; pointer-events:none; z-index:5; }
.combo .pixel { display:block; color: var(--accent); text-shadow: 3px 3px 0 var(--ink); font-size: 20px; }
.combo-x { color: var(--action) !important; font-size: 14px !important; margin-top: 4px; }
@keyframes comboPop {
  0% { transform: translateY(0) scale(0.5); opacity: 0; }
  20% { transform: translateY(-20px) scale(1.2); opacity: 1; }
  80% { transform: translateY(-40px) scale(1); opacity: 1; }
  100% { transform: translateY(-80px) scale(0.8); opacity: 0; }
}

/* sparkles */
.sparkle { position:absolute; width: 12px; height: 12px; background: var(--accent); clip-path: polygon(50% 0, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0 50%, 40% 40%); animation: sparkle 2s ease-in-out infinite; }
.s1 { top: 10%; right: 5%; animation-delay: 0s; }
.s2 { bottom: 20%; left: 10%; animation-delay: 0.7s; background: var(--action); }
.s3 { top: 60%; right: 20%; animation-delay: 1.3s; }
@keyframes sparkle {
  0%, 100% { transform: scale(0) rotate(0); opacity: 0; }
  50% { transform: scale(1) rotate(180deg); opacity: 1; }
}

.orbit-sprite { position:absolute; width: 28px; height: 28px; top: 50%; left: 50%; image-rendering: pixelated; animation: orbit 6s linear infinite; transform-origin: -60px 0; }
.orbit-sprite svg { width: 100%; height:100%; }
@keyframes orbit { from { transform: rotate(0) translate(80px) rotate(0); } to { transform: rotate(360deg) translate(80px) rotate(-360deg); } }

.shake-on-hover:hover { animation: shake 0.4s; }
@keyframes shake {
  0%,100% { transform: translate(-2px,-2px); }
  20% { transform: translate(-4px,-2px); }
  40% { transform: translate(0,-2px); }
  60% { transform: translate(-4px,-4px); }
  80% { transform: translate(-2px,0); }
}

/* level-select badges on console tiles */
.level-tile { position: relative; }
.level-badge { position:absolute; top: -8px; right: -8px; background: var(--action); color: #fff; font-size: 8px; padding: 4px 6px; border: 2px solid var(--ink); border-radius: var(--r-xs); letter-spacing: var(--ls-pixel); z-index: 2; }

/* boss bar */
.boss-bar { position: relative; width: 260px; height: 20px; background: var(--ink); border: 2px solid var(--ink); border-radius: 4px; margin-top: 12px; overflow: hidden; }
.boss-bar-fill { display:block; height:100%; background: linear-gradient(90deg, var(--action), var(--accent)); animation: bossBarPulse 2s ease-in-out infinite; }
.boss-bar-label { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-size: 9px; color: #fff; text-shadow: 1px 1px 0 var(--ink); letter-spacing: var(--ls-pixel); }
@keyframes bossBarPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.85; } }

.product-wobble:hover { animation: wobble 0.5s; }
@keyframes wobble {
  0%,100% { transform: rotate(0); }
  25% { transform: rotate(-1.5deg); }
  75% { transform: rotate(1.5deg); }
}

/* coin drops in sell band become SVG */
.coin-rain .coin-drop svg { width: 24px; height: 24px; image-rendering: pixelated; }

/* =========================================================
   PLP animated bits
   ========================================================= */
.plp-header-arcade { background: var(--brand); color: var(--paper); padding: 24px 0; border-bottom: 2px solid var(--ink); position: relative; overflow: hidden; }
.plp-header-arcade::before {
  content:""; position:absolute; inset:0;
  background-image: url('assets/pattern-pixelgrid.svg');
  background-size: 24px 24px; opacity: 0.5;
}
.plp-header-arcade .inner { position:relative; display:flex; justify-content:space-between; align-items:center; }
.plp-header-arcade h2 { color: var(--paper); margin:0; font-size: var(--t-32); }
.plp-header-arcade .sub { color: #C6CAE0; font-family: var(--font-mono); font-size: 12px; margin-top: 4px; letter-spacing: var(--ls-wide); }
.plp-header-arcade .lives { display:flex; gap: 6px; }
.plp-header-arcade .lives span { width: 22px; height: 22px; image-rendering: pixelated; animation: heartBeat 1.4s ease-in-out infinite; }
.plp-header-arcade .lives span:nth-child(2) { animation-delay: 0.2s; }
.plp-header-arcade .lives span:nth-child(3) { animation-delay: 0.4s; }

.plp-grid .product-wobble { animation: tileIn 0.5s var(--ease-spring) both; }

.filter-group label:hover { color: var(--action); }

/* =========================================================
   PDP animated bits
   ========================================================= */
.pdp-gallery .main { position: relative; overflow:hidden; }
.pdp-gallery .main::after {
  content:""; position:absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 2px, rgba(0,0,0,0.05) 2px 4px);
  pointer-events:none;
}
.pdp-gallery .main img { animation: pdpFloat 4s ease-in-out infinite; }
@keyframes pdpFloat {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}
.pdp-info h1 { position: relative; }
.pdp-info h1::after {
  content: "_"; color: var(--action); margin-left: 6px;
  animation: blink 1s steps(2) infinite;
}

.buy-btn-arcade { position: relative; overflow: hidden; }
.buy-btn-arcade::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: translateX(-100%);
  animation: shimmer 2.5s ease-in-out infinite;
}
@keyframes shimmer { 0%,100% { transform: translateX(-100%); } 50% { transform: translateX(100%); } }

.stock-indicator { display:inline-flex; gap: 4px; align-items:center; }
.stock-dot { width: 10px; height:10px; background: var(--ok); border: 1.5px solid var(--ink); animation: blink 1.2s steps(2) infinite; }

/* =========================================================
   Sell flow animated bits
   ========================================================= */
.sell-hero { position: relative; overflow: hidden; }
.sell-hero::after {
  content:""; position:absolute; top: 20px; right: 20px;
  width: 40px; height: 40px; image-rendering: pixelated;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' shape-rendering='crispEdges'><rect x='5' y='1' width='6' height='1' fill='%23E8A33E'/><rect x='3' y='2' width='10' height='1' fill='%23E8A33E'/><rect x='2' y='3' width='12' height='10' fill='%23E8A33E'/><rect x='3' y='13' width='10' height='1' fill='%23E8A33E'/><rect x='5' y='14' width='6' height='1' fill='%23E8A33E'/><rect x='5' y='5' width='2' height='6' fill='%23FFF'/><rect x='9' y='5' width='2' height='6' fill='%23FFF'/></svg>") no-repeat center / contain;
  animation: spinCoin 2s linear infinite;
}
.sell-step { position: relative; transition: transform var(--d-base) var(--ease-spring); }
.sell-step.active { transform: translateX(0); }
.sell-step .num { animation: numPulse 2s ease-in-out infinite; }
@keyframes numPulse { 0%,100%{transform:scale(1);} 50%{transform:scale(1.1);} }

.quote-box { position: relative; overflow: hidden; }
.quote-box::before {
  content:""; position:absolute; inset:0;
  background-image: url('assets/pattern-pixelgrid.svg');
  background-size: 20px 20px; opacity: 0.3; pointer-events:none;
}
.quote-box .amount { animation: priceReveal 0.8s var(--ease-spring); }
@keyframes priceReveal {
  0% { transform: scale(0.4) rotate(-15deg); opacity: 0; }
  60% { transform: scale(1.15) rotate(3deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

.quote-confetti { position:absolute; top:0; left:50%; width: 1px; height: 1px; pointer-events:none; }
.quote-confetti span {
  position: absolute; width: 8px; height: 8px;
  animation: confetti 2s ease-in forwards;
}
@keyframes confetti {
  from { transform: translate(0,0) rotate(0); opacity:1; }
  to { transform: translate(var(--tx,0), 200px) rotate(720deg); opacity: 0; }
}

.condition-option { position:relative; }
.condition-option.selected::after {
  content: "✓"; position:absolute; top: 6px; right: 8px;
  font-family: var(--font-pixel); font-size: 14px; color: var(--ok);
  animation: checkPop 0.3s var(--ease-spring);
}
@keyframes checkPop { from { transform: scale(0); } to { transform: scale(1); } }

/* =========================================================
   Cart animated bits
   ========================================================= */
.cart-line { transition: background var(--d-quick); animation: tileIn 0.4s var(--ease-spring) both; }
.cart-line:hover { background: var(--paper-2); }
.cart-line .qty button { transition: transform var(--d-quick); }
.cart-line .qty button:active { transform: scale(0.85); }

.summary { position: relative; overflow:hidden; }
.summary::before {
  content:""; position:absolute; top:-4px; left:0; right:0; height: 6px;
  background: repeating-linear-gradient(90deg, var(--action) 0 8px, var(--accent) 8px 16px);
}

.cart-hero { background: var(--brand); color: var(--paper); padding: 20px 24px; border: 2px solid var(--ink); border-radius: var(--r-md); box-shadow: var(--shadow-rest); margin-bottom: 24px; display:flex; justify-content:space-between; align-items:center; }
.cart-hero h2 { color: var(--paper); margin: 0; }
.cart-hero .pixel { color: var(--accent); font-size: 11px; letter-spacing: var(--ls-pixel); margin-top: 4px; display:block; }
.cart-hero .mini-sprite { width: 40px; height: 40px; image-rendering: pixelated; animation: bob 2s ease-in-out infinite; }

/* =========================================================
   Consoles page
   ========================================================= */
.console-deck-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1100px) { .console-deck-grid { grid-template-columns: repeat(2, 1fr); } }

.console-deck {
  position: relative;
  background: var(--card); border: 2px solid var(--ink); border-radius: var(--r-md);
  box-shadow: var(--shadow-rest); overflow: hidden; cursor: pointer;
  transition: transform var(--d-quick) var(--ease-spring), box-shadow var(--d-quick) var(--ease-out);
}
.console-deck:hover { transform: translate(-3px,-3px); box-shadow: 6px 6px 0 0 var(--ink); }
.console-deck:hover .deck-art img { transform: rotate(-4deg) scale(1.05); }
.console-deck:hover .deck-cta { background: var(--action); color: #fff; }

.deck-tag {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: var(--ink); color: var(--accent);
  font-size: 8px; padding: 4px 6px; letter-spacing: var(--ls-pixel);
  border-radius: var(--r-xs); border: 2px solid var(--ink);
}
.deck-art {
  height: 150px; display:flex; align-items:center; justify-content:center;
  border-bottom: 2px solid var(--ink); position:relative; overflow: hidden;
}
.deck-art::before {
  content:""; position:absolute; inset:0;
  background-image: url('assets/pattern-pixelgrid.svg');
  background-size: 20px 20px; opacity: 0.25;
}
.deck-art img { width: 65%; transition: transform var(--d-base) var(--ease-spring); filter: drop-shadow(4px 4px 0 rgba(14,16,32,0.4)); }
.deck-body { padding: 14px 16px 16px; }
.deck-meta { display:flex; justify-content:space-between; }
.deck-year, .deck-count { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); }
.deck-name { margin: 6px 0 4px; font-size: 18px; }
.deck-tagline { font-size: 13px; color: var(--ink-2); margin: 0 0 12px; line-height: 1.4; }
.deck-cta { display:inline-block; padding: 6px 12px; border: 2px solid var(--ink); border-radius: var(--r-sm); font-size: 9px; letter-spacing: var(--ls-pixel); color: var(--ink); transition: all var(--d-quick); }

/* trust cards on consoles page */
.trust-cards { display:grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.trust-card { padding: 24px; background: var(--card); border: 2px solid var(--ink); border-radius: var(--r-md); box-shadow: var(--shadow-rest-sm); position: relative; }
.trust-card:hover { box-shadow: var(--shadow-rest); transform: translate(-1px,-1px); }
.trust-num { position: absolute; top: 16px; right: 16px; font-size: 22px; color: var(--paper-3); letter-spacing: 0; }
.trust-card h4 { margin: 0 0 8px; font-size: 18px; color: var(--brand); padding-right: 40px; }
.trust-card p { margin: 0; font-size: 14px; color: var(--ink-2); line-height: 1.55; }



/* =========================================================
   Hero marketplaces (Vinted / eBay outbound) on Home
   ========================================================= */
.hero-marketplaces { display:flex; flex-wrap: wrap; align-items:center; gap: 10px; margin-top: 22px; padding-top: 18px; border-top: 1px dashed rgba(251,246,236,0.25); }
.hero-marketplaces-lbl { font-size: 9px; color: var(--accent); letter-spacing: var(--ls-pixel); margin-right: 4px; }
.market-pill { display:inline-flex; align-items:center; gap: 6px; padding: 8px 14px; border: 2px solid var(--ink); border-radius: var(--r-pill); background: var(--paper); color: var(--ink); font-weight: 600; font-size: 14px; box-shadow: var(--shadow-rest-sm); text-decoration:none; background-image:none; transition: transform var(--d-quick) var(--ease-spring), box-shadow var(--d-quick); }
.market-pill:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow-hover); }
.market-vinted { background: #09b1ba; color: #fff; }
.market-ebay { background: #fff; color: #111; }

.section-head { display:flex; justify-content:space-between; align-items:flex-end; gap: 16px; flex-wrap: wrap; margin-bottom: 8px; }
.section-sub { font-size: 14px; color: var(--ink-2); margin: 8px 0 0; max-width: 50ch; }

/* =========================================================
   Sell flow V2 — the centerpiece
   ========================================================= */
.sell-page-v2 { padding-bottom: 80px; }

/* hero */
.sell-hero-v2 {
  position: relative; overflow: hidden;
  background: var(--brand);
  background-image:
    url('assets/pattern-pixelgrid.svg'),
    radial-gradient(ellipse at top right, rgba(230,57,70,0.25), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(198,244,50,0.15), transparent 55%);
  background-size: 40px 40px, auto, auto;
  color: var(--paper);
  border-bottom: 2px solid var(--ink);
  padding: 56px 0 64px;
}
.sell-hero-v2::after {
  content:""; position:absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 2px, rgba(251,246,236,0.03) 2px 4px);
  pointer-events:none;
}
.sell-hero-bg { position:absolute; inset: 0; pointer-events:none; }
.sh-coin { position:absolute; top: -20px; width: 14px; height: 14px;
  background: radial-gradient(circle at 35% 35%, #FBE26E, #E8A33E 60%, #8B5A1A 100%);
  border: 2px solid #0E1020; border-radius: 50%;
  animation: shCoinFall linear infinite;
}
@keyframes shCoinFall {
  from { transform: translateY(0) rotate(0); opacity: 0; }
  10% { opacity: 1; }
  to { transform: translateY(800px) rotate(720deg); opacity: 0.2; }
}

.sell-hero-inner { display:grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items:center; position:relative; z-index: 1; }
.sell-hero-copy { position:relative; }
.sell-h1 { font-size: clamp(40px, 7vw, 88px); line-height: 0.95; letter-spacing: var(--ls-tight); margin: 14px 0 20px; color: var(--paper); }
.sell-h1-line { display:block; }
.sell-h1-line em { font-style: normal; color: var(--accent); }
.sell-lede { font-size: 18px; color: #DDE2F0; max-width: 52ch; line-height: 1.55; margin: 0 0 22px; }
.sell-lede strong { color: var(--accent); font-weight: 700; }
.sell-bullets { display:flex; flex-wrap: wrap; gap: 10px 18px; }
.sell-bullet { font-size: 13px; color: #C6CAE0; display:inline-flex; align-items:center; gap: 6px; }
.sb-num { font-size: 9px; color: var(--accent); letter-spacing: var(--ls-pixel); background: rgba(198,244,50,0.12); border: 1px solid rgba(198,244,50,0.4); padding: 3px 6px; border-radius: var(--r-xs); }

.sell-hero-art { position:relative; height: 320px; }
.sell-hero-art img { position:absolute; filter: drop-shadow(6px 6px 0 #0E1020); image-rendering: pixelated; }
.sell-hero-art .float-1 { width: 220px; bottom: 0; right: 20px; animation: bob 3s ease-in-out infinite; }
.sell-hero-art .float-2 { width: 130px; top: 10px; left: 20px; animation: bob 4s ease-in-out infinite; animation-delay: 0.5s; transform: rotate(-12deg); }
.sell-hero-art .float-3 { width: 110px; top: 40%; right: 0; animation: bob 3.5s ease-in-out infinite; animation-delay: 1s; transform: rotate(8deg); }
.sell-hero-arrow { position:absolute; bottom: 30px; left: 0; font-size: 56px; color: var(--accent); animation: arrowPulse 1.6s ease-in-out infinite; text-shadow: 4px 4px 0 #0E1020; }
@keyframes arrowPulse { 0%,100%{transform: translateX(0);} 50%{transform: translateX(10px);} }

.sell-body { padding: 32px 24px 0; max-width: 1100px; }

/* step tracker */
.sell-tracker { list-style:none; padding:0; margin: 0 0 32px; display:flex; align-items:center; gap: 4px; flex-wrap: wrap; }
.st-item { display:inline-flex; align-items:center; gap: 10px; padding: 8px 14px; border: 2px solid var(--paper-3); border-radius: var(--r-pill); background: var(--card); color: var(--ink-3); font-weight: 600; font-size: 14px; transition: all var(--d-quick); }
.st-item.active { border-color: var(--ink); color: var(--ink); background: var(--accent); box-shadow: var(--shadow-rest-sm); }
.st-item.done { border-color: var(--ok); color: var(--ink); background: var(--card); }
.st-item.done .st-num { background: var(--ok); color: var(--ink); }
.st-num { width: 24px; height: 24px; border-radius: 50%; background: var(--paper-3); color: var(--ink); display:inline-flex; align-items:center; justify-content:center; font-size: 11px; transition: all var(--d-quick); }
.st-item.active .st-num { background: var(--ink); color: var(--accent); }
.st-sep { flex: 1 1 30px; min-width: 20px; max-width: 60px; height: 2px; background: var(--paper-3); border-radius: 2px; transition: background var(--d-quick); }
.st-sep.done { background: var(--ok); }

/* sell card */
.sell-card { background: var(--card); border: 2px solid var(--ink); border-radius: var(--r-md); box-shadow: var(--shadow-rest); padding: 28px; margin-bottom: 24px; }
.sell-card-pop { animation: cardPop 0.45s var(--ease-spring) both; }
@keyframes cardPop { from { opacity: 0; transform: translateY(20px) scale(0.98); } to { opacity: 1; transform: none; } }
.sell-card-head { display:flex; gap: 16px; margin-bottom: 20px; }
.sell-card-num { width: 44px; height: 44px; border-radius: var(--r-sm); border: 2px solid var(--ink); background: var(--accent); color: var(--ink); display:inline-flex; align-items:center; justify-content:center; font-size: 14px; flex-shrink: 0; }
.sell-card-head h2 { font-size: var(--t-24); margin: 0 0 4px; color: var(--brand); }
.sell-card-head p { font-size: 14px; color: var(--ink-2); margin: 0; line-height: 1.5; }

/* big search */
.search-big { position:relative; display:flex; align-items:center; border: 2px solid var(--ink); border-radius: var(--r-sm); background: var(--paper); overflow: hidden; box-shadow: var(--shadow-rest-sm); }
.search-big .search-icon { padding: 0 14px; font-size: 22px; color: var(--ink-3); }
.search-big input { flex:1; border:0; padding: 16px 0; font-size: 17px; font-family: var(--font-sans); background: transparent; color: var(--ink); }
.search-big input:focus { outline: none; }
.search-big .search-clear { border:0; background: transparent; cursor:pointer; padding: 0 14px; color: var(--ink-3); font-size: 18px; }
.search-big .search-clear:hover { color: var(--action); }

/* result cards */
.results-grid { margin-top: 18px; display:grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.result-card { display:grid; grid-template-columns: 64px 1fr auto; gap: 14px; align-items:center; padding: 12px; border: 1.5px solid var(--paper-3); border-radius: var(--r-sm); background: var(--paper); cursor: pointer; text-align:left; font-family: var(--font-sans); transition: all var(--d-quick); position:relative; }
.result-card:hover { background: var(--paper-2); border-color: var(--ink-soft); transform: translateY(-1px); }
.result-card.selected { border-color: var(--brand); border-width: 2px; padding: 11px; background: var(--paper-2); box-shadow: var(--shadow-rest-sm); }
.rc-img { width: 64px; height: 56px; background: var(--card); border: 1px solid var(--paper-3); border-radius: var(--r-sm); display:flex; align-items:center; justify-content:center; }
.rc-img img { width: 78%; image-rendering: pixelated; }
.rc-title { font-weight: 600; color: var(--brand); font-size: 14px; margin-bottom: 4px; }
.rc-meta { display:flex; gap: 6px; align-items:center; flex-wrap: wrap; }
.rc-meta .platform-chip { display:inline-block; padding: 2px 8px; border-radius: var(--r-pill); background: var(--card); font-family: var(--font-mono); font-size: 10px; color: var(--ink-2); border: 1px solid var(--paper-3); }
.rc-variant { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); }
.rc-offer { text-align:right; min-width: 100px; }
.rc-ref-lbl { display:block; font-family: var(--font-mono); font-size: 9px; color: var(--ink-3); text-decoration: line-through; margin-bottom: 4px; opacity: 0.7; }
.rc-grade-list { display:flex; flex-direction:column; gap: 3px; }
.rc-grade-row { display:flex; justify-content:space-between; align-items:center; gap: 8px; }
.rc-grade-lbl { font-size: 8px; color: var(--ink-3); letter-spacing: var(--ls-pixel); white-space:nowrap; }
.rc-grade-price { font-family: var(--font-mono); font-weight: 700; font-size: 13px; color: var(--ink-2); }
.rc-grade-mint .rc-grade-lbl { color: var(--ok); }
.rc-grade-mint .rc-grade-price { font-size: 17px; color: var(--action); }
.rc-check { position:absolute; top: -10px; right: 12px; background: var(--ok); color: var(--ink); padding: 3px 8px; border: 2px solid var(--ink); border-radius: var(--r-xs); font-size: 9px; letter-spacing: var(--ls-pixel); }

.no-results { grid-column: 1 / -1; text-align:center; padding: 32px 16px; border: 1.5px dashed var(--paper-3); border-radius: var(--r-sm); }
.no-results p { color: var(--ink-2); margin: 12px 0 16px; font-size: 14px; }
.contact-mini { display:flex; gap: 8px; justify-content:center; flex-wrap: wrap; }

/* condition v2 */
.condition-grid-v2 { display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.cond-card { padding: 22px 18px; border: 1.5px solid var(--paper-3); border-radius: var(--r-md); cursor: pointer; background: var(--paper); transition: all var(--d-quick); text-align:center; font-family: var(--font-sans); position:relative; }
.cond-card:hover { background: var(--paper-2); transform: translateY(-2px); }
.cond-card.selected { border-color: var(--brand); border-width: 2px; padding: 21px 17px; background: var(--paper-2); box-shadow: var(--shadow-rest-sm); }
.cond-card.selected::after { content: "✓"; position:absolute; top: 8px; right: 12px; font-family: var(--font-pixel); font-size: 14px; color: var(--ok); }
.cond-card .grade-big { width: 56px; height: 56px; font-size: 24px; margin: 0 auto 12px; }
.cond-lbl { font-weight: 700; color: var(--brand); margin-bottom: 6px; font-size: 16px; }
.cond-desc { font-size: 12px; color: var(--ink-2); line-height: 1.4; margin-bottom: 14px; }
.cond-price { font-family: var(--font-mono); font-weight: 700; font-size: 18px; color: var(--action); padding-top: 10px; border-top: 1px dashed var(--paper-3); }

/* QUOTE V2 — the money shot */
.sell-card-quote { background: var(--brand); color: var(--paper); border-color: var(--ink); position:relative; overflow:hidden; }
.sell-card-quote::before { content:""; position:absolute; inset:0; background-image: url('assets/pattern-pixelgrid.svg'); background-size: 24px 24px; opacity: 0.18; pointer-events:none; }
.sell-card-quote .sell-card-head h2 { color: var(--paper); }
.sell-card-quote .sell-card-head p { color: #C6CAE0 !important; }
.quote-box-v2 { position:relative; }
.qb-summary { display:flex; gap: 14px; align-items:center; padding: 14px; background: rgba(0,0,0,0.18); border-radius: var(--r-sm); margin-bottom: 18px; }
.qb-img { width: 56px; height: 48px; background: var(--paper); border-radius: var(--r-xs); padding: 6px; image-rendering: pixelated; }
.qb-item { font-weight: 700; font-size: 16px; color: var(--paper); }
.qb-meta { font-family: var(--font-mono); font-size: 11px; color: #C6CAE0; margin-top: 3px; }

.qb-price { text-align:center; padding: 28px 16px 24px; background: rgba(0,0,0,0.25); border: 2px dashed var(--accent); border-radius: var(--r-md); margin-bottom: 24px; position:relative; overflow:hidden; }
.qb-lbl { font-family: var(--font-mono); font-size: 12px; color: var(--accent); letter-spacing: var(--ls-wide); }
.qb-amount { font-family: var(--font-pixel); font-size: clamp(48px, 9vw, 88px); color: var(--accent); margin: 6px 0; letter-spacing: 0.04em; line-height: 1; animation: priceReveal 0.8s var(--ease-spring); text-shadow: 4px 4px 0 #0E1020; }
.qb-competitor { font-size: 10px; letter-spacing: var(--ls-pixel); color: var(--ok); margin: 6px 0 4px; background: rgba(0,0,0,0.25); display:inline-block; padding: 3px 10px; border-radius: var(--r-xs); }
.qb-range { font-size: 10px; letter-spacing: var(--ls-pixel); color: #DDE2F0; }
.qb-coin-rain { position:absolute; inset: 0; pointer-events:none; }
.qb-coin { position:absolute; top: -24px; animation: qbCoinFall 1.4s ease-in forwards; }
@keyframes qbCoinFall { from { transform: translateY(0) rotate(0); opacity: 1; } to { transform: translateY(220px) rotate(540deg); opacity: 0; } }

.qb-actions { display:grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 22px; }
.btn-contact { display:grid; grid-template-columns: 44px 1fr auto; align-items:center; gap: 14px; padding: 16px 18px; border: 2px solid var(--ink); border-radius: var(--r-sm); background: var(--paper); color: var(--ink); text-decoration:none; background-image:none; box-shadow: var(--shadow-rest-sm); transition: transform var(--d-quick) var(--ease-spring), box-shadow var(--d-quick); }
.btn-contact:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow-hover); }
.btn-contact .bc-icon { width: 44px; height: 44px; border-radius: var(--r-sm); display:flex; align-items:center; justify-content:center; font-size: 22px; border: 2px solid var(--ink); }
.btn-contact-mail .bc-icon { background: var(--accent); color: var(--ink); }
.btn-contact-wa { background: #25D366; color: #fff; border-color: var(--ink); }
.btn-contact-wa .bc-icon { background: #128C7E; color: #fff; }
.btn-contact-wa .bc-sub { color: rgba(255,255,255,0.85); }
.bc-title { display:block; font-weight: 700; font-size: 16px; }
.bc-sub { display:block; font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); margin-top: 2px; word-break: break-all; }
.bc-arrow { font-size: 14px; color: inherit; }

.qb-tips { display:grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding-top: 18px; border-top: 1px dashed rgba(251,246,236,0.2); }
.qb-tip { display:flex; gap: 10px; align-items:flex-start; }
.qbt-num { font-size: 10px; color: var(--accent); letter-spacing: var(--ls-pixel); padding-top: 2px; flex-shrink: 0; }
.qb-tip p { font-size: 12px; color: #DDE2F0; margin: 0; line-height: 1.45; }

/* what i buy */
.sell-faq { padding: 32px 28px; background: var(--paper-2); border: 1.5px solid var(--paper-3); border-radius: var(--r-md); margin-top: 8px; margin-bottom: 24px; }
.sell-faq h3 { margin: 0 0 16px; font-size: var(--t-24); color: var(--brand); }
.buy-tags { display:flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.buy-tag { font-family: var(--font-mono); font-size: 12px; padding: 6px 12px; background: var(--card); border: 1.5px solid var(--ink-soft); border-radius: var(--r-pill); color: var(--ink); }
.buy-note { font-size: 14px; color: var(--ink-2); margin: 0; }
.buy-note a { color: var(--brand); font-weight: 600; }

/* FAQ accordion */
.sell-faq-list { margin-top: 8px; margin-bottom: 24px; }
.sell-faq-list h3 { margin: 0 0 16px; }
.faq-item { border: 1.5px solid var(--paper-3); border-radius: var(--r-sm); margin-bottom: 8px; background: var(--paper); overflow: hidden; }
.faq-item.open { border-color: var(--brand); }
.faq-q { width:100%; display:flex; justify-content:space-between; align-items:center; gap:12px; padding: 16px 20px; background: none; border: none; cursor: pointer; text-align:left; font-family: var(--font-sans); font-size: 15px; font-weight: 600; color: var(--ink); }
.faq-q:hover { background: var(--paper-2); }
.faq-arrow { font-size: 9px; color: var(--brand); flex-shrink: 0; }
.faq-a { padding: 0 20px 16px; font-size: 14px; color: var(--ink-2); line-height: 1.6; border-top: 1px solid var(--paper-3); padding-top: 12px; }

/* how-steps */
.how-steps { display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.how-step { background: var(--paper); border: 1.5px solid var(--paper-3); border-radius: var(--r-md); padding: 28px 24px; text-align:center; }
.how-step-icon { font-size: 28px; color: var(--accent); margin-bottom: 8px; }
.how-step-num { font-size: 10px; letter-spacing: var(--ls-pixel); color: var(--brand); margin-bottom: 12px; }
.how-step h4 { font-size: 18px; margin: 0 0 8px; }
.how-step p { font-size: 14px; color: var(--ink-2); line-height: 1.5; margin: 0; }

/* platform grid */
.plat-grid { display:grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.plat-card { background: var(--paper); border: 1.5px solid var(--paper-3); border-radius: var(--r-md); overflow:hidden; cursor:pointer; transition: all var(--d-quick); }
.plat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-rest); border-color: var(--brand); }
.plat-swatch { aspect-ratio: 4/3; display:flex; align-items:center; justify-content:center; }
.plat-swatch img { width: 60%; image-rendering: pixelated; filter: drop-shadow(3px 3px 0 rgba(0,0,0,0.3)); }
.plat-body { padding: 16px; }
.plat-year { font-size: 11px; color: var(--ink-3); margin-bottom: 4px; }
.plat-body h4 { font-size: 16px; margin: 0 0 6px; }
.plat-body p { font-size: 13px; color: var(--ink-2); line-height: 1.5; margin: 0 0 12px; }
.plat-cta { font-size: 9px; color: var(--brand); letter-spacing: var(--ls-pixel); }

/* contact band */
.sell-contact-band { background: var(--ink); color: var(--paper); border-radius: var(--r-md); border: 2px solid var(--ink); padding: 32px; box-shadow: var(--shadow-rest); }
.scb-inner { display:flex; justify-content:space-between; align-items:center; gap: 24px; flex-wrap: wrap; }
.scb-inner h3 { color: var(--accent); margin: 4px 0; font-size: var(--t-32); }
.scb-inner p { color: #C6CAE0; margin: 0; font-size: 15px; max-width: 36ch; }
.scb-actions { display:flex; gap: 10px; flex-wrap: wrap; }

/* =========================================================
   BASKET PANEL — multi-item calculator
   ========================================================= */
.basket-panel {
  background: var(--brand); color: var(--paper);
  border: 2px solid var(--ink); border-radius: var(--r-md);
  box-shadow: var(--shadow-rest); padding: 20px 24px;
  margin-bottom: 24px; position: relative; overflow: hidden;
}
.basket-panel::before {
  content:""; position:absolute; inset:0;
  background-image: url('assets/pattern-pixelgrid.svg');
  background-size: 24px 24px; opacity: 0.1; pointer-events:none;
}
.basket-header { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom: 14px; gap: 12px; flex-wrap: wrap; }
.basket-total-block { text-align:right; }
.basket-total-lbl { display:block; font-family: var(--font-mono); font-size: 10px; color: #B8BCD6; text-transform: uppercase; letter-spacing: var(--ls-wide); margin-bottom: 2px; }
.basket-total-amount { font-family: var(--font-pixel); font-size: 32px; color: var(--accent); letter-spacing: 0.04em; }
.basket-items { position:relative; z-index:1; }
.basket-item { display:flex; align-items:center; gap: 12px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.basket-item:last-of-type { border-bottom: 0; }
.basket-item-info { flex:1; min-width: 0; }
.basket-item-title { font-weight: 600; font-size: 14px; color: var(--paper); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.basket-item-meta { font-family: var(--font-mono); font-size: 11px; color: #C6CAE0; margin-top: 2px; }
.basket-item-price { font-family: var(--font-mono); font-weight: 700; font-size: 16px; color: var(--accent); flex-shrink: 0; }
.basket-item-remove { background: none; border: none; cursor: pointer; color: rgba(255,255,255,0.35); font-size: 16px; padding: 4px 6px; flex-shrink: 0; transition: color var(--d-quick); }
.basket-item-remove:hover { color: var(--action); }
.basket-actions { display:flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; position:relative; z-index:1; }

.basket-add-row { display:flex; justify-content:space-between; align-items:center; gap: 16px; flex-wrap: wrap; margin: 18px 0; padding: 16px 20px; background: var(--paper-2); border: 1.5px dashed var(--paper-3); border-radius: var(--r-sm); }
.basket-add-hint p { font-size: 13px; color: var(--ink-2); margin: 4px 0 0; max-width: 38ch; line-height: 1.4; }
.basket-add-btn { flex-shrink: 0; white-space: nowrap; }
.basket-count-badge { background: var(--action); color: #fff; font-size: 10px; padding: 2px 6px; border-radius: var(--r-pill); margin-left: 6px; font-family: var(--font-pixel); }

/* =========================================================
   CONDITION GUIDE — expandable how-to grade
   ========================================================= */
.cond-guide { margin-top: 14px; }
.cond-guide-toggle { width:100%; background: var(--paper); border: 1.5px dashed var(--paper-3); border-radius: var(--r-sm); padding: 12px 16px; cursor: pointer; font-family: var(--font-sans); font-size: 14px; color: var(--ink-2); display:flex; justify-content:space-between; align-items:center; gap:12px; transition: background var(--d-quick); }
.cond-guide-toggle:hover { background: var(--paper-2); }
.cond-guide-content { display:grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 10px; animation: cardPop 0.3s var(--ease-spring) both; }
.cond-guide-item { background: var(--paper); border: 1.5px solid var(--paper-3); border-radius: var(--r-sm); padding: 16px 14px; }
.cond-guide-grade { width: 44px; height: 44px; font-size: 20px; margin: 0 auto 10px; }
.cond-guide-item h5 { margin: 0 0 8px; font-size: 14px; text-align:center; color: var(--brand); }
.cond-guide-item ul { margin: 0; padding-left: 16px; font-size: 12px; color: var(--ink-2); line-height: 1.65; }

/* =========================================================
   WANTED / GEZOCHT PAGE
   ========================================================= */
.wanted-page { padding-bottom: 0; }
.wanted-hero {
  background: var(--brand);
  background-image: url('assets/pattern-pixelgrid.svg'), radial-gradient(ellipse at top right, rgba(230,57,70,0.2), transparent 55%);
  background-size: 40px 40px, auto;
  color: var(--paper); border-bottom: 2px solid var(--ink); padding: 56px 0 64px;
}
.wanted-h1 { font-size: clamp(40px, 7vw, 80px); line-height: 0.95; letter-spacing: var(--ls-tight); margin: 14px 0 20px; color: var(--paper); font-weight: 700; }
.wanted-h1 em { font-style: normal; }
.wanted-lede { font-size: 18px; color: #DDE2F0; max-width: 52ch; line-height: 1.55; margin: 0 0 28px; }
.wanted-hero-cta { display:flex; gap: 14px; flex-wrap: wrap; }

.wanted-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.wanted-grid-hot { grid-template-columns: repeat(4, 1fr); }

.wanted-card {
  background: var(--card); border: 2px solid var(--paper-3); border-radius: var(--r-md);
  padding: 22px 18px 18px; box-shadow: var(--shadow-rest-sm); position:relative;
  transition: transform var(--d-quick) var(--ease-spring), box-shadow var(--d-quick), border-color var(--d-quick);
}
.wanted-card:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow-hover); }
.wanted-card.hot { border-color: var(--action); }
.wanted-badge { position:absolute; top: -10px; left: 14px; background: var(--action); color: #fff; font-size: 7px; padding: 4px 8px; border: 2px solid var(--ink); border-radius: var(--r-xs); letter-spacing: var(--ls-pixel); white-space: nowrap; }
.wanted-card.hot .wanted-badge { background: var(--action); }
.wanted-platform { font-family: var(--font-mono); font-size: 10px; color: var(--ink-3); text-transform: uppercase; letter-spacing: var(--ls-wide); margin-bottom: 6px; margin-top: 6px; }
.wanted-card h3.wanted-title { font-size: 17px; font-weight: 700; color: var(--brand); margin: 0 0 4px; line-height: 1.2; }
.wanted-subtitle { font-size: 13px; color: var(--ink-2); margin: 0 0 10px; }
.wanted-note { font-size: 12px; color: var(--ok); margin: 0 0 12px; line-height: 1.4; }
.wanted-price-block { padding: 10px 0 0; border-top: 1px dashed var(--paper-3); }
.wanted-price-lbl { font-family: var(--font-mono); font-size: 10px; color: var(--ink-3); text-transform: uppercase; letter-spacing: var(--ls-wide); display:block; margin-bottom: 2px; }
.wanted-price { font-family: var(--font-pixel); font-size: 22px; color: var(--action); letter-spacing: 0.04em; }

/* =========================================================
   PRIVACY PAGE
   ========================================================= */
.privacy-page { padding-bottom: 64px; }
.privacy-hero { background: var(--brand); background-image: url('assets/pattern-pixelgrid.svg'); background-size: 40px 40px; color: var(--paper); border-bottom: 2px solid var(--ink); padding: 48px 0 56px; }
.privacy-hero h1 { font-size: clamp(32px, 5vw, 60px); margin: 10px 0 14px; color: var(--paper); }
.privacy-intro { font-size: 17px; color: #DDE2F0; max-width: 56ch; line-height: 1.55; margin: 0; }
.privacy-body { max-width: 760px; padding-top: 40px; padding-bottom: 40px; }
.privacy-section { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1.5px solid var(--paper-3); }
.privacy-section:last-child { border-bottom: 0; }
.privacy-section h2 { font-size: var(--t-24); color: var(--brand); margin: 0 0 12px; }
.privacy-section p, .privacy-section li { font-size: 15px; color: var(--ink-2); line-height: 1.7; }
.privacy-section ul { padding-left: 20px; }
.privacy-section li { margin-bottom: 6px; }
.privacy-section a { color: var(--brand); font-weight: 600; }
.privacy-section strong { color: var(--ink); }
.privacy-section code { font-family: var(--font-mono); font-size: 13px; background: var(--paper-2); border: 1px solid var(--paper-3); padding: 2px 6px; border-radius: var(--r-xs); color: var(--action); }
.privacy-contact-block { background: var(--paper-2); border: 1.5px solid var(--paper-3); border-radius: var(--r-sm); padding: 16px 20px; margin-top: 14px; }
.privacy-contact-block ul { margin: 8px 0 0; }
.privacy-note { background: rgba(230,57,70,0.08); border: 1.5px solid rgba(230,57,70,0.25); border-radius: var(--r-sm); padding: 12px 16px; color: var(--ink) !important; margin-top: 14px; }
.privacy-table { width:100%; border-collapse: collapse; font-size: 14px; margin-top: 12px; }
.privacy-table th { background: var(--brand); color: var(--paper); padding: 10px 12px; text-align:left; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: var(--ls-wide); }
.privacy-table td { padding: 10px 12px; border-bottom: 1px solid var(--paper-3); vertical-align: top; color: var(--ink-2); line-height: 1.5; }
.privacy-table tr:last-child td { border-bottom: 0; }
.privacy-table tr:nth-child(even) td { background: var(--paper-2); }

/* =========================================================
   MOBILE RESPONSIVENESS — phone-friendly across all pages
   ========================================================= */
@media (max-width: 900px) {
  .container { padding: 0 16px; }

  /* header collapses */
  .pp-header .inner { height: auto; padding: 12px 0; flex-wrap: wrap; gap: 10px; }
  .pp-logo img { height: 32px; }
  .pp-logo-text { font-size: 14px; }
  .pp-nav { order: 3; flex-basis: 100%; gap: 4px; margin-left: 0; overflow-x: auto; padding: 4px 0; -webkit-overflow-scrolling: touch; }
  .pp-nav a { font-size: 13px; padding: 6px 10px; white-space: nowrap; border-radius: var(--r-sm); }
  .pp-nav a.active { background: rgba(198,244,50,0.18); color: var(--accent); }
  .pp-header-actions { gap: 6px; }
  .pp-header-actions .btn-sm { padding: 6px 10px; font-size: 12px; }

  /* hero */
  .hero { padding: 36px 0 44px; }
  .hero .inner, .hero-inner-arcade { grid-template-columns: 1fr !important; gap: 24px; }
  .hero h1, .hero-title { font-size: clamp(36px, 9vw, 56px) !important; }
  .hero .sub { font-size: 16px; }
  .cta-row { flex-wrap: wrap; }
  .cta-row .btn { flex: 1 1 auto; justify-content:center; }
  .btn-lg { padding: 12px 18px; font-size: 15px; }
  .hero-visual { display:none; }

  .hero-marketplaces { gap: 8px; }
  .market-pill { font-size: 13px; padding: 7px 12px; }

  /* trust row stacks */
  .trust { padding: 14px 0; }
  .trust .row { grid-template-columns: 1fr 1fr; gap: 14px; }
  .trust-cell { gap: 8px; }
  .trust-cell .t { font-size: 12px; }
  .trust-cell .t small { font-size: 11px; }

  /* sections */
  .section { padding: 40px 0; }
  .section h2 { font-size: 26px; margin-bottom: 16px; }

  /* console grid */
  .console-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .console-grid-arcade { grid-template-columns: repeat(2, 1fr); }
  .level-tile { padding: 14px 10px; }

  /* product grid */
  .product-grid, .product-grid.cols-3 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card .body { padding: 10px; }
  .product-card .title { font-size: 13px; }
  .product-card .price { font-size: 14px; }

  /* stats */
  .stats-row { grid-template-columns: 1fr 1fr !important; gap: 14px; }
  .stat-num { font-size: 26px !important; }
  .stat-lbl { font-size: 11px !important; }

  /* sell band */
  .sell-band { padding: 36px 0; }
  .sell-band .inner { grid-template-columns: 1fr; gap: 24px; }
  .sell-band h2 { font-size: 28px; }
  .sell-band p { font-size: 15px; }

  /* footer */
  .pp-footer { padding: 36px 0 24px; }
  .pp-footer .cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .pp-footer .brand-col { grid-column: 1 / -1; }
  .pp-footer .bottom { flex-direction: column; gap: 8px; text-align:center; }

  /* PLP */
  .plp { grid-template-columns: 1fr; gap: 20px; padding: 20px 0; }
  .plp aside { padding: 16px; background: var(--paper-2); border: 1.5px solid var(--paper-3); border-radius: var(--r-md); }
  .plp-top { flex-direction: column; align-items: flex-start; gap: 8px; }
  .plp-header-arcade .inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .plp-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Consoles deck */
  .console-deck-grid { grid-template-columns: 1fr 1fr !important; gap: 12px; }
  .deck-art { height: 110px; }
  .deck-name { font-size: 15px; }
  .deck-tagline { font-size: 12px; }
  .trust-cards { grid-template-columns: 1fr; gap: 12px; }
  .how-steps { grid-template-columns: 1fr; gap: 16px; }
  .plat-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* Sell hero v2 */
  .sell-hero-v2 { padding: 36px 0 44px; }
  .sell-hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .sell-hero-art { height: 200px; order: -1; }
  .sell-hero-art .float-1 { width: 160px; }
  .sell-hero-art .float-2 { width: 90px; }
  .sell-hero-art .float-3 { width: 80px; }
  .sell-hero-arrow { font-size: 36px; bottom: 10px; }
  .sell-h1 { font-size: clamp(34px, 9vw, 60px); }
  .sell-lede { font-size: 16px; }

  .sell-body { padding: 24px 16px 0; }

  /* Step tracker — stack vertical on phone */
  .sell-tracker { gap: 0; flex-direction: column; align-items: stretch; }
  .st-item { width: 100%; justify-content:flex-start; padding: 10px 14px; border-radius: var(--r-sm); }
  .st-sep { display:none; }

  /* sell card */
  .sell-card { padding: 20px 16px; }
  .sell-card-head { gap: 12px; }
  .sell-card-num { width: 36px; height: 36px; font-size: 12px; }
  .sell-card-head h2 { font-size: 20px; }
  .sell-card-head p { font-size: 13px; }

  .search-big input { padding: 14px 0; font-size: 16px; }
  .search-big .search-icon { padding: 0 10px; font-size: 18px; }

  .results-grid { grid-template-columns: 1fr; gap: 10px; }
  .result-card { grid-template-columns: 56px 1fr auto; padding: 10px; gap: 10px; }
  .rc-img { width: 56px; height: 48px; }
  .rc-title { font-size: 13px; }
  .rc-grade-mint .rc-grade-price { font-size: 15px; }
  .rc-grade-price { font-size: 12px; }
  .rc-offer { min-width: 84px; }

  .condition-grid-v2 { grid-template-columns: 1fr; gap: 10px; }
  .cond-card { padding: 16px; display:grid; grid-template-columns: 52px 1fr auto; gap: 14px; align-items:center; text-align:left; }
  .cond-card .grade-big { width: 52px; height: 52px; margin: 0; font-size: 22px; }
  .cond-lbl { margin-bottom: 2px; font-size: 15px; }
  .cond-desc { margin-bottom: 0; font-size: 12px; }
  .cond-price { padding-top: 0; border-top: 0; font-size: 16px; }

  .qb-actions { grid-template-columns: 1fr; }
  .qb-tips { grid-template-columns: 1fr; gap: 8px; }
  .qb-amount { font-size: clamp(48px, 14vw, 72px); }

  .scb-inner { flex-direction: column; align-items: flex-start; }
  .scb-actions { width: 100%; flex-direction: column; }
  .scb-actions .btn { width: 100%; justify-content:center; }

  /* basket */
  .basket-add-row { flex-direction: column; align-items: flex-start; }
  .basket-add-btn { width: 100%; justify-content: center; }
  .wanted-grid, .wanted-grid-hot { grid-template-columns: 1fr 1fr; gap: 16px; }
  .cond-guide-content { grid-template-columns: 1fr; }
  .privacy-table { font-size: 13px; }
  .privacy-table th, .privacy-table td { padding: 8px 10px; }

  /* misc */
  .toast { left: 16px !important; right: 16px !important; bottom: 16px !important; }

  /* hud — wrap on narrow */
  .hud { flex-wrap: wrap; gap: 8px 14px; font-size: 9px; }

  /* contact band */
  .sell-contact-band { padding: 24px 20px; border-radius: var(--r-sm); }
  .scb-inner h3 { font-size: 24px; }
  .scb-inner p { font-size: 14px; }
  .scb-actions { width: 100%; }

  /* email / WA contact buttons */
  .btn-contact { grid-template-columns: 40px 1fr; gap: 10px; padding: 14px; }
  .bc-arrow { display: none; }
  .bc-title { font-size: 15px; }
  .bc-sub { font-size: 11px; word-break: break-word; }

  /* quote box */
  .qb-price { padding: 20px 12px 18px; }
  .qb-competitor, .qb-range { font-size: 9px; }

  /* cta row full-width buttons */
  .cta-row { flex-direction: column; }
  .cta-row .btn { width: 100%; justify-content: center; }

  /* section head */
  .section-head { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ---- small phones ---- */
@media (max-width: 600px) {
  /* header */
  .pp-logo-text { font-size: 13px; letter-spacing: -1px; }
  .pp-header-actions .btn-sell { font-size: 12px; padding: 6px 10px; }

  /* hero arcade */
  .hero-arcade { padding: 20px 0 0; }
  .hero-arcade .hero-title { font-size: clamp(30px, 9vw, 46px) !important; }

  /* stats */
  .stats-row { padding: 16px 12px; gap: 10px; margin-top: -16px; }
  .stat-num { font-size: 22px !important; }
  .stat-lbl { font-size: 10px !important; }

  /* how-steps */
  .how-step { padding: 20px 16px; }
  .how-step-icon { font-size: 24px; }
  .how-step h4 { font-size: 16px; }

  /* platform grid */
  .plat-grid { gap: 10px; }
  .plat-body { padding: 12px; }
  .plat-body h4 { font-size: 14px; }
  .plat-body p { font-size: 12px; margin-bottom: 8px; }

  /* sell hero */
  .sell-h1 { font-size: clamp(28px, 9vw, 46px); }
  .sell-lede { font-size: 15px; }
  .sell-hero-art { height: 150px; }
  .sell-hero-art .float-1 { width: 120px; right: 10px; }
  .sell-hero-art .float-2 { width: 75px; left: 10px; }
  .sell-hero-art .float-3 { display: none; }
  .sell-hero-arrow { display: none; }

  /* sell card */
  .sell-card { padding: 16px 14px; }
  .sell-card-head { gap: 10px; margin-bottom: 14px; }
  .sell-card-head h2 { font-size: 18px; }
  .sell-card-num { width: 34px; height: 34px; font-size: 11px; }

  /* quote amount */
  .qb-amount { font-size: clamp(40px, 12vw, 62px); }

  /* scb contact */
  .scb-inner h3 { font-size: 20px; }

  /* section labels / eyebrow */
  .section-label { font-size: 9px; }

  /* tracker label text */
  .st-item { font-size: 13px; }
}

@media (max-width: 480px) {
  .product-grid, .product-grid.cols-3 { grid-template-columns: 1fr; }
  .console-grid, .console-grid-arcade { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr !important; }
  .trust .row { grid-template-columns: 1fr; }
  .pp-footer .cols { grid-template-columns: 1fr; }
  .console-deck-grid { grid-template-columns: 1fr !important; }
  .pp-nav { gap: 2px; }
  .pp-nav a { font-size: 12px; padding: 5px 8px; }

  /* sell tracker: horizontaal scrollbaar ipv verticaal */
  .sell-tracker { flex-direction: row; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 6px; gap: 4px; }
  .st-item { width: auto; flex-shrink: 0; font-size: 12px; padding: 8px 10px; }
  .st-sep { display: block; min-width: 10px; max-width: 20px; }

  /* result card compact */
  .result-card { grid-template-columns: 48px 1fr auto; gap: 8px; }
  .rc-img { width: 48px; height: 40px; }
  .rc-grade-lbl { font-size: 7px; }
  .rc-grade-mint .rc-grade-price { font-size: 14px; }
  .rc-offer { min-width: 72px; }

  /* condition cards */
  .cond-card { padding: 14px 12px; gap: 10px; }
  .cond-lbl { font-size: 14px; }
  .cond-price { font-size: 15px; }

  /* how-step compact */
  .how-step { padding: 16px 14px; }

  /* wanted + privacy compact */
  .wanted-grid, .wanted-grid-hot { grid-template-columns: 1fr; }
  .wanted-h1 { font-size: clamp(28px, 9vw, 46px); }
  .basket-total-amount { font-size: 26px; }
  .privacy-table { display: block; overflow-x: auto; }

  /* footer single col */
  .pp-footer li { font-size: 13px; }
  .pp-footer h5 { font-size: 12px; }
}
