
:root {
  --accent: #E2C040;
  --accent-hover: #d1b02f;
  --accent-soft: rgba(226, 192, 64, 0.1);
  --accent-med: rgba(226, 192, 64, 0.3);
  --accent-text: #8a7200;
  --fg: #111;
  --fg-muted: #666;
  --fg-light: #888;
  --fg-lighter: #999;
  --fg-faint: #aaa;
  --fg-dim: #bbb;
  --fg-whisper: #ccc;
  --bg: #fff;
  --bg-alt: #fafaf8;
  --border: #eee;
  --border-med: #ddd;
  --green: #1a7a4a;
  --green-dark: #1a7a4a;
  --green-bg: #f0faf3;
  --green-border: #d4edda;
  --amber: #856404;
  --amber-bg: #fffdf0;
  --amber-border: #ffeeba;
  --red: #c0392b;
  --red-dark: #c0392b;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-ui: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
::selection { background: var(--accent); color: var(--fg); }

body {
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

.shop-page {
  max-width: 1080px;
  margin: 0 auto;
  background: var(--bg);
}

.shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.shop-header__logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--fg);
}

.shop-hero {
  position: relative;
  height: 340px;
  overflow: hidden;
}

.shop-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.15) 100%);
}

.shop-hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 28px 28px;
}

.shop-hero .breadcrumbs {
  padding: 0;
  margin-bottom: 12px;
}

.shop-hero .breadcrumbs a { color: rgba(255,255,255,0.5); }
.shop-hero .breadcrumbs a:hover { color: rgba(255,255,255,0.8); }
.shop-hero .breadcrumbs span[aria-current] { color: rgba(255,255,255,0.8); font-weight: 500; }
.shop-hero .breadcrumbs span[aria-hidden] { color: rgba(255,255,255,0.3); }

.breadcrumbs {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.breadcrumbs a { color: var(--fg-light); transition: color 0.15s; }
.breadcrumbs a:hover { color: var(--fg); }
.breadcrumbs span[aria-current] { color: var(--fg); font-weight: 500; }
.breadcrumbs span[aria-hidden] { margin: 0 6px; color: #ccc; }

.shop-hero__era {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  background: var(--accent);
  color: var(--fg);
  margin-bottom: 8px;
}

.shop-hero h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}

.shop-hero__subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.intro-specs-section {
  padding: 24px 28px 0;
}

.intro-paragraph {
  font-family: var(--font-body);
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: 20px;
  font-weight: 300;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: #e8e8e8;
  margin-bottom: 20px;
}

.specs-grid__cell {
  background: var(--bg);
  padding: 10px 14px;
}

.specs-grid__label {
  font-family: var(--font-ui);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-lighter);
  font-weight: 600;
  margin-bottom: 3px;
}

.specs-grid__value {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.3;
}

.specs-grid__sub {
  font-family: var(--font-ui);
  font-size: 9px;
  color: var(--fg-dim);
  margin-top: 2px;
}

.research-links {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.research-link {
  flex: 1;
  border: 1px solid var(--border);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: border-color 0.15s;
  text-decoration: none;
}

.research-link:hover { border-color: var(--accent); }

.research-link__icon {
  width: 28px;
  height: 28px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.research-link__icon svg { width: 14px; height: 14px; stroke: var(--accent-text); fill: none; stroke-width: 1.5; }

.research-link__name {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  color: var(--fg);
}

.research-link__desc {
  font-family: var(--font-ui);
  font-size: 9px;
  color: var(--fg-lighter);
}

.subgen-section {
  padding: 0 28px;
  margin-bottom: 24px;
}

.subgen-section__title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}

.subgen-grid {
  display: grid;
  gap: 1px;
  background: #e8e8e8;
}

.subgen-card {
  background: var(--bg);
  overflow: hidden;
}

.subgen-card__image {
  height: 110px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.subgen-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.subgen-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 50%);
  pointer-events: none;
}

