:root {
  --bs-ink: #1e201c;
  --bs-ink-soft: #5d6258;
  --bs-cream: #f6f2ea;
  --bs-paper: #fffaf0;
  --bs-mist: #e8ece6;
  --bs-line: rgba(30, 32, 28, 0.14);
  --bs-line-light: rgba(0, 0, 0, 0.04);
  --bs-pine: #233b32;
  --bs-pine-dark: #1f3a2e;
  --bs-pine-deep: #163126;
  --bs-lake: #3f6f82;
  --bs-brick: #a4423b;
  --bs-honey: #f2b33d;
  --bs-teal: #3d7068;
  --bs-plum: #745081;
  --bs-orange: #d98e2b;
  --bs-shadow: 0 24px 80px rgba(30, 32, 28, 0.14);
  --bs-shadow-card: 0 18px 40px rgba(0, 0, 0, 0.08);
  --bs-shadow-subtle: 0 8px 30px rgba(0, 0, 0, 0.04);
  --bs-container: 1160px;
  --bs-container-wide: 1216px;
  --bs-radius-s: 8px;
  --bs-radius-m: 14px;
  --bs-radius-l: 24px;
  --bs-radius-pill: 999px;
  --bs-neutral: #ede6d8;
  --bs-head: "Fraunces", Georgia, serif;
  --bs-sans: "Inter", Arial, sans-serif;
  --bs-mono: "JetBrains Mono", ui-monospace, monospace;
}

html {
  scrollbar-gutter: stable;
}

body.bs-site {
  margin: 0;
  background: var(--bs-paper);
  color: var(--bs-ink);
  font-family: var(--bs-sans);
  letter-spacing: 0;
}

.bs-site *,
.bs-site *::before,
.bs-site *::after {
  box-sizing: border-box;
}

.bs-site a {
  color: inherit;
}

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

.bs-kicker,
.mono {
  font-family: var(--bs-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--bs-ink-soft);
}

.bs-button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--bs-ink);
  border-radius: 6px;
  background: var(--bs-ink);
  color: var(--bs-paper);
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.bs-button:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(30, 32, 28, 0.16);
}

.bs-button-small {
  min-height: 38px;
  padding-inline: 14px;
  font-size: 14px;
}

.bs-button-light {
  border-color: var(--bs-paper);
  background: var(--bs-paper);
  color: var(--bs-pine);
}

.bs-text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--bs-pine);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.bs-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(255, 250, 240, 0.88);
  backdrop-filter: blur(18px);
}

.bs-header.is-scrolled {
  border-bottom-color: var(--bs-line);
}

.bs-nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  min-height: 76px;
  gap: 24px;
}

.bs-brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  text-decoration: none;
}

.bs-monogram {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: var(--bs-pine);
  color: var(--bs-cream);
  font: 500 26px/1 var(--bs-head);
  padding-bottom: 3px;
}

.bs-brand-copy {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}

.bs-wordmark {
  color: var(--bs-ink);
  font: 700 18px/1 var(--bs-sans);
}

.bs-descriptor {
  color: var(--bs-ink-soft);
  font-size: 13px;
}

.bs-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bs-menu a {
  display: block;
  padding: 8px 10px;
  border: 0;
  border-radius: 999px;
  color: var(--bs-ink-soft);
  background: transparent;
  font: 600 13px var(--bs-sans);
  text-decoration: none;
}

.bs-menu a:hover,
.bs-menu a.active,
.bs-menu .current-menu-item > a {
  background: var(--bs-pine);
  color: var(--bs-cream);
}

.bs-menu a:not(.active):hover {
  background: rgba(35, 59, 50, 0.08);
  color: var(--bs-pine);
}

.bs-nav-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.lang-toggle {
  display: flex;
  padding: 3px;
  border: 1px solid var(--bs-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
}

.lang-toggle button {
  min-width: 34px;
  min-height: 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--bs-ink-soft);
  font: 700 12px var(--bs-mono);
}

.lang-toggle button.active {
  background: var(--bs-pine);
  color: var(--bs-paper);
}

.lang-toggle button[data-lang-btn="sl"] {
  display: none;
}

.cta-bl {
  white-space: nowrap;
}

.bs-icon-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--bs-line);
  border-radius: 6px;
  background: var(--bs-paper);
  color: var(--bs-ink);
  font-size: 24px;
  line-height: 1;
}

.bs-menu-button {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.bs-menu-button span {
  width: 18px;
  height: 2px;
  background: currentColor;
}

.bs-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
}

.bs-drawer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(30, 32, 28, 0);
  transition: background 180ms ease;
}

.bs-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 88vw);
  height: 100%;
  padding: 24px;
  background: var(--bs-pine);
  color: var(--bs-paper);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.bs-drawer.is-open {
  pointer-events: auto;
}

.bs-drawer.is-open .bs-drawer-backdrop {
  background: rgba(30, 32, 28, 0.46);
}

.bs-drawer.is-open .bs-drawer-panel {
  transform: translateX(0);
}

.bs-drawer-open {
  overflow: hidden;
}

.bs-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}

.bs-drawer-head {
  color: var(--bs-paper);
}

.bs-drawer-head .bs-monogram {
  background: var(--bs-cream);
  color: var(--bs-pine);
}

.bs-drawer-head .bs-wordmark {
  margin-right: auto;
  color: var(--bs-paper);
}

.bs-drawer-nav {
  display: grid;
  gap: 8px;
}

.bs-drawer-nav a {
  padding: 14px 0;
  border-bottom: 1px solid rgba(244, 239, 230, 0.18);
  color: var(--bs-paper);
  font: 650 26px var(--bs-head);
  text-decoration: none;
}

.bs-drawer-lang {
  width: max-content;
  margin-top: 28px;
  border-color: rgba(244, 239, 230, 0.4);
  background: transparent;
}

.bs-drawer-lang button {
  color: var(--bs-cream);
}

.bs-drawer-lang button.active {
  background: var(--bs-cream);
  color: var(--bs-pine);
}

.bs-hero {
  padding: 88px 0 56px;
  background:
    radial-gradient(circle at 80% 20%, rgba(242, 179, 61, 0.22), transparent 32%),
    linear-gradient(135deg, var(--bs-paper), var(--bs-mist));
}

.bs-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 58px;
  align-items: center;
}

.bs-hero h1,
.bs-shop-head h1,
.bs-section h2 {
  margin: 0;
  color: var(--bs-ink);
  font-family: var(--bs-head);
  font-weight: 650;
  line-height: 0.98;
}

.bs-hero h1 {
  max-width: 780px;
  margin-top: 18px;
  font-size: clamp(54px, 8vw, 104px);
}

