:root {
  --bg: #0a0e1a;
  --bg-2: #0d1220;
  --panel: #121829;
  --panel-2: #171f33;
  --panel-3: #1d2740;
  --border: #232c44;
  --border-2: #2e3a58;
  --gold: #f5bd1f;
  --gold-soft: #ffd873;
  --red: #e63946;
  --red-soft: #ff5a5f;
  --green: #35d07f;
  --purple: #9b6cff;
  --orange: #ff9f43;
  --text: #eef1f8;
  --muted: #93a0bd;
  --muted-2: #6b7794;
  --radius: 12px;
  --maxw: 1400px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 10px;
  padding: 13px 22px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: filter 0.12s ease, transform 0.05s ease, background 0.12s ease;
}
.btn:active { transform: translateY(1px); }
.btn:hover { filter: brightness(1.06); }
.btn-gold { background: var(--gold); color: #17120a; }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border-2); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); filter: none; }
.btn-ghost { background: var(--panel-2); color: var(--text); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 26px; font-size: 16px; }
.btn-sm { padding: 9px 14px; font-size: 13px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  overflow: visible;
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand { display: flex; align-items: flex-start; gap: 10px; position: relative; z-index: 60; align-self: flex-start; }
.brand img {
  height: 100px;
  width: auto;
  display: block;
  margin: 0 0 -46px;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.45));
}
.brand-text .l1 {
  font-size: 20px; font-weight: 700; line-height: 1; letter-spacing: 0.5px;
  color: #fff;
}
.brand-text .l1 .poke { color: var(--gold); }
.brand-text .l2 { font-size: 9px; letter-spacing: 2px; color: var(--muted); margin-top: 3px; }

.main-nav { display: flex; gap: 22px; margin-left: 8px; }
.main-nav a {
  font-size: 13px; font-weight: 700; letter-spacing: 0.6px;
  color: var(--muted); text-transform: uppercase; padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a.active { color: var(--text); border-color: var(--gold); }
.main-nav .caret { font-size: 9px; opacity: 0.7; }

.kid-badge {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; color: var(--muted); white-space: nowrap;
}
.kid-badge .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 8px rgba(245, 189, 31, 0.7);
}
.header-icons { margin-left: 18px; display: flex; align-items: center; gap: 16px; }
.icon-btn {
  background: none; border: none; color: var(--muted); cursor: pointer;
  font-size: 18px; padding: 4px; position: relative; display: inline-flex;
}
.icon-btn:hover { color: var(--gold); }
.cart-badge {
  position: absolute; top: -6px; right: -8px;
  background: var(--gold); color: #17120a;
  font-size: 10px; font-weight: 700;
  min-width: 16px; height: 16px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center; padding: 0 4px;
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 400px at 80% -10%, rgba(230, 57, 70, 0.16), transparent 60%),
    radial-gradient(700px 400px at 0% 120%, rgba(245, 189, 31, 0.10), transparent 60%),
    var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 80px 20px 54px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.hero h1 {
  font-size: 58px; line-height: 1.02; margin: 0 0 16px;
  font-weight: 800; letter-spacing: -1px; color: #fff;
}
.hero h1 .gold { color: var(--gold); }
.hero .lede { font-size: 18px; color: var(--muted); max-width: 420px; margin: 0 0 24px; line-height: 1.5; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-stats { display: flex; gap: 30px; flex-wrap: wrap; }
.hero-stat { display: flex; align-items: center; gap: 10px; }
.hero-stat .ic { color: var(--gold); font-size: 20px; }
.hero-stat .k { font-size: 14px; font-weight: 700; color: #fff; }
.hero-stat .s { font-size: 11px; letter-spacing: 1px; color: var(--muted); text-transform: uppercase; }

.hero-art {
  position: relative;
  min-height: 440px;
  background:
    radial-gradient(circle at 55% 48%, rgba(230, 57, 70, 0.16), transparent 62%),
    radial-gradient(circle at 62% 40%, rgba(155, 108, 255, 0.12), transparent 58%);
  display: flex; align-items: center; justify-content: center;
  overflow: visible;
}
.hero-art > img {
  width: 110%;
  max-width: none;
  height: auto;
  margin: -26px 0 -34px -12%;
  transform: rotate(-2deg);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.55));
}