.subgen-card__image-overlay {
  position: absolute;
  bottom: 8px;
  left: 10px;
  right: 10px;
  z-index: 2;
}

.subgen-card__image-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.subgen-card__name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.subgen-card__listed {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--accent);
}

.subgen-card__years {
  font-family: var(--font-ui);
  font-size: 10px;
  color: rgba(255,255,255,0.6);
}

.subgen-card__meta {
  font-family: var(--font-ui);
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

.subgen-card__body {
  padding: 10px 12px 12px;
}

.subgen-card__stats {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
}

.subgen-card__stat-label {
  font-family: var(--font-ui);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-dim);
}

.subgen-card__stat-value {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--fg);
}

.subgen-card__stat-value--trend { color: var(--green); }

.subgen-card__notes {
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--fg-muted);
  line-height: 1.5;
  margin-bottom: 10px;
}

.subgen-card__filter-btn {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 7px 14px;
  border: none;
  width: 100%;
  background: #f5f5f5;
  color: #555;
  cursor: pointer;
  margin-bottom: 4px;
}

.subgen-card__visit-link {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 500;
  text-align: center;
  padding: 6px 14px;
  color: var(--fg-lighter);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: color 0.15s;
}

.subgen-card__visit-link:hover { color: var(--accent-text); }
.subgen-card__visit-link svg { width: 10px; height: 10px; stroke: currentColor; fill: none; stroke-width: 2; }

.buyers-note {
  padding: 0 28px;
  margin-bottom: 24px;
}

.buyers-note__inner {
  background: #fafafa;
  border: 1px solid var(--border);
  padding: 14px 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.buyers-note__icon {
  width: 32px;
  height: 32px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.buyers-note__icon svg { width: 16px; height: 16px; stroke: var(--accent-text); fill: none; stroke-width: 1.5; }

.buyers-note__label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-text);
  margin-bottom: 4px;
}

.buyers-note__text {
  font-family: var(--font-ui);
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  font-weight: 300;
}

.v3-stat-bar {
  padding: 0 28px;
  margin-bottom: 20px;
}

.v3-stat-bar__inner {
  display: flex;
  gap: 1px;
  background: #e8e8e8;
}

.v3-stat-bar__cell {
  background: var(--bg);
  padding: 8px 14px;
  flex: 1;
  text-align: center;
}

.v3-stat-bar__value {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}

.v3-stat-bar__value--trend { color: var(--green); }

.v3-stat-bar__label {
  font-family: var(--font-ui);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-lighter);
  margin-top: 2px;
}

.v3-stat-bar__link {
  background: var(--bg);
  padding: 8px 14px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
}

.v3-stat-bar__link span {
  font-family: var(--font-ui);
  font-size: 9px;
  color: var(--accent-text);
  font-weight: 500;
}

.v3-stat-bar__link:hover span { color: var(--accent-hover); }

.results-header {
  padding: 0 28px;
}

.results-header h2 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
}

.results-header p {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--fg-light);
  line-height: 1.5;
  margin-bottom: 16px;
  max-width: 600px;
  font-weight: 300;
}

.filter-bar {
  padding: 0 28px;
}