.bs-hero-copy p:not(.bs-kicker),
.bs-shop-head p,
.bs-process p,
.bs-category-card p,
.bs-footer p {
  color: var(--bs-ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.bs-hero-copy p:not(.bs-kicker) {
  max-width: 650px;
}

.bs-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.bs-hero-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(35, 59, 50, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.58);
  box-shadow: var(--bs-shadow);
}

.bs-hero-card {
  min-height: 146px;
  padding: 22px;
  border-radius: 8px;
  background: var(--bs-paper);
  border: 1px solid var(--bs-line);
}

.bs-hero-card-large {
  grid-column: span 2;
  min-height: 220px;
  background: var(--bs-pine);
  color: var(--bs-paper);
}

.bs-hero-card span,
.bs-hero-card em {
  display: block;
  color: inherit;
  font: 600 12px var(--bs-mono);
  font-style: normal;
  opacity: 0.74;
  text-transform: uppercase;
}

.bs-hero-card strong {
  display: block;
  margin-top: 14px;
  font: 650 58px/1 var(--bs-head);
}

.bs-hero-card-large strong {
  font-size: 92px;
}

.bs-hero-strip {
  grid-column: span 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.bs-hero-strip span {
  height: 16px;
  border-radius: 999px;
}

.bs-hero-strip span:nth-child(1) { background: var(--bs-brick); }
.bs-hero-strip span:nth-child(2) { background: var(--bs-honey); }
.bs-hero-strip span:nth-child(3) { background: var(--bs-lake); }
.bs-hero-strip span:nth-child(4) { background: var(--bs-teal); }
.bs-hero-strip span:nth-child(5) { background: var(--bs-plum); }

.bs-section {
  padding: 84px 0;
}

.bs-section-cream {
  background: var(--bs-cream);
}

.bs-section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.bs-section-head h2,
.bs-shop-head h1 {
  max-width: 780px;
  font-size: clamp(38px, 5vw, 72px);
}

.bs-category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.bs-category-card {
  min-height: 260px;
  grid-column: span 2;
  padding: 24px;
  border: 1px solid var(--bs-line);
  border-radius: 8px;
  background: var(--bs-paper);
  color: var(--bs-ink);
  text-decoration: none;
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.bs-category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bs-shadow);
}

.bs-category-card span {
  color: var(--cat-color, var(--bs-pine));
  font: 650 42px/1 var(--bs-head);
}

.bs-category-card h3 {
  margin: 24px 0 10px;
  font: 650 28px/1.05 var(--bs-head);
}

.bs-cat-sets { --cat-color: var(--bs-brick); }
.bs-cat-minifigs { --cat-color: var(--bs-honey); }
.bs-cat-parts { --cat-color: var(--bs-lake); }
.bs-cat-books { --cat-color: var(--bs-teal); }
.bs-cat-rare { --cat-color: var(--bs-plum); }

.featured-grid,
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.featured-card,
.card {
  overflow: hidden;
  border: 1px solid var(--bs-line);
  border-radius: 8px;
  background: var(--bs-paper);
  box-shadow: 0 8px 28px rgba(30, 32, 28, 0.06);
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.featured-card:hover,
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bs-shadow);
}

.featured-img,
.img {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 250px;
  background:
    linear-gradient(rgba(255,255,255,0.56), rgba(255,255,255,0.56)),
    radial-gradient(circle, rgba(30,32,28,0.12) 1px, transparent 1.5px);
  background-size: auto, 18px 18px;
}

.featured-img img,
.img img {
  max-width: 82%;
  max-height: 220px;
  object-fit: contain;
  transition: transform 220ms ease;
}

.card:hover .img img,
.featured-card:hover .featured-img img {
  transform: scale(1.045);
}

.featured-body,
.body {
  padding: 20px;
}

.featured-cat,
.cat {
  color: var(--card-category-color, var(--bs-pine));
  font: 700 12px var(--bs-mono);
  text-transform: uppercase;
}

.featured-body h3,
.body h3 {
  min-height: 48px;
  margin: 9px 0;
  font: 650 21px/1.15 var(--bs-head);
}

.featured-number,
.cond {
  color: var(--bs-ink-soft);
  font-size: 14px;
}

.featured-meta,
.meta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}

.featured-price,
.price {
  font: 700 28px/1 var(--bs-sans);
}

.featured-price small,
.price small {
  margin-left: 4px;
  color: var(--bs-ink-soft);
  font-size: 11px;
}

.featured-platform,
.platform {
  display: flex;
  gap: 5px;
}

.featured-platform span,
.platform span,
.tag,
.featured-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--bs-ink);
  color: var(--bs-paper);
  font: 700 11px var(--bs-mono);
}

.tag,
.featured-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--bs-brick);
}

.tag.hot {
  background: var(--bs-honey);
  color: var(--bs-ink);
}

.brick,
.plabel,
.studfield {
  display: none;
}

.bs-process {
  background: var(--bs-pine);
  color: var(--bs-paper);
}

.bs-process .bs-kicker,
.bs-process p,
.bs-process h2 {
  color: var(--bs-paper);
}

.bs-process-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.bs-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.bs-proof-grid div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 104px;
  padding: 20px;
  border: 1px solid rgba(244, 239, 230, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
}

.bs-proof-grid img {
  width: 36px;
  height: 36px;
  filter: brightness(0) invert(1);
}

.bs-shop-head {
  padding: 72px 0 44px;
  background: var(--bs-cream);
}

.bs-shop-head-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: 48px;
  align-items: end;
}

.bs-sync-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.bs-sync-row span,
.pill {
  padding: 8px 11px;
  border: 1px solid var(--bs-line);
  border-radius: 999px;
  background: var(--bs-paper);
  color: var(--bs-ink-soft);
  font: 700 12px var(--bs-mono);
}

.bs-shop-shell {
  padding: 28px 0 80px;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip,
.select,
.pagi button {
  min-height: 44px;
  border: 1px solid var(--bs-line);
  border-radius: 999px;
  background: var(--bs-paper);
  color: var(--bs-ink);
  font: 700 13px var(--bs-sans);
}

.chip {
  padding: 0 18px;
}

.chip.active,
.pagi .active {
  border-color: var(--bs-pine-dark);
  background: var(--bs-pine-dark);
  color: white;
}

.chip .count {
  opacity: 0.68;
}

.select {
  min-width: 170px;
  padding: 0 34px 0 14px;
}

.shop-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 320px;
}

.shop-search {
  display: block;
  min-width: 230px;
  flex: 1 1 230px;
}

.shop-search input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--bs-line);
  border-radius: 999px;
  background: var(--bs-paper);
  color: var(--bs-ink);
  padding: 0 16px;
  font: 700 13px var(--bs-sans);
}

.shop-search input::placeholder {
  color: var(--bs-muted);
  opacity: .82;
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.active-filters[hidden] {
  display: none;
}

.active-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 8px 0 14px;
  border: 1px solid rgba(31, 58, 46, 0.18);
  border-radius: 999px;
  background: rgba(242, 179, 61, 0.18);
  color: var(--bs-ink);
  font: 700 13px var(--bs-sans);
}

.active-filter span {
  color: var(--bs-muted);
}