.hero-fan {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 0;
  transform: translateX(-20px);
}
.hero-card {
  display: block;
  width: 258px;
  margin: 0 -66px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.18s ease;
}
.hero-card img { display: block; width: 100%; height: auto; }
.hero-card:hover { transform: translateY(-12px) rotate(0deg) scale(1.04) !important; z-index: 20 !important; }
.hero-blank {
  aspect-ratio: 63 / 88;
  background: radial-gradient(circle at 50% 30%, #2b3a74, #0f1730 72%);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 30px;
}
.hero-art .fan { display: flex; gap: -10px; }
.hero-art .fan .mini {
  width: 96px; height: 134px; border-radius: 10px; margin: 0 -14px;
  border: 3px solid #0a0e1a;
  background: radial-gradient(circle at 50% 30%, #33468f, #131f52 70%);
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
  font-size: 30px;
}
.hero-art .fan .mini:nth-child(1) { transform: rotate(-14deg); }
.hero-art .fan .mini:nth-child(2) { transform: rotate(-4deg) translateY(-8px); }
.hero-art .fan .mini:nth-child(3) { transform: rotate(6deg); }

/* ---------- Sections ---------- */
.section { padding: 42px 0; }
.section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px; gap: 16px;
}
.section-head h2 { font-size: 24px; font-weight: 700; margin: 0; color: #fff; letter-spacing: -0.3px; }
.section-head .view-all { font-size: 12px; font-weight: 700; letter-spacing: 1px; color: var(--gold); text-transform: uppercase; }

/* ---------- Card rows / grid ---------- */
.card-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(190px, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}
.card-row::-webkit-scrollbar { height: 8px; }
.card-row::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 8px; }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
}
/* Homepage rows: exactly 6 across on desktop, scaling down (no lonely orphans) */
.home-row { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 1150px) { .home-row { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 780px)  { .home-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px)  { .home-row { grid-template-columns: repeat(2, 1fr); } }

.pcard {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  transition: border-color 0.14s ease, transform 0.14s ease;
}
.pcard:hover { border-color: var(--border-2); transform: translateY(-3px); }
.pcard-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.pcard-photo img { width: 100%; height: 100%; object-fit: cover; }
.cardback {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 30%, #2b3a74, #0f1730 72%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 16px;
  box-shadow: inset 0 0 0 5px rgba(245, 189, 31, 0.16);
}
.cardback .emblem {
  width: 66px; height: 66px; border-radius: 50%;
  border: 3px solid var(--gold);
  background: rgba(245, 189, 31, 0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 30px;
}
.cardback .nm { color: #fff; font-weight: 700; font-size: 15px; text-align: center; }

.badge {
  position: absolute; top: 10px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
  padding: 4px 9px; border-radius: 6px; text-transform: uppercase;
}
.badge-rarity { right: 10px; background: var(--red); color: #fff; }
.badge-status { left: 10px; color: #fff; }
.badge-status.sale { background: var(--green); color: #062915; }
.badge-status.trade { background: var(--orange); color: #3a2402; }
.badge-status.collection { background: var(--purple); }
.fav {
  position: absolute; bottom: 10px; right: 10px;
  color: var(--muted); font-size: 16px;
}

.pcard-body { padding: 12px 13px 14px; display: flex; flex-direction: column; gap: 5px; flex: 1; }
.pcard-name { font-size: 15px; font-weight: 700; color: #fff; line-height: 1.2; }
.pcard-cond { font-size: 12px; color: var(--muted); }
.pcard-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 8px; padding-top: 8px; }
.pcard-price { font-size: 18px; font-weight: 800; color: var(--gold); }
.pcard-price.free { color: var(--muted); font-size: 13px; font-weight: 700; }
.mini-btn {
  background: var(--panel-3); color: var(--text); border: none;
  border-radius: 8px; width: 34px; height: 34px; cursor: pointer; font-size: 15px;
  display: inline-flex; align-items: center; justify-content: center;
}
.mini-btn:hover { background: var(--gold); color: #17120a; }

/* ---------- Meet Saxon ---------- */
.meet {
  max-width: 980px;
  margin: 0 auto;
  background: linear-gradient(150deg, var(--panel-2), var(--panel));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
}
.meet-photo {
  position: relative;
  aspect-ratio: 2 / 3;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(245, 189, 31, 0.45);
  box-shadow: 0 0 0 6px rgba(245, 189, 31, 0.06);
  background: radial-gradient(circle at 50% 40%, #2a2016, #0c0e18 75%);
}
.meet-photo img, .meet-avatar { position: absolute; inset: 0; width: 100%; height: 100%; }
.meet-photo img { object-fit: cover; }
.meet-avatar { display: flex; align-items: center; justify-content: center; color: var(--muted-2); font-size: 60px; }
.meet-eyebrow { color: var(--gold); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-bottom: 8px; }
.meet-body h2 { margin: 0 0 14px; color: #fff; font-size: 28px; }
.meet-body p { margin: 0 0 12px; color: var(--muted); line-height: 1.7; }
.meet-pull {
  color: var(--text) !important; font-weight: 500; font-style: italic;
  border-left: 3px solid var(--gold); padding-left: 14px; border-radius: 0;
}
.meet-actions { display: flex; align-items: center; gap: 18px; margin-top: 18px; flex-wrap: wrap; }
.meet-sign { color: var(--gold); font-weight: 700; font-size: 16px; }
@media (max-width: 760px) {
  .meet { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
  .meet-photo { max-width: 220px; }
}

/* ---------- Shop by value ---------- */
.chip-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 14px; }
.chip {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 14px; text-align: center; cursor: pointer;
  transition: border-color 0.14s ease, transform 0.14s ease;
}
.chip:hover { border-color: var(--gold); transform: translateY(-2px); }
.chip .ic { font-size: 26px; color: var(--gold); }
.chip .t { font-weight: 700; margin-top: 8px; color: #fff; font-size: 14px; }
.chip .n { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--bg-2); border-top: 1px solid var(--border); }
.trust-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 22px 20px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px;
}
.trust-item { display: flex; align-items: flex-start; gap: 12px; }
.trust-item .ic { color: var(--gold); font-size: 22px; line-height: 1; }
.trust-item .t { font-weight: 700; color: #fff; font-size: 14px; }
.trust-item .s { color: var(--muted); font-size: 12px; margin-top: 2px; line-height: 1.4; }

/* ---------- Filter tabs (shop) ---------- */
.tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.tab {
  border: 1px solid var(--border-2); background: var(--panel);
  color: var(--muted); border-radius: 999px; padding: 9px 18px;
  font-weight: 700; font-size: 14px; cursor: pointer; font-family: inherit;
}
.tab.active { background: var(--gold); color: #17120a; border-color: var(--gold); }
.tab .count { opacity: 0.75; margin-left: 4px; font-size: 12px; }
.search-box {
  display: flex; align-items: center; gap: 8px; background: var(--panel);
  border: 1px solid var(--border-2); border-radius: 10px; padding: 10px 14px; margin-left: auto;
}
.search-box input { background: none; border: none; color: var(--text); font-family: inherit; font-size: 14px; outline: none; width: 180px; }
.search-box .ic { color: var(--muted); }

/* ---------- Product detail ---------- */
.breadcrumb { font-size: 12px; color: var(--muted); padding: 44px 0 6px; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 7px; opacity: 0.5; }
.breadcrumb .cur { color: var(--text); }

.pdp { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 40px; padding: 14px 0 20px; align-items: start; }
.pdp-media { display: grid; grid-template-columns: 64px 1fr; gap: 12px; max-width: 470px; }
.pdp-thumbs { display: flex; flex-direction: column; gap: 10px; }
.pdp-thumb {
  aspect-ratio: 3/4; border-radius: 8px; border: 1.5px solid var(--border-2);
  background: radial-gradient(circle at 50% 30%, #2b3a74, #0f1730 72%);
  display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 16px;
  overflow: hidden;
}
.pdp-thumb.active { border-color: var(--gold); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-main {
  aspect-ratio: 3/4; border-radius: 14px; border: 1px solid var(--border);
  background: var(--bg-2);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  position: relative;
}
.pdp-main img { width: 100%; height: 100%; object-fit: contain; }

.pdp-info .rarity-tag {
  display: inline-block; background: var(--red); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  padding: 5px 11px; border-radius: 6px; margin-bottom: 12px;
}
.pdp-info h1 { font-size: 34px; margin: 0 0 6px; color: #fff; letter-spacing: -0.5px; }
.pdp-info .setline { color: var(--muted); font-size: 14px; margin-bottom: 14px; }
.pdp-price { font-size: 34px; font-weight: 800; color: var(--gold); margin: 6px 0 6px; }
.est-value { color: var(--muted); font-size: 13px; margin: 0 0 16px; }
.est-value:empty { display: none; }
.pdp-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.meta-pill { font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: 8px; background: var(--panel-2); color: var(--text); border: 1px solid var(--border); }
.meta-pill.ships { color: var(--green); }
.pdp-actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.watchlist { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 13px; margin-bottom: 18px; cursor: pointer; }
.watchlist .ic { color: var(--gold); font-size: 18px; }
.watchlist:hover { color: var(--text); }

.guarantee {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--panel); border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px;
}
.guarantee .ic { color: var(--gold); font-size: 22px; }
.guarantee .t { font-weight: 700; color: #fff; font-size: 14px; }
.guarantee .s { color: var(--muted); font-size: 12px; margin-top: 3px; line-height: 1.4; }

.pdp-panels { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; padding: 6px 0 10px; }
.info-panel { background: var(--panel); border: 1px solid var(--border); border-radius: 12px; padding: 18px; }
.info-panel h3 { margin: 0 0 14px; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.spec-row { display: flex; justify-content: space-between; gap: 10px; padding: 7px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.spec-row:last-child { border-bottom: none; }
.spec-row .k { color: var(--muted); }
.spec-row .v { color: var(--text); font-weight: 700; text-align: right; }
.notes-quote { color: var(--text); font-style: italic; line-height: 1.6; font-size: 14px; }
.notes-quote .mark { color: var(--gold); font-size: 26px; line-height: 0; }
.notes-by { color: var(--gold); font-weight: 700; font-size: 13px; margin-top: 12px; }
.pg-market { font-size: 24px; font-weight: 800; color: var(--gold); margin-bottom: 12px; line-height: 1.2; }
.pg-src, .ph-src { color: var(--muted-2); font-size: 11px; font-weight: 400; }
.pg-market .pg-src { display: block; margin-top: 2px; }
.price-range { margin: 14px 0 4px; }
.pr-track { height: 6px; border-radius: 999px; background: linear-gradient(90deg, var(--panel-3), var(--border-2)); position: relative; }
.pr-marker { position: absolute; top: 50%; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); transform: translate(-50%, -50%); box-shadow: 0 0 8px rgba(245, 189, 31, 0.6); }
.pr-ends { display: flex; justify-content: space-between; color: var(--muted); font-size: 12px; margin-top: 8px; }
.price-hist { margin-top: 16px; }
.ph-head { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); font-weight: 700; margin-bottom: 6px; }
.sparkline { display: block; height: 56px; }
.ph-labels { display: flex; justify-content: space-between; color: var(--muted-2); font-size: 11px; margin-top: 2px; }
.ph-src { margin-top: 6px; }
.cond-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.cond-row:last-child { border-bottom: none; }
.cond-row .k { color: var(--muted); }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; }
.stars .off { color: var(--border-2); }

.grade-badge {
  display: flex; align-items: center; gap: 12px;
  background: rgba(245, 189, 31, 0.08);
  border: 1px solid var(--border-2);
  border-radius: 10px; padding: 12px 14px; margin-bottom: 14px;
}
.grade-shield {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  background: var(--gold); color: #17120a; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
}
.grade-tier { font-weight: 700; color: #fff; font-size: 16px; }
.grade-note { color: var(--muted-2); font-size: 11px; margin-top: 12px; line-height: 1.4; }

.verify-card {
  display: flex; align-items: center; gap: 14px; justify-content: space-between;
  background: var(--panel); border: 1px solid var(--border-2); border-radius: 12px;
  padding: 14px 16px; margin-top: 14px;
}
.verify-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; color: var(--gold); font-size: 14px; margin-bottom: 6px;
}
.verify-badge .ic {
  background: var(--gold); color: #17120a; border-radius: 50%;
  width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center; font-size: 12px;
}
.verify-id { color: var(--text); font-size: 13px; }
.verify-id b { color: #fff; letter-spacing: 0.5px; }
.verify-sub { color: var(--muted); font-size: 12px; margin-top: 3px; }
.verify-qr {
  flex: none; width: 92px; height: 92px; border-radius: 8px; overflow: hidden;
  background: #fff; padding: 4px; display: flex; align-items: center; justify-content: center;
}
.verify-qr img, .verify-qr canvas { display: block; width: 100%; height: 100%; }

/* ---------- Cart ---------- */
.cart-line {
  display: grid; grid-template-columns: 60px 1fr auto auto; gap: 16px; align-items: center;
  background: var(--panel); border: 1px solid var(--border); border-radius: 12px; padding: 12px 16px; margin-bottom: 12px;
}
.cart-line .th { width: 60px; height: 80px; border-radius: 8px; background: radial-gradient(circle at 50% 30%, #2b3a74, #0f1730 72%); display: flex; align-items: center; justify-content: center; color: var(--gold); overflow: hidden; }
.cart-line .th img { width: 100%; height: 100%; object-fit: cover; }
.qty { display: flex; align-items: center; gap: 8px; }
.qty button { width: 28px; height: 28px; border-radius: 7px; border: 1px solid var(--border-2); background: var(--panel-2); color: var(--text); cursor: pointer; font-size: 15px; }
.cart-summary { background: var(--panel); border: 1px solid var(--border); border-radius: 12px; padding: 20px; margin-top: 8px; }
.cart-summary .row { display: flex; justify-content: space-between; padding: 8px 0; color: var(--muted); }
.cart-summary .row.total { color: #fff; font-size: 20px; font-weight: 800; border-top: 1px solid var(--border); margin-top: 8px; padding-top: 16px; }
.cart-summary .row.total .amt { color: var(--gold); }

/* ---------- Admin ---------- */
.wrap { max-width: 760px; margin: 0 auto; padding: 46px 20px 60px; }
.panel { background: var(--panel); border: 1px solid var(--border); border-radius: 16px; padding: 24px; margin-bottom: 22px; }
.panel h2 { margin-top: 0; color: #fff; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.field input[type="text"], .field input[type="number"], .field textarea, .field select {
  width: 100%; padding: 12px; border: 1px solid var(--border-2); border-radius: 10px;
  font-family: inherit; font-size: 15px; background: var(--bg-2); color: var(--text);
}
.field textarea { min-height: 70px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.status-picker { display: flex; gap: 10px; flex-wrap: wrap; }
.status-opt {
  flex: 1; min-width: 130px; border: 2px solid var(--border-2); border-radius: 12px;
  padding: 14px; text-align: center; cursor: pointer; font-weight: 700; background: var(--bg-2); color: var(--text);
}
.status-opt.on.sale { border-color: var(--green); background: rgba(53,208,127,0.10); }
.status-opt.on.trade { border-color: var(--orange); background: rgba(255,159,67,0.10); }
.status-opt.on.collection { border-color: var(--purple); background: rgba(155,108,255,0.12); }
.status-opt .emoji { font-size: 26px; display: block; }
.photo-drop { border: 2px dashed var(--border-2); border-radius: 12px; padding: 20px; text-align: center; cursor: pointer; color: var(--muted); background: var(--bg-2); }
.photo-drop img { max-height: 200px; border-radius: 10px; border: 1px solid var(--border-2); }

.add-thumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.add-thumb { position: relative; width: 60px; height: 80px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border-2); }
.add-thumb img { width: 100%; height: 100%; object-fit: cover; }
.add-thumb button { position: absolute; top: 2px; right: 2px; background: var(--red); color: #fff; border: none; border-radius: 50%; width: 18px; height: 18px; font-size: 12px; line-height: 1; cursor: pointer; }

.lu-msg { color: var(--muted); font-size: 14px; }
.lu-msg.err { color: var(--red-soft); }
.lu-card { display: flex; gap: 14px; align-items: center; background: var(--bg-2); border: 1px solid var(--border-2); border-radius: 12px; padding: 12px 14px; }
.lu-card img { width: 60px; border-radius: 8px; border: 1px solid var(--border); }
.lu-name { font-weight: 700; color: #fff; font-size: 15px; }
.lu-sub { color: var(--muted); font-size: 13px; margin-top: 2px; }
.lu-ok { color: var(--green); font-size: 13px; margin-top: 6px; }
.admin-list { display: flex; flex-direction: column; gap: 12px; }
.admin-row { display: flex; align-items: center; gap: 12px; border: 1px solid var(--border); border-radius: 12px; padding: 10px; background: var(--bg-2); }
.admin-row .thumb { width: 46px; height: 62px; border-radius: 8px; object-fit: cover; background: radial-gradient(circle at 50% 30%, #2b3a74, #0f1730 72%); flex: none; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--gold); }
.admin-row .info { flex: 1; }
.admin-row .info .nm { font-weight: 700; color: #fff; }
.admin-row .info .mt { font-size: 12px; color: var(--muted); }
.note { background: rgba(245,189,31,0.08); border: 1px solid rgba(245,189,31,0.35); border-radius: 12px; padding: 12px 14px; font-size: 14px; margin-bottom: 16px; color: var(--gold-soft); }
.row-between { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.btn-danger { background: var(--red); color: #fff; }
.btn-white { background: var(--panel-2); color: var(--text); border: 1px solid var(--border-2); }

.empty { text-align: center; color: var(--muted); padding: 60px 20px; font-size: 17px; grid-column: 1 / -1; }

.info-block { background: var(--panel); border: 1px solid var(--border); border-radius: 14px; padding: 22px 24px; margin-bottom: 18px; scroll-margin-top: 110px; }
.info-block h2 { margin: 0 0 12px; color: #fff; font-size: 20px; }
.info-block p { color: var(--muted); line-height: 1.7; margin: 0 0 12px; font-size: 15px; }
.info-block p:last-child { margin-bottom: 0; }
.info-block b { color: var(--text); }
.pill { display: inline-block; font-size: 12px; font-weight: 700; padding: 5px 11px; border-radius: 999px; background: var(--panel-3); color: var(--muted); }

.site-footer { border-top: 1px solid var(--border); background: var(--bg-2); margin-top: 20px; }
.footer-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 44px 20px 30px;
  display: grid; grid-template-columns: 1.3fr 2fr; gap: 40px;
}
.footer-story { display: flex; gap: 20px; align-items: flex-end; }
.footer-mascot { width: 118px; height: auto; flex: none; filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5)); }
.footer-story-text { flex: 1; min-width: 0; }
.footer-story h3 { margin: 0 0 14px; color: #fff; font-size: 22px; }
.footer-story p { color: var(--muted); line-height: 1.8; margin: 0 0 14px; font-size: 15px; }
.footer-sign { color: var(--gold); font-weight: 700; font-size: 16px; margin-bottom: 16px; }
.footer-stamp {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text);
  border: 1px solid var(--border-2); border-radius: 999px; padding: 7px 14px;
}
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col h4 {
  margin: 0 0 14px; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold);
}
.footer-col a, .footer-col .soon { display: block; color: var(--muted); font-size: 14px; padding: 5px 0; }
.footer-col a:hover { color: #fff; }
.footer-col .soon { color: var(--muted-2); }
.footer-bottom {
  border-top: 1px solid var(--border); text-align: center; color: var(--muted-2);
  font-size: 12px; padding: 18px 20px; display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap;
}
.footer-bottom .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 8px rgba(245,189,31,0.7); display: inline-block; }
@media (max-width: 780px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { min-height: 220px; }
  .hero h1 { font-size: 44px; }
  .pdp { grid-template-columns: 1fr; }
  .pdp-panels { grid-template-columns: 1fr; }
  .meet { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .kid-badge { display: none; }
  .header-icons { margin-left: auto; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: 36px; }
  .cart-line { grid-template-columns: 50px 1fr; }
  .brand img { height: 72px; margin: 0 0 -30px; }
  .hero-card { width: 116px; margin: 0 -32px; }
}