.filter-bar__selects {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.filter-bar__select {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  padding: 7px 28px 7px 12px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: #333;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23999' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  min-width: 100px;
  border-radius: 0;
}

.filter-bar__select:focus { border-color: var(--fg-light); }

.filter-bar__toggle {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  padding: 7px 12px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: #333;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  user-select: none;
}

.filter-bar__toggle input {
  accent-color: #333;
  margin: 0;
  cursor: pointer;
}

.filter-bar__count {
  margin-left: auto;
  font-family: var(--font-ui);
  font-size: 10px;
  color: var(--fg-lighter);
}

.active-filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.active-filters__pill {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  padding: 4px 10px;
  background: var(--accent-soft);
  color: var(--accent-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  border: none;
}

.active-filters__pill svg { width: 8px; height: 8px; stroke: var(--accent-text); fill: none; stroke-width: 3; }

.active-filters__clear {
  font-family: var(--font-ui);
  font-size: 10px;
  color: var(--fg-lighter);
  cursor: pointer;
  padding: 4px 6px;
  text-decoration: underline;
  background: none;
  border: none;
}

.sort-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin: 0 28px 16px;
}

.sort-tab {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 16px;
  border: none;
  background: none;
  color: var(--fg-lighter);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.15s;
}

.sort-tab--active {
  color: var(--fg);
  border-bottom-color: var(--accent);
}

.sort-tab:hover:not(.sort-tab--active) { color: var(--fg-muted); }

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #e8e8e8;
  margin: 0 28px 24px;
}

.listing-card {
  background: var(--bg);
  cursor: pointer;
  transition: transform 0.15s;
}

.listing-card:hover { transform: translateY(-2px); }

.listing-card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.listing-card__image {
  position: relative;
  padding-bottom: 75%;
  background: #f0f0f0;
  overflow: hidden;
}

.listing-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-card__badges-left {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  gap: 4px;
  z-index: 2;
}

.listing-card__bid-badge {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  background: var(--accent);
  color: var(--fg);
}

.listing-card__manual-badge {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 600;
  padding: 3px 8px;
  background: rgba(0,0,0,0.7);
  color: #fff;
}

.listing-card__status-badge {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  background: #777;
  color: #fff;
}

.listing-card__status-badge--sold {
  background: #111;
  color: #E2C040;
}

.listing-card__buy-now-badge {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  background: #1a7a4a;
  color: #fff;
}

.listing-card__price-label {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fg-light);
  margin-right: 4px;
}

.listing-card__source-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 600;
  padding: 3px 8px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  z-index: 2;
}

.listing-card__deal-bar {
  position: absolute;
  bottom: 8px;
  left: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.95);
  padding: 3px 8px;
  z-index: 2;
}

.listing-card__deal-score {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
}

.listing-card__deal-label {
  font-family: var(--font-ui);
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.listing-card__body {
  padding: 10px 12px 12px;
}

.listing-card__title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 2px;
  line-height: 1.2;
}

.listing-card__meta {
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--fg-lighter);
  margin-bottom: 8px;
}

.listing-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.listing-card__price {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
}

.listing-card__timer {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-lighter);
  display: flex;
  align-items: center;
  gap: 3px;
}

.listing-card__timer svg { width: 10px; height: 10px; stroke: var(--fg-dim); fill: none; stroke-width: 2; }

.gated-section {
  position: relative;
  margin: 0 28px 24px;
}

.gated-section__blur {
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
  height: 120px;
  overflow: hidden;
}

.gated-section__blur .listing-grid {
  margin: 0;
  background: #e8e8e8;
}

.gate-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gate-overlay__card {
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding: 28px 40px;
  text-align: center;
  max-width: 380px;
}

.gate-overlay__icon {
  width: 36px;
  height: 36px;
  background: var(--fg);
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gate-overlay__icon svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; stroke-width: 2; }

.gate-overlay__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}

.gate-overlay__desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--fg-light);
  max-width: 280px;
  margin: 0 auto 16px;
  line-height: 1.5;
}

.gate-overlay__cta {
  display: block;
  width: 100%;
  background: var(--accent);
  color: var(--fg);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 11px 32px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  margin-bottom: 8px;
  transition: background 0.15s;
}

.gate-overlay__cta:hover { background: var(--accent-hover); }

.gate-overlay__login {
  font-family: var(--font-ui);
  font-size: 9px;
  color: var(--fg-lighter);
}

.gate-overlay__login a { color: var(--accent-text); cursor: pointer; }

.variant-section {
  padding: 0 28px;
  margin-bottom: 24px;
}

.variant-section__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.variant-section__title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
}