.active-filter button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 50%;
  background: var(--bs-pine-dark);
  color: white;
  font: 700 16px/1 var(--bs-sans);
}

.shop {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--bs-line);
  border-radius: 8px;
  background: rgba(244, 239, 230, 0.74);
}

.sidebar h4 {
  margin: 0 0 12px;
  font: 700 13px var(--bs-mono);
  text-transform: uppercase;
}

.sidebar ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar li,
.opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--bs-ink-soft);
  font-size: 14px;
}

.opt {
  justify-content: flex-start;
}

.opt input {
  accent-color: var(--bs-pine);
}

.slider-row {
  display: flex;
  justify-content: space-between;
  color: var(--bs-ink-soft);
  font-size: 13px;
}

.sidebar input[type="range"] {
  width: 100%;
}

.swatch-grid {
  display: grid;
  grid-template-columns: repeat(5, 28px);
  gap: 8px;
}

.sw {
  width: 28px;
  height: 28px;
  border: 2px solid transparent;
  border-radius: 50%;
}

.sw.sel {
  border-color: var(--bs-ink);
}

.results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.view-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 2px;
  border: 1px solid var(--bs-line);
  border-radius: 999px;
  background: var(--bs-cream);
}

.view-toggle button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--bs-ink-soft);
  font: 700 11px var(--bs-mono);
  text-transform: uppercase;
  cursor: pointer;
}

.view-toggle button.active {
  background: var(--bs-ink);
  color: var(--bs-paper);
}

.view-icon {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
}

.view-icon--grid {
  background:
    linear-gradient(currentColor 0 0) 0 0 / 5px 5px,
    linear-gradient(currentColor 0 0) 9px 0 / 5px 5px,
    linear-gradient(currentColor 0 0) 0 9px / 5px 5px,
    linear-gradient(currentColor 0 0) 9px 9px / 5px 5px;
  background-repeat: no-repeat;
}

.view-icon--list {
  background:
    linear-gradient(currentColor 0 0) 0 1px / 14px 3px,
    linear-gradient(currentColor 0 0) 0 6px / 14px 3px,
    linear-gradient(currentColor 0 0) 0 11px / 14px 3px;
  background-repeat: no-repeat;
}

.pagi {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.pagi button {
  min-width: 40px;
}

.no-results,
.error {
  grid-column: 1 / -1;
  padding: 30px;
  border: 1px solid var(--bs-line);
  border-radius: 8px;
  background: var(--bs-cream);
}

.bs-footer {
  padding: 56px 0 28px;
  background: var(--bs-ink);
  color: var(--bs-paper);
}

.bs-footer-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.16);
}

.bs-footer h2 {
  max-width: 720px;
  margin: 0;
  font: 650 clamp(34px, 5vw, 64px)/1 var(--bs-head);
}

.bs-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
  padding: 38px 0;
}

.bs-footer-logo {
  width: 190px;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}

.bs-footer h3 {
  margin: 0 0 14px;
  font: 700 13px var(--bs-mono);
  text-transform: uppercase;
}

.bs-footer a {
  display: block;
  margin: 9px 0;
  color: rgba(244, 239, 230, 0.82);
  text-decoration: none;
}

.bs-footer p {
  color: rgba(244, 239, 230, 0.72);
}

.bs-footer-stat {
  margin: 0;
  color: var(--bs-honey) !important;
  font: 650 42px/1 var(--bs-head);
}

.bs-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(244, 239, 230, 0.16);
  color: rgba(244, 239, 230, 0.6);
  font-size: 13px;
}

.bs-content {
  max-width: 780px;
}

.bs-content h1 {
  font: 650 56px/1 var(--bs-head);
}

@media (max-width: 980px) {
  .bs-primary-nav,
  .bs-nav-actions .bs-button,
  .bs-nav-actions .lang-toggle {
    display: none;
  }

  .bs-menu-button {
    display: flex;
  }

  .bs-hero-grid,
  .bs-shop-head-grid,
  .bs-process-grid,
  .shop {
    grid-template-columns: 1fr;
  }

  .bs-hero-board {
    max-width: 620px;
  }

  .bs-category-grid,
  .featured-grid,
  .grid,
  .bs-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bs-category-card {
    grid-column: span 1;
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 680px) {
  .bs-wrap {
    width: min(100% - 28px, var(--bs-container));
  }

  .bs-brand-copy {
    display: grid;
    gap: 2px;
  }

  .bs-wordmark {
    font-size: 16px;
  }

  .bs-descriptor {
    font-size: 11px;
  }

  .bs-hero {
    padding-top: 58px;
  }

  .bs-hero h1 {
    font-size: 52px;
  }

  .bs-hero-card-large strong {
    font-size: 62px;
  }

  .bs-section-head,
  .toolbar,
  .results-head,
  .bs-footer-cta,
  .bs-footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
  }

  .bs-category-grid,
  .featured-grid,
  .grid,
  .bs-proof-grid,
  .bs-footer-grid {
    grid-template-columns: 1fr;
  }

  .bs-category-card {
    min-height: auto;
  }

  .featured-img,
  .img {
    min-height: 220px;
  }
}

/* Standalone mockup alignment pass — shorthand aliases for component CSS */
.bs-site {
  --cream: var(--bs-cream);
  --paper: var(--bs-paper);
  --pine: var(--bs-pine);
  --pine-dark: var(--bs-pine-dark);
  --pine-deep: var(--bs-pine-deep);
  --ink: var(--bs-ink);
  --muted: var(--bs-ink-soft);
  --line: var(--bs-line);
  --line-light: var(--bs-line-light);
  --brick: var(--bs-brick);
  --yellow: var(--bs-honey);
  --blue: #5B9BD5;
  --teal: var(--bs-teal);
  --plum: var(--bs-plum);
  --orange: var(--bs-orange);
  --neutral: var(--bs-neutral);
  --shadow-card: var(--bs-shadow-card);
  --shadow-subtle: var(--bs-shadow-subtle);
  --radius-s: var(--bs-radius-s);
  --radius-m: var(--bs-radius-m);
  --radius-l: var(--bs-radius-l);
  --radius-pill: var(--bs-radius-pill);
  background: var(--paper);
}

.bs-main { background: var(--paper); }
.container { width: min(var(--bs-container-wide), calc(100% - 48px)); margin: 0 auto; }
.header, .bs-header { height: 78px; background: rgba(246,242,234,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(31,58,46,0.08); }
.bs-site .cta-bl,
.bs-site a.cta-bl { min-height: auto; padding: 8px 16px; border: 1px solid var(--ink); border-radius: 999px; background: transparent; color: var(--ink); font: 500 12px var(--bs-sans); box-shadow: none; }
.bs-site .cta-bl:hover,
.bs-site a.cta-bl:hover { background: transparent; color: var(--ink); }
.bs-nav { min-height: 78px; }
.bs-monogram { width: 42px; height: 42px; border-radius: var(--radius-m); font: 600 24px/1 var(--bs-head); background: var(--pine-dark); }
.bs-wordmark { font-size: 16px; }
.bs-descriptor { font-size: 12px; }
.bs-menu { gap: 4px; }
.bs-menu a { padding: 8px 12px; font-size: 15px; font-weight: 500; letter-spacing: -0.01em; text-transform: none; border-radius: 0; border-bottom: 2px solid transparent; }
.bs-menu a.active,
.bs-menu .current-menu-item > a { background: transparent; color: var(--pine-dark); border-bottom-color: var(--pine-dark); }
.bs-menu a:not(.active):hover { background: transparent; color: var(--pine-dark); border-bottom-color: rgba(31,58,46,0.3); }
.lang-toggle button { min-width: 34px; min-height: 30px; font-size: 11px; }
.hero { position: relative; background: var(--cream); border-bottom: 1px solid var(--line); overflow: hidden; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { display: block; width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(237, 230, 213, .92) 0%, rgba(237, 230, 213, .80) 25%, rgba(237, 230, 213, .55) 45%, rgba(237, 230, 213, .25) 65%, rgba(237, 230, 213, 0) 88%); pointer-events: none; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 1.4fr; gap: 48px; align-items: center; min-height: 540px; padding: 64px 0 80px; pointer-events: none; }
.hero-grid > * { pointer-events: auto; }
.hero-copy { max-width: 520px; }
.hero-visual { position: relative; align-self: end; justify-self: end; min-height: 100%; display: flex; align-items: flex-end; justify-content: flex-end; }
.eyebrow { font: 600 12px/1.2 var(--bs-mono); color: var(--muted); text-transform: uppercase; }
.dash { color: var(--brick); margin-right: 8px; }
.hero h1 { min-height: 3.12em; font-family: var(--bs-head); font-weight: 400; font-size: 70px; line-height: 1.04; letter-spacing: -0.025em; color: var(--ink); margin: 0 0 24px; text-wrap: balance; }
.hero h1 em { font-style: italic; font-weight: 500; }
.hero .lede { font-size: 17px; line-height: 1.55; color: var(--ink); max-width: 520px; margin: 0 0 32px; }
.hero-ctas { display: flex; gap: 12px; align-items: center; margin-bottom: 28px; flex-wrap: wrap; }
.featured-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn { display: inline-flex; align-items: center; gap: 8px; border-radius: 999px; font-family: var(--bs-sans); font-weight: 500; transition: all .15s; border: 0; cursor: pointer; text-decoration: none; }
.bs-site .btn--primary,
.bs-site a.btn--primary { background: var(--pine-deep); color: var(--cream); padding: 14px 22px; font-size: 14.5px; border: 0; border-radius: 999px; }
.bs-site .btn--primary:hover,
.bs-site a.btn--primary:hover { background: var(--pine-dark); }
.btn--primary .ext { opacity: .7; font-size: 12px; }
.btn--ghost,
a.btn--ghost { background: transparent; color: var(--ink); padding: 14px 22px; font-size: 14.5px; border: 1px solid var(--line); border-radius: 999px; }
.btn--ghost:hover,
a.btn--ghost:hover { border-color: var(--ink); }
.btn--secondary { padding: 14px 22px; border-radius: 999px; background: transparent; border: 1px solid var(--line); color: var(--ink); }
.stats { background: var(--cream); border-bottom: 1px solid var(--line); }
.stats-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; padding: 24px 0; }
.stat { display: flex; align-items: center; gap: 14px; }
.stat-icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--pine-dark); }
.stat-icon svg { width: 26px; height: 26px; }
.stat-num { font: 500 22px/1.1 var(--bs-head); color: var(--ink); letter-spacing: -0.01em; }
.stat-num--text { font: 700 15px/1.15 var(--bs-sans); letter-spacing: 0; }
.stat-label { font-size: 12px; color: var(--muted); line-height: 1.3; }
.favorite-categories { padding-top: 42px; }
.section-eyebrow { margin-bottom: 18px; color: var(--muted); font: 700 12px/1.2 var(--bs-mono); letter-spacing: .08em; text-transform: uppercase; }
.favorite-cat-grid { grid-template-columns: repeat(var(--favorite-cat-columns, 5), minmax(0, 1fr)); }
.cat-tile { position: relative; display: block; min-height: 210px; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: linear-gradient(135deg, rgba(20, 56, 45, .94), rgba(164, 66, 59, .72)); color: white; text-decoration: none; isolation: isolate; }
.cat-tile img, .cat-tile-fallback { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: contain; padding: 18px 20px 58px; transition: transform 260ms ease; }
.cat-tile-fallback { background: linear-gradient(135deg, rgba(20, 56, 45, .96), rgba(164, 66, 59, .76)); }
.cat-tile::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0,0,0,.06) 0%, rgba(0,0,0,.25) 45%, rgba(0,0,0,.72) 100%); }
.cat-tile:hover img, .cat-tile:hover .cat-tile-fallback { transform: scale(1.04); }
.cat-tile-overlay { position: absolute; inset: auto 0 0; z-index: 2; display: grid; gap: 6px; padding: 18px; }
.cat-tile-name { margin: 0; color: white; font: 650 24px/.95 var(--bs-head); }
.cat-tile-link { color: rgba(255,255,255,.84); font: 800 12px/1.2 var(--bs-sans); white-space: nowrap; }
.data-label, .mp-stat-label { margin-top: 8px; color: var(--muted); font: 600 11px/1.2 var(--bs-mono); text-transform: uppercase; }
.section, .section--tight, .section--narrow { padding: 84px 0; background: var(--paper); }
.section--tight { padding: 76px 0; }
.section--narrow { padding: 42px 0; }
.divider { border-top: 1px solid var(--line); padding-top: 18px; margin-bottom: 32px; }
.h-1, .page-intro h1, .marketplace-head h2, .categories-head h2 { margin: 0; font: 650 clamp(44px, 6vw, 84px)/.95 var(--bs-head); }
.marketplace-head, .categories-head, .story-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: end; margin-bottom: 38px; }
.marketplace-head p, .categories-head p, .page-intro p, .story-grid p { color: var(--muted); font-size: 18px; line-height: 1.7; }
.marketplace-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.mp-card { display: block; min-height: 360px; padding: 28px; border: 1px solid var(--line); border-radius: 8px; background: var(--cream); color: var(--ink); text-decoration: none; }
.mp-card--disabled { cursor: default; opacity: .72; }
.mp-card--disabled .mp-glyph { background: var(--muted); }
.mp-card--disabled .mp-badge { border-color: var(--muted); color: var(--ink); }
.mp-card-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.mp-glyph { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 6px; color: white; font: 700 17px var(--bs-mono); }
.mp-glyph--bl { background: var(--brick); } .mp-glyph--bo { background: var(--teal); }
.mp-badge, .badge { border: 1px solid var(--line); border-radius: 999px; padding: 6px 10px; font: 700 11px var(--bs-mono); text-transform: uppercase; color: var(--muted); }
.mp-title { margin: 42px 0 12px; font: 650 34px/1 var(--bs-head); }
.mp-desc { color: var(--muted); line-height: 1.65; }
.mp-bottom { margin-top: 38px; display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.mp-stats { display: flex; gap: 34px; }
.mp-stat-num { font: 750 24px/1 var(--bs-sans); }
.mp-link { font-weight: 800; }
.mp-link--muted { color: var(--muted); }
.cat-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.cat-grid--count-1 { grid-template-columns: minmax(0, 1fr); }
.cat-grid--count-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cat-grid--count-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cat-grid--count-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cat-grid--count-5 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.cat-grid--count-5 .cat-card { grid-column: span 2; }
.cat-grid--count-5 .cat-card:nth-child(4),
.cat-grid--count-5 .cat-card:nth-child(5) { grid-column: span 3; }
.cat-card { position: relative; display: flex; flex-direction: column; min-height: 220px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-l); background: var(--cream); color: var(--ink); text-decoration: none; transition: transform 200ms ease, box-shadow 200ms ease; }
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.cat-card-dot { position: absolute; top: 24px; right: 24px; width: 14px; height: 14px; border-radius: 50%; }
.cat-card-num { display: block; font: 700 13px var(--bs-mono); margin-bottom: 34px; }
.cat-card-name { margin: 0 0 12px; font: 650 28px/1.05 var(--bs-head); }
.subtle { color: var(--muted); font-size: 13px; line-height: 1.55; margin: 0; }
.cat-card-count { display: block; margin-top: auto; padding-top: 22px; font: 700 13px var(--bs-mono); }
.featured-block { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; padding: 40px; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: var(--cream); }
.featured-visual { display: grid; min-height: 411px; place-items: center; background: var(--pine); }
a.featured-visual { color: inherit; text-decoration: none; }
.featured-visual--image { background: var(--neutral); }
.featured-visual--image img { display: block; width: 78%; height: 78%; object-fit: contain; mix-blend-mode: multiply; filter: drop-shadow(0 18px 24px rgba(31,33,29,.16)); }
.featured-visual-plate { width: 54%; aspect-ratio: 1.42; border-radius: 10px; background: var(--brick); box-shadow: inset 0 -18px rgba(0,0,0,.12); display: flex; align-items: center; justify-content: center; gap: 30px; }
.stud, .lot-stud { width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.28); box-shadow: inset 0 5px rgba(255,255,255,.24); }
.featured-block .featured-meta { display: flex; flex-direction: column; align-items: stretch; justify-content: center; align-self: center; gap: 0; margin-top: 0; padding: 0; }
.featured-title { margin: 18px 0; font: 400 36px/1.1 var(--bs-head); }
.featured-desc { color: var(--muted); font-size: 17px; line-height: 1.7; }
.featured-ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.featured-block .featured-data { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; width: 100%; margin-top: 36px; }
.data-num { font: 750 24px/1 var(--bs-sans); }
.grid-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 22px; }
.grid-head h3 { margin: 0; font: 650 40px/1 var(--bs-head); }
.grid-head a { border: 0; background: transparent; font-weight: 800; text-decoration: none; color: var(--ink); }
.lot-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.lot-card { display: flex; flex-direction: column; min-height: 360px; border: 1px solid var(--line-light); border-radius: var(--radius-l); background: rgba(255,255,255,0.92); color: var(--ink); overflow: hidden; text-align: left; padding: 20px; transition: transform 250ms ease, box-shadow 250ms ease; }
a.lot-card { text-decoration: none; }
a.lot-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.lot-visual { position: relative; min-height: 240px; display: flex; align-items: center; justify-content: center; background: var(--neutral); border-radius: calc(var(--radius-l) - 4px); }
.lot-plate { width: 118px; height: 78px; border-radius: 8px; display: flex; align-items: center; justify-content: center; gap: 18px; box-shadow: inset 0 -10px rgba(0,0,0,.12); }
.lot-plate--new { background: var(--brick); } .lot-plate--like { background: var(--teal); } .lot-plate--rare { background: var(--plum); }
.lot-stud { width: 18px; height: 18px; }
.lot-visual .badge { position: absolute; top: 12px; left: 12px; background: var(--paper); color: var(--ink); }
.lot-visual .badge--category { left: auto; right: 12px; }
.lot-meta { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.lot-meta-top { display: flex; justify-content: space-between; gap: 8px; color: var(--muted); font: 700 11px var(--bs-mono); text-transform: uppercase; }
.lot-title { margin: 18px 0 4px; font: 650 20px/1.15 var(--bs-head); }
.lot-subtitle { margin: 0; color: var(--muted); }
.lot-bottom { margin-top: auto; display: flex; align-items: end; justify-content: space-between; gap: 12px; }
.lot-price { font: 800 20px/1 var(--bs-sans); }
.lot-currency { color: var(--muted); font: 700 10px var(--bs-mono); }
.lot-stock { color: var(--muted); font: 700 10px var(--bs-mono); text-transform: uppercase; white-space: nowrap; }
.lot-marketplaces { display: flex; gap: 4px; }
.mp-link-tiny { display: grid; place-items: center; min-width: 26px; height: 24px; border-radius: 999px; background: var(--ink); color: var(--paper); font: 700 10px var(--bs-mono); }
.shop-main .lot-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.shop-main .lot-grid--3 .lot-card {
  display: block;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  overflow: visible;
  font-size: 13.333px;
  line-height: normal;
}
.shop-main .lot-grid--3 .lot-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  min-height: 0;
  border-radius: 12px;
  background: var(--neutral);
}
.shop-main .lot-grid--3 .lot-visual--image {
  min-height: 0;
  padding: 0;
  background: var(--neutral);
}
.shop-main .lot-grid--3 .lot-visual--image img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 12px 18px rgba(31,33,29,.14));
}
.shop-main .lot-grid--3 .lot-plate {
  width: 64%;
  height: 56%;
  border-radius: 10px;
  gap: 28px;
  box-shadow: inset 0 -14px rgba(0,0,0,.12);
}
.shop-main .lot-grid--3 .lot-plate--new { background: #7fa875; }
.shop-main .lot-grid--3 .lot-plate--like { background: #a8b894; }
.shop-main .lot-grid--3 .lot-plate--rare { background: #8b6238; }
.shop-main .lot-grid--3 .lot-stud {
  width: 18px;
  height: 18px;
}
.shop-main .lot-grid--3 .badge {
  position: absolute;
  top: 12px;
  display: block;
  border: 0;
  border-radius: 999px;
  padding: 4px 10px;
  font: 500 9px var(--bs-mono);
  text-transform: none;
}
.shop-main .lot-grid--3 .badge--condition {
  left: 12px;
  background: white;
  color: var(--ink);
}
.shop-main .lot-grid--3 .badge--category {
  right: 12px;
  left: auto;
  background: var(--brick);
  color: var(--paper);
}
.shop-main .lot-grid--3 .badge--category.minifigs { background: var(--yellow); color: var(--ink); }
.shop-main .lot-grid--3 .badge--category.parts { background: var(--blue); color: var(--paper); }
.shop-main .lot-grid--3 .badge--category.books { background: var(--teal); color: var(--paper); }
.shop-main .lot-grid--3 .badge--category.rare { background: var(--plum); color: var(--paper); }
.shop-main .lot-grid--3 .lot-meta {
  display: block;
  padding: 14px 4px 4px;
}
.shop-main .lot-grid--3 .lot-meta-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 8px;
  color: var(--muted);
  font: 500 10px var(--bs-mono);
  text-transform: uppercase;
}
.shop-main .lot-grid--3 .lot-title {
  min-height: 0;
  margin: 0 0 4px;
  color: var(--ink);
  font: 500 17px/1.2 var(--bs-head);
}
.shop-main .lot-grid--3 .lot-subtitle {
  margin: 0 0 8px;
  color: var(--muted);
  font: 11px var(--bs-mono);
}
.shop-main .lot-grid--3 .lot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
}
.shop-main .lot-grid--3 .lot-price {
  color: var(--ink);
  font: 500 15px var(--bs-mono);
}
.shop-main .lot-grid--3 .lot-stock {
  color: var(--muted);
  font: 500 9px var(--bs-mono);
  text-transform: uppercase;
}
.shop-main .lot-grid--3 .lot-currency {
  color: var(--muted);
  font: 500 9px var(--bs-mono);
}
.shop-main .lot-grid--3 .mp-link-tiny {
  display: flex;
  min-width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--neutral);
  color: var(--ink);
  font: 500 9px var(--bs-mono);
}
.shop-main .grid.is-list-view {
  grid-template-columns: 1fr;
}
.shop-main .grid.is-list-view .lot-card,
.shop-main .grid.is-list-view .card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  min-height: 0;
}
.shop-main .grid.is-list-view .lot-visual,
.shop-main .grid.is-list-view .img {
  min-height: 170px;
  height: 100%;
}
.shop-main .grid.is-list-view .lot-visual--image img,
.shop-main .grid.is-list-view .img img {
  max-width: 82%;
  max-height: 138px;
}
.shop-main .grid.is-list-view .lot-meta,
.shop-main .grid.is-list-view .body {
  min-width: 0;
  padding: 22px;
}
.shop-main .grid.is-list-view .lot-title,
.shop-main .grid.is-list-view .body h3 {
  min-height: 0;
  margin-top: 14px;
}
.shop-main .grid.is-list-view .lot-bottom,
.shop-main .grid.is-list-view .meta {
  margin-top: 22px;
}
.page-intro { padding: 54px 0; background: var(--cream); }
.breadcrumbs { margin-bottom: 24px; color: var(--muted); font: 700 12px var(--bs-mono); text-transform: uppercase; }
.page-intro h1 { max-width: 850px; font-size: 72px; font-family: var(--bs-head); }
.page-intro p { max-width: 760px; margin-top: 20px; }
.shop-stats-bar { display: grid; grid-template-columns: repeat(5, 1fr); background: rgba(255,255,255,0.72); border-radius: var(--radius-l); padding: 26px; margin-top: 28px; gap: 16px; }
.shop-stats-bar .stat-num { font-size: 28px; }
.shop-seo-intro {
	padding: 46px 0 6px;
	background: #fff;
}