.variant-section__hint {
  font-family: var(--font-ui);
  font-size: 9px;
  color: var(--fg-lighter);
}

.variant-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: #e8e8e8;
}

.variant-pill {
  background: var(--bg);
  display: flex;
  flex-direction: column;
}

.variant-pill__body {
  padding: 10px 12px 6px;
  cursor: pointer;
  flex: 1;
}

.variant-pill__name {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 2px;
}

.variant-pill__price-row {
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin-bottom: 2px;
}

.variant-pill__median {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: #555;
}

.variant-pill__median-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--fg-dim);
}

.variant-pill__count {
  font-family: var(--font-ui);
  font-size: 9px;
  color: var(--fg-dim);
}

.variant-pill__link {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 500;
  padding: 6px 12px 8px;
  color: var(--fg-whisper);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 3px;
  border-top: 1px solid #f5f5f5;
  transition: color 0.15s;
}

.variant-pill__link:hover { color: var(--accent-text); }
.variant-pill__link svg { width: 9px; height: 9px; stroke: currentColor; fill: none; stroke-width: 2; }

.bottom-ctas {
  display: flex;
  gap: 10px;
  padding: 0 28px 32px;
  margin-top: 8px;
}

.bottom-cta {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.bottom-cta:hover { opacity: 0.9; }

.bottom-cta--dark { background: var(--fg); }
.bottom-cta--light { border: 1px solid var(--border); }

.bottom-cta__icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bottom-cta--dark .bottom-cta__icon { background: var(--accent); }
.bottom-cta--light .bottom-cta__icon { border: 1px solid var(--border); }

.bottom-cta__icon svg { width: 14px; height: 14px; }
.bottom-cta--dark .bottom-cta__icon svg { stroke: var(--fg); fill: none; stroke-width: 2; }
.bottom-cta--light .bottom-cta__icon svg { stroke: #555; fill: none; stroke-width: 2; }

.bottom-cta__text { flex: 1; }

.bottom-cta__title {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
}

.bottom-cta--dark .bottom-cta__title { color: #fff; }
.bottom-cta--light .bottom-cta__title { color: var(--fg); }

.bottom-cta__subtitle {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 400;
  margin-top: 1px;
}

.bottom-cta--dark .bottom-cta__subtitle { color: rgba(255,255,255,0.45); }
.bottom-cta--light .bottom-cta__subtitle { color: var(--fg-lighter); }

.shop-footer {
  padding: 28px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 400;
  color: var(--fg-light);
}

.list-view { display: none; }
.list-view--active { display: block; }
.listing-grid--hidden { display: none; }
.gated-section--hidden { display: none; }

.list-item {
  display: flex;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.list-item:hover { background: var(--bg-alt); }

.list-item a {
  display: flex;
  width: 100%;
  color: inherit;
  text-decoration: none;
}

.list-item__image {
  width: 240px;
  min-height: 150px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: #e8e8e8;
}

.list-item__image img { width: 100%; height: 100%; object-fit: cover; }

.listing-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--font-ui);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  color: #fff;
}
.listing-card__badge--sale { background: rgba(0,0,0,0.65); }
.listing-card__source {
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: var(--font-ui);
  font-size: 7px;
  font-weight: 600;
  padding: 3px 7px;
  background: rgba(0,0,0,0.5);
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.04em;
}

.list-item__body {
  flex: 1;
  padding: 16px 20px;
}

.list-item__title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 400;
  color: var(--fg);
  margin: 0;
}

.list-item__meta {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--fg-faint);
  letter-spacing: 0.04em;
  margin-top: 5px;
}

.list-item__right {
  width: 190px;
  flex-shrink: 0;
  border-left: 1px solid var(--border);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
}