.shop-seo-intro .container {
	max-width: 980px;
}

.shop-seo-intro h2 {
	margin: 0 0 14px;
	font: 650 34px/1.08 var(--bs-head);
	color: var(--ink);
}

.shop-seo-intro p {
	max-width: 820px;
	margin: 0 0 12px;
	color: var(--muted);
	font-size: 16px;
	line-height: 1.7;
}

.shop-layout { padding: 54px 0 90px; }
.shop-layout > .container { display: grid; grid-template-columns: 310px minmax(0,1fr); gap: 24px; align-items: start; }
.shop-filters .sidebar { position: sticky; top: 104px; width: 310px; background: rgba(255,255,255,0.72); border-radius: var(--radius-l); padding: 28px; border: 1px solid var(--line-light); }
.shop-filters .sidebar h4 { font-size: 13px; letter-spacing: 0.12em; font-weight: 700; color: var(--muted); }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.shipping-proof, .rates-grid, .notes-grid, .principles, .timeline, .contact-inner { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.shipping-proof strong, .rates-grid > div, .notes-grid p, .principles > div, .timeline > div, .contact-card, .contact-form { border: 1px solid var(--line); border-radius: 8px; background: var(--cream); padding: 22px; }
.rates-grid h3, .principles h3, .contact-card h3 { margin: 0 0 8px; font: 650 24px/1 var(--bs-head); }
.rates-grid p, .notes-grid p, .principles p, .timeline p, .contact-card p { color: var(--muted); line-height: 1.6; }
.story-section { padding: 84px 0; }
.story-grid h2 { margin: 0; font: 650 clamp(42px,5vw,76px)/.96 var(--bs-head); }
.principles span { font: 700 13px var(--bs-mono); color: var(--brick); }
.timeline { grid-template-columns: repeat(4, minmax(0,1fr)); }
.timeline strong { font: 650 34px/1 var(--bs-head); }
.contact-inner { grid-template-columns: 1.2fr .8fr; align-items: start; }
.contact-form { display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 7px; font: 700 12px var(--bs-mono); text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 6px; background: var(--paper); padding: 12px; font: 400 15px var(--bs-sans); }
.contact-form-status { min-height: 20px; margin: 0; color: var(--muted); font: 600 13px/1.4 var(--bs-sans); }
.contact-form-status[data-state="success"] { color: var(--pine); }
.contact-form-status[data-state="error"] { color: var(--brick); }
.contact-form .btn:disabled { cursor: progress; opacity: .72; }
.contact-card { display: grid; gap: 14px; }
.contact-card h3:not(:first-child) { margin-top: 10px; }
.contact-map { overflow: hidden; min-height: 320px; border: 1px solid var(--line); border-radius: 8px; background: var(--paper); }
.contact-map iframe { display: block; width: 100%; height: 100%; border: 0; }
.store-links { display: grid; gap: 8px; }
.store-link { display: flex; min-height: 54px; align-items: center; gap: 12px; padding: 11px 13px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,250,240,.72); color: var(--ink); font-weight: 800; text-decoration: none; transition: border-color 160ms ease, background 160ms ease, transform 160ms ease; }
.store-link:hover { border-color: var(--pine); background: var(--paper); transform: translateY(-1px); }
.store-icon { display: grid; width: 32px; height: 32px; flex: 0 0 auto; place-items: center; border-radius: 6px; color: white; font: 700 11px/1 var(--bs-mono); }
.store-icon--bricklink { background: var(--brick); }
.store-icon--brickowl { background: var(--teal); }
.store-name { min-width: 0; }
.store-link-arrow { margin-left: auto; color: var(--muted); font: 700 11px/1.2 var(--bs-mono); text-transform: uppercase; }
.store-soon { color: var(--muted); font-weight: 700; }
.store-link--disabled { cursor: not-allowed; opacity: .62; }
.store-link--disabled:hover { border-color: var(--line); background: rgba(255,250,240,.72); transform: none; }
.footer { padding: 24px 0; background: var(--pine-deep); color: rgba(244,239,230,.78); }
.footer-bar { display: grid; grid-template-columns: auto 1fr auto auto auto; align-items: center; gap: 28px; min-height: 48px; }
.footer-brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.footer .wordmark { display: inline-block; color: var(--cream); font-weight: 800; }
.footer .descriptor { color: rgba(244,239,230,.72); font-size: 12px; white-space: nowrap; }
.footer-mono { display: inline-grid; background: var(--cream); color: var(--pine); }
.footer-copy { padding-left: 26px; border-left: 1px solid rgba(244,239,230,.28); color: rgba(244,239,230,.86); font-size: 13px; }
.footer-meta { color: rgba(244,239,230,.68); font-size: 12px; white-space: nowrap; }
.footer-links { display: flex; align-items: center; gap: 14px; font-size: 12px; white-space: nowrap; }
.footer-links a { color: rgba(244,239,230,.78); text-decoration: none; }
.footer-links a:hover { color: var(--cream); }
.footer-actions { display: flex; align-items: center; gap: 12px; }
.footer-actions a { display: flex; width: 32px; height: 32px; align-items: center; justify-content: center; color: var(--cream); text-decoration: none; }
.footer-actions svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.bs-footer { display: none; }

@media (max-width: 980px) {
  .hero { min-height: auto; }
  .hero h1 { min-height: 0; font-size: 52px; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; min-height: 0; padding: 40px 0; }
  .hero-bg::after { background: linear-gradient(180deg, rgba(237, 230, 213, .96) 0%, rgba(237, 230, 213, .93) 50%, rgba(237, 230, 213, .88) 100%); }
  .marketplace-head, .categories-head, .story-grid, .featured-block, .shop-layout > .container, .contact-inner { grid-template-columns: 1fr; }
  .cat-grid, .lot-grid, .footer-grid, .shipping-proof, .rates-grid, .notes-grid, .principles, .timeline { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .cat-grid--count-5 .cat-card,
  .cat-grid--count-5 .cat-card:nth-child(4),
  .cat-grid--count-5 .cat-card:nth-child(5) { grid-column: auto; }
  .featured-meta { padding: 32px; }
  .shop-filters .sidebar { width: 100%; max-width: 100%; position: static; }
}
@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1120px); }
  .hero h1 { font-size: 42px; }
  .stats-row, .cat-grid, .lot-grid, .footer-grid, .shipping-proof, .rates-grid, .notes-grid, .principles, .timeline, .featured-data { grid-template-columns: 1fr; }
  .cat-grid--count-1,
  .cat-grid--count-2,
  .cat-grid--count-3,
  .cat-grid--count-4,
  .cat-grid--count-5 { grid-template-columns: 1fr; }
  .marketplace-grid { grid-template-columns: 1fr; }
  .footer-bottom, .shop-toolbar, .shop-toolbar-actions { display: grid; grid-template-columns: 1fr; }
  .shop-toolbar-actions,
  .shop-search { min-width: 0; width: 100%; }
  .results-head { align-items: flex-start; flex-direction: column; }
  .shop-main .grid.is-list-view .lot-card,
  .shop-main .grid.is-list-view .card { grid-template-columns: 1fr; }
}