.list-item__price {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.list-item__deal {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.list-item__deal-label {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 500;
  color: var(--fg-light);
}

.list-item__deal-score {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
}

.list-item__score-bar {
  width: 52px;
  height: 4px;
  background: var(--border);
  position: relative;
}

.list-item__score-fill {
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.list-item__source {
  font-family: var(--font-ui);
  font-size: 8px;
  font-weight: 500;
  color: var(--fg-dim);
}

.list-item__badges {
  position: absolute;
  bottom: 8px;
  left: 8px;
  display: flex;
  gap: 4px;
}

.list-item__manual-badge {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  padding: 2px 6px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.list-item__status-badge {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  padding: 2px 6px;
  background: #777;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.list-item__status-badge--sold {
  background: #111;
  color: #E2C040;
}

.list-item__buy-now-badge {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  padding: 2px 6px;
  background: #1a7a4a;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.list-item__price-label {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fg-light);
}

.list-item__bid-badge {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  padding: 2px 6px;
  background: rgba(0,0,0,0.7);
  color: var(--accent);
  letter-spacing: 0.04em;
}

.list-item__source-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font-family: var(--font-ui);
  font-size: 7px;
  font-weight: 600;
  padding: 3px 7px;
  background: rgba(0,0,0,0.5);
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.04em;
}

.list-item__timer {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-dim);
  margin-top: 4px;
}

.list-item__timer svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.empty-state {
  padding: 60px 28px;
  text-align: center;
}

.empty-state__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}

.empty-state__text {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg-lighter);
  margin-bottom: 16px;
}

.empty-state a { color: var(--accent); }

.view-toggle {
  display: flex;
  gap: 0;
  margin: 0 28px 8px;
  justify-content: flex-end;
}

.view-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.15s;
}

.view-btn + .view-btn { border-left: none; }
.view-btn--active { background: var(--bg-alt); }
.view-btn:hover:not(.view-btn--active) { background: var(--bg-alt); }
.view-btn svg { width: 14px; height: 14px; fill: var(--fg-muted); }
.view-btn--active svg { fill: var(--fg); }

@media (max-width: 1024px) {
  .listing-grid { grid-template-columns: repeat(3, 1fr); }
  .variant-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .shop-hero { height: 280px; }
  .shop-hero h1 { font-size: 26px; }
  .shop-hero__content { padding: 0 16px 20px; }
  .specs-grid { grid-template-columns: repeat(3, 1fr); }
  .research-links { flex-direction: column; }
  .listing-grid { grid-template-columns: repeat(2, 1fr); margin: 0 16px 24px; }
  .subgen-grid { grid-template-columns: 1fr; }
  .subgen-section { padding: 0 16px; }
  .variant-grid { grid-template-columns: repeat(3, 1fr); }
  .variant-section { padding: 0 16px; }
  .v3-stat-bar { padding: 0 16px; }
  .v3-stat-bar__inner { flex-wrap: wrap; }
  .v3-stat-bar__cell { min-width: 48%; }
  .bottom-ctas { flex-direction: column; padding: 0 16px 28px; }
  .filter-bar { padding: 0 16px; }
  .sort-tabs { margin: 0 16px 16px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .sort-tab { white-space: nowrap; padding: 8px 12px; }
  .results-header { padding: 0 16px; }
  .intro-specs-section { padding: 24px 16px 0; }
  .buyers-note { padding: 0 16px; }
  .gated-section { margin: 0 16px 24px; }
  .view-toggle { margin: 0 16px 8px; }
  .list-item__image { width: 180px; }
  .shop-header { padding: 14px 16px; }
}

@media (max-width: 480px) {
  .shop-hero { height: 240px; }
  .shop-hero h1 { font-size: 22px; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .listing-grid { grid-template-columns: 1fr; margin: 0 16px 24px; }
  .variant-grid { grid-template-columns: repeat(2, 1fr); }
  .v3-stat-bar__inner { flex-direction: column; }
  .list-item__image { display: none; }
  .list-item a { flex-direction: column; }
  .list-item__right {
    width: 100%;
    border-left: none;
    border-top: 1px solid var(--border);
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