/* Trust section */
.trust-section { padding: 26px 0 18px; background: var(--cream); border-top: 1px solid var(--line-light); }
.trust-heading { margin: 0 0 22px; text-align: center; color: var(--ink); font: 700 12px/1.2 var(--bs-mono); letter-spacing: .12em; text-transform: uppercase; }
.trust-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 24px; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 14px; min-width: 0; padding: 0; border: 0; border-radius: 0; background: transparent; text-align: left; }
.trust-icon { flex: 0 0 auto; display: flex; width: 30px; height: 30px; align-items: center; justify-content: center; color: var(--pine-deep); }
.trust-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.trust-label { display: block; margin-bottom: 4px; font: 700 14px/1.2 var(--bs-sans); color: var(--ink); }
.trust-copy { display: block; color: var(--muted); font-size: 11px; line-height: 1.35; }

/* Shop grid 4-col desktop */
.shop-main .lot-grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 26px; }

/* Shop view-item button */
.btn--view-item { height: 42px; border-radius: calc(var(--radius-m) - 2px); border: 1px solid rgba(31,58,46,0.12); background: white; font-weight: 600; color: var(--ink); }

.lot-card.is-selected {
  outline: 2px solid var(--pine);
  outline-offset: 3px;
}

.lot-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin-top: 14px;
}

.cart-select,
.bricklink-open {
  min-height: 38px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: 700 13px var(--bs-sans);
  text-decoration: none;
}

.cart-select {
  border: 1px solid var(--pine);
  background: var(--pine);
  color: var(--paper);
  cursor: pointer;
}

.cart-select:hover,
.cart-select[aria-pressed="true"] {
  border-color: var(--brick);
  background: var(--brick);
  color: var(--paper);
}

.cart-select--disabled,
.cart-select--disabled:hover {
  border-color: rgba(164,66,59,.22);
  background: rgba(164,66,59,.1);
  color: var(--brick);
  cursor: default;
}

.bricklink-open {
  padding: 0 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.64);
  color: var(--ink);
}

.bricklink-open:hover {
  border-color: var(--pine);
}

.lot-card.is-coming-soon {
  border-color: rgba(164,66,59,.28);
}

.mp-link-tiny--soon {
  background: rgba(164,66,59,.1);
  color: var(--brick);
}

.bricklink-cart {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 110;
  width: min(420px, calc(100vw - 32px));
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: rgba(255, 250, 240, .96);
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.bricklink-cart[data-visible="true"] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.bricklink-cart__summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.bricklink-cart__summary > div {
  display: grid;
  gap: 4px;
}

.bricklink-cart__summary-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.bricklink-cart__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--ink);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.bricklink-cart__eyebrow,
.bricklink-cart__summary span,
.bricklink-cart__note {
  color: var(--muted);
  font: 600 11px var(--bs-mono);
  text-transform: uppercase;
}

.bricklink-cart__summary strong {
  color: var(--ink);
  font: 750 18px var(--bs-sans);
}

.bricklink-cart__summary button {
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font: 700 12px var(--bs-sans);
  cursor: pointer;
}

.bricklink-cart__items {
  display: grid;
  gap: 6px;
  max-height: 172px;
  overflow: auto;
  padding: 12px 0;
}

.bricklink-cart__items p {
  margin: 0;
  color: var(--muted);
}

.bricklink-cart__items a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-light);
  color: var(--ink);
  text-decoration: none;
}

.bricklink-cart__items span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}

.bricklink-cart__items strong {
  color: var(--muted);
  font: 600 11px var(--bs-mono);
  white-space: nowrap;
}

.bricklink-cart__note {
  margin: 0 0 12px;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
}

.bricklink-cart__xml {
  width: 100%;
  min-height: 96px;
  margin: 0 0 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font: 600 11px/1.45 var(--bs-mono);
  resize: vertical;
}

.bricklink-cart__xml[hidden] {
  display: none;
}

.bricklink-cart__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.bricklink-cart__primary,
.bricklink-cart__secondary {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font: 800 13px var(--bs-sans);
  cursor: pointer;
}

.bricklink-cart__primary {
  background: var(--pine);
  color: var(--paper);
}

.bricklink-cart__primary:disabled {
  opacity: .48;
  cursor: not-allowed;
}

.bricklink-cart__secondary:disabled {
  opacity: .48;
  cursor: not-allowed;
}

.bricklink-cart__secondary {
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
}

/* Shop bottom trust strip */
.shop-trust-strip { background: rgba(255,255,255,0.72); border-radius: var(--radius-l); padding: 24px 30px; margin-top: 40px; display: flex; align-items: center; justify-content: center; gap: 28px; color: var(--muted); font: 600 13px var(--bs-sans); }
.shop-trust-strip span { display: flex; align-items: center; gap: 8px; }

@media (max-width: 980px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-bar { grid-template-columns: 1fr auto; row-gap: 14px; }
  .footer-copy { grid-column: 1 / -1; grid-row: 2; padding-left: 0; border-left: 0; }
  .footer-meta { justify-self: end; }
  .footer-actions { grid-column: 2; grid-row: 2; justify-self: end; }
  .hero-visual { display: none; }
  .hero-copy { max-width: 100%; }
  .stats-row { grid-template-columns: repeat(3, 1fr); }
  .shop-stats-bar { grid-template-columns: repeat(3, 1fr); }
  .shop-main .lot-grid--4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 680px) {
  .trust-grid { grid-template-columns: 1fr; }
  .footer-bar { grid-template-columns: 1fr; gap: 12px; }
  .footer-brand,
  .footer-copy,
  .footer-meta,
  .footer-links,
  .footer-actions { grid-column: auto; grid-row: auto; justify-self: start; }
  .hero h1 { font-size: 48px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .shop-stats-bar { grid-template-columns: repeat(2, 1fr); }
  .shop-main .lot-grid--4 { grid-template-columns: 1fr; }
  .shop-trust-strip { flex-direction: column; gap: 14px; }
  .lot-actions,
  .bricklink-cart__actions { grid-template-columns: 1fr; }
  .bricklink-cart { right: 12px; bottom: 12px; width: calc(100vw - 24px); }
  .lot-visual--image { min-height: 200px; padding: 16px; }
  .lot-visual--image img { height: 168px; }
  .shop-main .lot-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .favorite-series-image { height: 110px; }
  .shop-toolbar { flex-direction: column; align-items: stretch; }
  .chips { overflow-x: auto; flex-wrap: nowrap; }
  .bricklink-cart__toggle { display: flex; }
  .bricklink-cart[data-collapsed="true"] .bricklink-cart__body { display: none; }
  .bricklink-cart[data-collapsed="true"] .bricklink-cart__summary { border-bottom: none; padding-bottom: 0; }
}

.cat-grid.favorite-cat-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.cat-grid.favorite-cat-grid > .favorite-series-card {
  flex: 0 1 calc((100% - (var(--favorite-cat-columns, 5) - 1) * 14px) / var(--favorite-cat-columns, 5));
  min-width: 190px;
}
.favorite-series-card { display: flex; flex-direction: column; min-height: 260px; padding: 18px; }
.favorite-series-image { display: flex; align-items: center; justify-content: center; height: 86px; margin: 0 0 14px; padding: 6px; border-radius: 8px; background: rgba(255,255,255,.46); }
.favorite-series-image img { display: block; max-width: 100%; max-height: 100%; object-fit: contain; }
.favorite-series-image:empty,
.favorite-series-image.is-empty { background: linear-gradient(135deg, rgba(20,56,45,.12), rgba(164,66,59,.12)); }
.favorite-series-card .cat-card-name { margin-top: 0; font-size: 24px; line-height: 1; }
.favorite-series-card .subtle { margin: 10px 0 14px; line-height: 1.45; }
.favorite-series-soon { display: inline-flex; width: fit-content; margin: 0 0 12px; padding: 5px 8px; border-radius: 6px; background: rgba(164,66,59,.1); color: var(--brick); font: 700 11px/1.2 var(--bs-sans); }
.favorite-series-card .cat-card-count { margin-top: auto; }

@media (max-width: 980px) {
  .cat-grid.favorite-cat-grid > .favorite-series-card { flex-basis: calc((100% - 14px) / 2); }
}

@media (max-width: 680px) {
  .cat-grid.favorite-cat-grid > .favorite-series-card { flex-basis: calc((100% - 14px) / 2); min-width: 0; }
  .cat-tile { min-height: 190px; }
  .cat-tile-name { font-size: 22px; }
}

/* Real inventory imagery for recent arrival cards */
.lot-visual--image {
  background:
    linear-gradient(rgba(255,253,247,.62), rgba(255,253,247,.62)),
    radial-gradient(circle, rgba(31,33,29,.12) 1px, transparent 1.5px);
  background-size: auto, 18px 18px;
  min-height: 168px;
  padding: 38px 16px 18px;
}
.lot-visual--image img {
  display: block;
  width: 100%;
  height: 132px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 12px 18px rgba(31,33,29,.14));
}
.lot-card:hover .lot-visual--image img {
  transform: scale(1.04);
}
.lot-visual--image img {
  transition: transform 180ms ease;
}

@media (max-width: 480px) {
  .hero-bg { display: none; }
  .hero { background: var(--cream); }
  .hero h1 { font-size: 40px; }
  .hero-grid { padding: 32px 0 24px; }
  .shop-main .lot-grid--3 { grid-template-columns: 1fr; }
  .bs-nav { grid-template-columns: 1fr auto auto; }
  .bs-wordmark { font-size: 13px; }
  .bs-descriptor { display: none; }
  .stat { gap: 8px; }
  .stat-icon { width: 34px; height: 34px; }
  .stat-icon svg { width: 20px; height: 20px; }
  .stat-num { font-size: 18px; }
  .stat-num--text { font-size: 13px; }
  .stat-label { font-size: 11px; }
  .favorite-series-card { padding: 12px; min-height: 0; }
  .favorite-series-card .cat-card-name { font-size: 17px; }
  .favorite-series-card .subtle { font-size: 12px; }
}
