:root {
  --ink: #111210;
  --paper: #f3f1eb;
  --white: #fffefa;
  --muted: #77776f;
  --line: #d8d5cc;
  --lime: #b8ee30;
  --red: #ef533f;
  --blue: #3ba7d8;
  --yellow: #f4bd32;
  --radius: 6px;
  --shell: min(1420px, calc(100% - 64px));
  --font: "Noto Sans TC", sans-serif;
  --display: "Barlow Condensed", "Noto Sans TC", sans-serif;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

body.locked {
  overflow: hidden;
}

button,
input,
select {
  color: inherit;
  font: inherit;
}

button,
a,
select {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.utility-bar {
  min-height: 31px;
  color: #d5d5cd;
  background: var(--ink);
  border-bottom: 1px solid #30312e;
  font-size: 11px;
  font-weight: 600;
}

.utility-inner,
.utility-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.utility-inner {
  min-height: 31px;
}

.utility-inner p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.utility-links {
  gap: 24px;
}

.utility-links a:hover {
  color: var(--lime);
}

.currency-button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  font-size: inherit;
  font-weight: inherit;
}

.currency-button svg {
  width: 13px;
  height: 13px;
}

.live-dot {
  display: inline-block;
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(239, 83, 63, .16);
  animation: livePulse 1.8s infinite;
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(239, 83, 63, .13); }
  50% { box-shadow: 0 0 0 7px rgba(239, 83, 63, 0); }
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.header-main {
  display: grid;
  grid-template-columns: 230px minmax(300px, 680px) 1fr;
  align-items: center;
  gap: 28px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  color: var(--ink);
  background: var(--lime);
  border: 2px solid var(--ink);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  transform: rotate(-3deg);
}

.brand-name {
  font-family: var(--display);
  font-size: 25px;
  font-weight: 800;
  line-height: .75;
}

.brand-name > span {
  color: var(--red);
}

.brand-name small {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
}

.global-search,
.mobile-search {
  display: flex;
  align-items: center;
  min-height: 43px;
  background: #efeee8;
  border: 1px solid transparent;
  border-radius: var(--radius);
}

.global-search:focus-within,
.mobile-search:focus-within {
  background: var(--white);
  border-color: var(--ink);
}

.global-search svg,
.mobile-search svg {
  flex: 0 0 auto;
  margin: 0 12px 0 15px;
  color: #65665f;
}

.global-search input,
.mobile-search input {
  min-width: 0;
  flex: 1;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 13px;
}

.global-search input::placeholder,
.mobile-search input::placeholder {
  color: #777870;
}

.global-search kbd {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  margin-right: 9px;
  color: #777870;
  background: var(--white);
  border: 1px solid #d8d6cf;
  border-radius: 4px;
  font-family: var(--font);
  font-size: 11px;
}

.header-actions {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 8px;
}

.header-action {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-width: 64px;
  padding: 6px 10px;
  background: transparent;
  border: 0;
  font-size: 10px;
  font-weight: 600;
}

.header-action:hover {
  background: #efeee8;
}

.header-action svg {
  width: 21px;
  height: 21px;
}

.cart-count {
  position: absolute;
  top: 1px;
  right: 5px;
  display: grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  color: var(--white);
  background: var(--red);
  border: 2px solid var(--white);
  border-radius: 20px;
  font-size: 9px;
}

.main-nav {
  border-top: 1px solid #eceae4;
}

.nav-inner {
  display: flex;
  align-items: center;
  min-height: 44px;
}

.nav-inner > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 44px;
  margin-right: 31px;
  border-bottom: 2px solid transparent;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-inner > a:hover {
  color: #a53425;
  border-bottom-color: var(--red);
}

.nav-inner svg {
  width: 13px;
  height: 13px;
}

.nav-badge {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 17px;
  padding: 0 5px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 20px;
  font-family: var(--display);
  font-size: 11px;
}

.nav-live {
  color: var(--red);
  font-family: var(--display);
  font-size: 10px;
}

.nav-inner .nav-sale {
  margin-right: 0;
  margin-left: auto;
  color: #b33325;
}

.menu-button,
.mobile-menu,
.mobile-search,
.scrim {
  display: none;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.icon-button:hover {
  background: #e9e7df;
  border-color: #a7a59d;
}

.hero {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  color: var(--white);
  background: #111210;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1606167668584-78701c57f13d?auto=format&fit=crop&w=2000&q=88");
  background-position: center 45%;
  background-size: cover;
  opacity: .5;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 12, 10, .96) 0%, rgba(11, 12, 10, .83) 43%, rgba(11, 12, 10, .14) 100%);
}

.hero::after {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: calc(100% - 44px);
  background: rgba(255, 255, 255, .1);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 486px;
}

.hero-copy {
  align-self: center;
  max-width: 620px;
  padding: 48px 60px 54px 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d5d5cd;
}

.eyebrow span {
  padding: 5px 8px;
  color: var(--ink);
  background: var(--lime);
}

.hero h1 {
  margin: 0;
  font-size: clamp(46px, 5.4vw, 78px);
  font-weight: 800;
  line-height: 1.08;
}

.hero h1 strong {
  position: relative;
  z-index: 1;
  font-weight: 800;
}

.hero h1 strong::after {
  position: absolute;
  z-index: -1;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 13px;
  background: var(--red);
  content: "";
  transform: rotate(-1deg);
}

.hero-description {
  max-width: 505px;
  margin: 22px 0 0;
  color: #c8c8c0;
  font-size: 14px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.button svg {
  width: 17px;
  height: 17px;
}

.button-primary {
  color: var(--ink);
  background: var(--lime);
}

.button-primary:hover,
.bid-button:hover {
  background: #c9ff3d;
  transform: translateY(-1px);
}

.button-ghost {
  color: var(--white);
  background: rgba(20, 21, 19, .68);
  border-color: rgba(255, 255, 255, .3);
}

.button-ghost:hover {
  border-color: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  background: #33342f;
}

.button-outline {
  background: transparent;
  border-color: var(--ink);
}

.button-outline:hover {
  color: var(--white);
  background: var(--ink);
}

.hero-stats {
  display: flex;
  gap: 0;
  margin: 33px 0 0;
}

.hero-stats > div {
  min-width: 118px;
  padding: 0 21px;
  border-left: 1px solid rgba(255, 255, 255, .2);
}

.hero-stats > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-stats dt {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
}

.hero-stats dd {
  margin: 1px 0 0;
  color: #a5a69f;
  font-size: 10px;
}

.hero-display {
  position: relative;
  min-height: 440px;
  margin: 22px 0 22px 40px;
}

.display-label {
  position: absolute;
  top: 23px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}

.display-label span {
  color: var(--ink);
  background: var(--white);
  padding: 3px 6px;
  font-family: var(--display);
  font-weight: 700;
}

.hero-card {
  position: absolute;
  bottom: 45px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 190px;
  height: 270px;
  padding: 16px;
  overflow: hidden;
  border: 7px solid #dfded8;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
  transform-origin: bottom center;
}

.hero-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--card-art);
  background-position: center;
  background-size: cover;
  content: "";
}

.hero-card::after {
  position: absolute;
  inset: 45% 0 0;
  z-index: -1;
  background: linear-gradient(transparent, rgba(7, 8, 7, .9));
  content: "";
}

.hero-card > span {
  align-self: flex-start;
  padding: 2px 5px;
  color: var(--ink);
  background: var(--lime);
  font-family: var(--display);
  font-weight: 800;
}

.hero-card small {
  margin-top: 7px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 800;
  line-height: .94;
}

.hero-card-one {
  left: 4%;
  --card-art: url("https://images.unsplash.com/photo-1519608487953-e999c86e7455?auto=format&fit=crop&w=700&q=82");
  transform: rotate(-12deg) translateY(-4px);
}

.hero-card-two {
  left: 26%;
  z-index: 2;
  --card-art: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=700&q=82");
  transform: rotate(-2deg) translateY(-18px);
}

.hero-card-three {
  left: 50%;
  z-index: 3;
  --card-art: url("https://images.unsplash.com/photo-1531058020387-3be344556be6?auto=format&fit=crop&w=700&q=82");
  transform: rotate(9deg) translateY(-2px);
}

.hero-card-three > span {
  background: var(--red);
}

.hero-box {
  position: absolute;
  right: 0;
  bottom: 25px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 205px;
  height: 150px;
  padding: 19px;
  overflow: hidden;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  box-shadow: 12px 14px 0 rgba(0, 0, 0, .3);
  transform: rotate(-3deg);
}

.hero-box::before {
  position: absolute;
  top: -45px;
  right: -25px;
  width: 135px;
  height: 135px;
  background: var(--red);
  border: 16px solid var(--ink);
  border-radius: 50%;
  content: "";
}

.hero-box .box-top,
.hero-box b,
.hero-box span,
.hero-box small {
  position: relative;
}

.hero-box .box-top {
  margin-bottom: auto;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
}

.hero-box b {
  font-family: var(--display);
  font-size: 35px;
  line-height: .8;
}

.hero-box span {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 800;
}

.hero-box small {
  margin-top: 3px;
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
}

.hero-price {
  position: absolute;
  right: 26px;
  bottom: 203px;
  z-index: 6;
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--lime);
  border: 2px solid var(--ink);
  transform: rotate(3deg);
}

.hero-price small {
  grid-column: 1 / -1;
  font-size: 9px;
  font-weight: 700;
}

.hero-price strong {
  font-family: var(--display);
  font-size: 27px;
  line-height: .9;
}

.hero-price span {
  margin-left: 4px;
  font-family: var(--display);
  font-size: 10px;
}

.ticker {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  height: 44px;
  overflow: hidden;
  color: var(--ink);
  background: var(--lime);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 800;
  line-height: 40px;
  white-space: nowrap;
}

.ticker div {
  width: max-content;
  animation: ticker 28s linear infinite;
}

.ticker span {
  margin: 0 28px;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.game-section,
.catalog-section,
.singles-section,
.decks-section {
  padding: 68px 0;
}

.game-section {
  padding-bottom: 58px;
  background: var(--paper);
}

.section-heading,
.auction-heading,
.singles-toolbar,
.auction-footer,
.singles-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading {
  margin-bottom: 28px;
}

.compact-heading {
  margin-bottom: 22px;
}

.section-heading h2,
.auction-heading h2,
.drawer-head h2,
.bid-dialog h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.15;
}

.section-kicker {
  color: #696961;
  font-size: 12px;
}

.section-kicker.lime {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--lime);
}

.rail-controls {
  display: flex;
  gap: 7px;
}

.game-rail {
  display: grid;
  grid-auto-columns: minmax(180px, 1fr);
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  padding: 2px 2px 13px;
  scrollbar-color: #a9a79f transparent;
  scrollbar-width: thin;
  scroll-snap-type: x mandatory;
}

.game-tile {
  position: relative;
  min-height: 202px;
  overflow: hidden;
  color: var(--white);
  background: #242520;
  border: 1px solid #242520;
  border-radius: var(--radius);
  scroll-snap-align: start;
  text-align: left;
}

.game-tile::before {
  position: absolute;
  inset: 0;
  background-image: var(--game-art);
  background-position: center;
  background-size: cover;
  content: "";
  filter: saturate(.75);
  opacity: .72;
  transition: transform .4s ease, opacity .3s ease;
}

.game-tile::after {
  position: absolute;
  inset: 30% 0 0;
  background: linear-gradient(transparent, rgba(10, 11, 9, .94));
  content: "";
}

.game-tile:hover::before,
.game-tile.active::before {
  opacity: .9;
  transform: scale(1.04);
}

.game-tile.active {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px var(--lime);
}

.game-tile-content {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  left: 14px;
}

.game-code {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 5px;
  color: var(--ink);
  background: var(--game-accent, var(--lime));
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
}

.game-tile h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 800;
  line-height: .92;
  text-transform: uppercase;
}

.game-tile p {
  display: flex;
  justify-content: space-between;
  margin: 9px 0 0;
  color: #c5c6be;
  font-size: 10px;
}

.catalog-section {
  background-color: var(--white);
  background-image: linear-gradient(#eceae3 1px, transparent 1px), linear-gradient(90deg, #eceae3 1px, transparent 1px);
  background-size: 48px 48px;
}

.catalog-heading {
  margin-bottom: 22px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.text-link:hover {
  color: #b33325;
  border-color: var(--red);
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 23px;
  padding: 12px;
  background: rgba(243, 241, 235, .94);
  border: 1px solid var(--line);
}

.segmented {
  display: inline-flex;
  gap: 3px;
  padding: 3px;
  background: #dfddd5;
  border-radius: 5px;
}

.segmented button {
  min-width: 62px;
  min-height: 34px;
  padding: 0 14px;
  background: transparent;
  border: 0;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
}

.segmented button.active {
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
}

.select-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.select-group select,
.set-select select {
  min-height: 40px;
  padding: 0 38px 0 13px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}

.filter-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 13px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

.active-filter {
  align-items: center;
  width: max-content;
  max-width: 100%;
  gap: 5px;
  margin: -11px 0 21px;
  padding: 5px 6px 5px 10px;
  background: var(--lime);
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
}

.active-filter:not([hidden]) {
  display: flex;
}

.active-filter button {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  padding: 0;
  background: transparent;
  border: 0;
}

.active-filter svg {
  width: 13px;
  height: 13px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.product-card:hover {
  border-color: #95948d;
  box-shadow: 0 13px 25px rgba(31, 31, 27, .08);
  transform: translateY(-3px);
}

.product-visual {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1.28 / 1;
  overflow: hidden;
  background: #dedbd2;
}

.product-visual::before {
  position: absolute;
  inset: 0;
  background-image: var(--art);
  background-position: center;
  background-size: cover;
  content: "";
  filter: saturate(.75) contrast(.92);
  opacity: .62;
  transition: transform .4s ease;
}

.product-card:hover .product-visual::before {
  transform: scale(1.035);
}

.product-visual::after {
  position: absolute;
  inset: 0;
  background: rgba(15, 16, 14, .16);
  content: "";
}

.product-box {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 46%;
  min-width: 126px;
  aspect-ratio: 1.32 / 1;
  padding: 11px;
  color: var(--box-ink, var(--white));
  background: var(--accent);
  border: 2px solid var(--ink);
  box-shadow: 10px 11px 0 rgba(16, 17, 15, .28);
  transform: rotate(-3deg);
}

.product-box::before {
  position: absolute;
  top: -19%;
  right: -12%;
  width: 65%;
  aspect-ratio: 1;
  background: var(--accent-two);
  border: 7px solid var(--ink);
  border-radius: 50%;
  content: "";
}

.product-box span,
.product-box b,
.product-box small {
  position: relative;
}

.product-box span {
  font-family: var(--display);
  font-size: 9px;
  font-weight: 800;
}

.product-box b {
  margin-top: auto;
  font-family: var(--display);
  font-size: 25px;
  line-height: .82;
  text-transform: uppercase;
}

.product-box small {
  margin-top: 4px;
  font-size: 7px;
  font-weight: 700;
}

.product-badges {
  position: absolute;
  z-index: 4;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 5px;
}

.status-badge {
  padding: 4px 7px;
  color: var(--white);
  background: var(--ink);
  border-radius: 3px;
  font-size: 9px;
  font-weight: 800;
}

.status-badge.preorder {
  color: var(--ink);
  background: var(--lime);
}

.status-badge.new {
  background: var(--red);
}

.wish-button {
  position: absolute;
  z-index: 4;
  top: 9px;
  right: 9px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  background: rgba(255, 254, 250, .9);
  border: 1px solid rgba(17, 18, 16, .15);
  border-radius: 50%;
}

.wish-button svg {
  width: 16px;
  height: 16px;
}

.wish-button.active {
  color: var(--red);
  background: var(--white);
}

.wish-button.active svg {
  fill: currentColor;
}

.product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 15px;
}

.product-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.stock-label {
  color: #4f7510;
  font-family: var(--font);
  font-size: 9px;
}

.stock-label.low {
  color: #c13b2c;
}

.product-info h3 {
  min-height: 46px;
  margin: 8px 0 4px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.product-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.product-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

.price-block {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px;
}

.price-block strong {
  font-family: var(--display);
  font-size: 24px;
  line-height: 1;
}

.price-block span {
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
}

.price-block del {
  width: 100%;
  color: #999991;
  font-size: 9px;
}

.add-button {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 39px;
  height: 39px;
  padding: 0;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 4px;
}

.add-button:hover {
  color: var(--ink);
  background: var(--lime);
}

.add-button:disabled {
  color: #92938b;
  background: #d8d6cf;
  border-color: #c3c1b9;
  cursor: not-allowed;
}

.empty-state {
  padding: 60px 20px;
  text-align: center;
  background: var(--white);
  border: 1px dashed #aaa89f;
}

.empty-state svg {
  width: 42px;
  height: 42px;
  margin: 0 auto 12px;
  color: #8d8d85;
}

.empty-state h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.empty-state p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 12px;
}

.auction-section {
  padding: 70px 0 62px;
  color: var(--white);
  background-color: var(--ink);
  background-image: radial-gradient(#2e2f2b 1px, transparent 1px);
  background-size: 20px 20px;
  border-top: 5px solid var(--lime);
}

.auction-heading {
  align-items: flex-end;
  margin-bottom: 29px;
}

.auction-status {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 11px;
}

.auction-status span {
  color: #96978f;
}

.auction-status b {
  padding: 6px 9px;
  color: var(--ink);
  background: var(--lime);
}

.auction-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.36fr) minmax(330px, .64fr);
  gap: 24px;
}

.featured-lot {
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(300px, 1.05fr);
  min-width: 0;
  background: #1c1d1a;
  border: 1px solid #3a3b36;
  border-radius: var(--radius);
}

.featured-lot-art {
  position: relative;
  display: grid;
  min-height: 435px;
  place-items: center;
  overflow: hidden;
  background-image: url("https://images.unsplash.com/photo-1519608487953-e999c86e7455?auto=format&fit=crop&w=1100&q=88");
  background-position: center;
  background-size: cover;
  border-right: 1px solid #3a3b36;
}

.featured-lot-art::after {
  position: absolute;
  inset: 0;
  background: rgba(7, 8, 7, .32);
  content: "";
}

.lot-number {
  position: absolute;
  z-index: 4;
  top: 14px;
  left: 14px;
  padding: 7px 9px;
  color: var(--ink);
  background: var(--lime);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  line-height: .9;
}

.lot-number strong {
  font-size: 20px;
}

.graded-card {
  position: relative;
  z-index: 2;
  width: 185px;
  padding: 9px;
  color: var(--ink);
  background: rgba(242, 245, 238, .72);
  border: 3px solid rgba(255, 255, 255, .8);
  border-radius: 7px;
  box-shadow: 0 25px 45px rgba(0, 0, 0, .45);
  transform: rotate(-2deg);
  backdrop-filter: blur(5px);
}

.slab-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  padding: 0 7px;
  background: var(--white);
  border: 1px solid #a2a69e;
  font-family: var(--display);
  font-size: 10px;
}

.slab-label span {
  color: #15735e;
  font-size: 23px;
  font-weight: 800;
}

.slab-art {
  position: relative;
  display: flex;
  height: 242px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  background-image: url("https://images.unsplash.com/photo-1482192505345-5655af888cc4?auto=format&fit=crop&w=650&q=86");
  background-position: center;
  background-size: cover;
  border: 8px solid #e4e0cf;
}

.slab-art::after {
  position: absolute;
  inset: 0;
  background: rgba(8, 9, 8, .2);
  content: "";
}

.slab-art span,
.slab-art small {
  position: relative;
  z-index: 2;
}

.slab-art span {
  font-family: var(--display);
  font-size: 72px;
  font-weight: 800;
  line-height: .8;
}

.slab-art small {
  margin-top: 12px;
  padding: 3px 6px;
  color: var(--ink);
  background: var(--lime);
  font-family: var(--display);
  font-weight: 800;
}

.graded-card p {
  margin: 8px 2px 1px;
  font-family: var(--display);
  font-size: 9px;
  font-weight: 800;
  text-align: center;
}

.inspect-label {
  position: absolute;
  z-index: 4;
  right: 13px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #d9dad2;
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
}

.inspect-label svg {
  width: 14px;
  height: 14px;
}

.featured-lot-info {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
}

.lot-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.lot-meta span {
  padding: 4px 6px;
  color: #c7c8c0;
  border: 1px solid #4c4d48;
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
}

.featured-lot-info h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1.05;
}

.featured-lot-info h3 span {
  color: #95968e;
  font-size: 15px;
}

.bid-line {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 16px;
  margin: 30px 0 21px;
  padding: 17px 0;
  border-top: 1px solid #41423d;
  border-bottom: 1px solid #41423d;
}

.bid-line > div {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 5px;
}

.bid-line small {
  width: 100%;
  margin-bottom: 6px;
  color: #999a92;
  font-size: 10px;
}

.bid-line strong {
  font-family: var(--display);
  font-size: 31px;
  line-height: 1;
}

.bid-line span {
  color: #aaa9a1;
  font-family: var(--display);
  font-size: 9px;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
}

.countdown > span {
  margin-right: auto;
  color: #a9aaa2;
  font-size: 10px;
}

.countdown b {
  display: grid;
  place-items: center;
  width: 35px;
  height: 32px;
  color: var(--ink);
  background: var(--white);
  border-radius: 3px;
  font-family: var(--display);
  font-size: 18px;
}

.countdown em {
  color: #787970;
  font-style: normal;
}

.bid-button {
  width: 100%;
  color: var(--ink);
  background: var(--lime);
}

.lot-list {
  display: grid;
  gap: 10px;
}

.lot-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  min-width: 0;
  overflow: hidden;
  background: #1c1d1a;
  border: 1px solid #3a3b36;
  border-radius: var(--radius);
}

.lot-card-art {
  position: relative;
  min-height: 137px;
  background-image: var(--lot-art);
  background-position: center;
  background-size: cover;
}

.lot-card-art::after {
  position: absolute;
  inset: 0;
  background: rgba(7, 8, 7, .2);
  content: "";
}

.lot-card-art span {
  position: absolute;
  z-index: 2;
  top: 7px;
  left: 7px;
  padding: 3px 5px;
  color: var(--ink);
  background: var(--white);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 800;
}

.mini-card {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 39px;
  display: grid;
  width: 58px;
  height: 83px;
  place-items: center;
  color: var(--white);
  background: rgba(10, 11, 9, .6);
  border: 4px solid #e5e3da;
  border-radius: 4px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
  transform: rotate(5deg);
}

.lot-card-info {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 14px 15px;
}

.lot-card-info > span {
  color: #90918a;
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
}

.lot-card-info h3 {
  overflow: hidden;
  margin: 5px 0 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lot-card-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}

.lot-card-price small {
  display: block;
  color: #85867e;
  font-size: 8px;
}

.lot-card-price strong {
  font-family: var(--display);
  font-size: 19px;
}

.lot-bid-button {
  display: inline-grid;
  place-items: center;
  width: 33px;
  height: 33px;
  padding: 0;
  color: var(--ink);
  background: var(--lime);
  border: 0;
  border-radius: 3px;
}

.lot-bid-button svg {
  width: 15px;
  height: 15px;
}

.auction-footer {
  align-items: center;
  margin-top: 18px;
  color: #9b9c94;
  font-size: 10px;
}

.auction-footer p,
.auction-footer a {
  display: flex;
  align-items: center;
  gap: 7px;
}

.auction-footer p {
  margin: 0;
}

.auction-footer a {
  color: var(--white);
  font-weight: 700;
}

.auction-footer svg {
  width: 15px;
  height: 15px;
}

.singles-section {
  background: var(--paper);
}

.singles-heading {
  align-items: center;
}

.market-pulse {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 10px;
}

.market-pulse svg {
  width: 15px;
  height: 15px;
  color: #3f7d17;
}

.market-pulse strong {
  font-family: var(--display);
  font-size: 15px;
}

.singles-toolbar {
  align-items: stretch;
  margin-bottom: 16px;
  border-bottom: 1px solid #bdbbb2;
}

.singles-game-tabs {
  display: flex;
  min-width: 0;
  overflow-x: auto;
}

.singles-game-tabs button {
  position: relative;
  min-width: max-content;
  padding: 15px 18px;
  background: transparent;
  border: 0;
  color: #797970;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.singles-game-tabs button.active {
  color: var(--ink);
}

.singles-game-tabs button.active::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--red);
  content: "";
}

.set-select {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  padding-bottom: 9px;
  font-size: 10px;
  font-weight: 700;
}

.singles-table-wrap {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.singles-table-head,
.single-row {
  display: grid;
  grid-template-columns: minmax(280px, 1.5fr) minmax(130px, .7fr) minmax(90px, .55fr) minmax(100px, .5fr) 52px;
  align-items: center;
  gap: 16px;
}

.singles-table-head {
  min-height: 38px;
  padding: 0 16px;
  color: #85857d;
  background: #eeece5;
  border-bottom: 1px solid var(--line);
  font-size: 9px;
  font-weight: 700;
}

.single-row {
  min-height: 100px;
  padding: 11px 16px;
  border-bottom: 1px solid #e4e2db;
}

.single-row:last-child {
  border-bottom: 0;
}

.single-card-name {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 15px;
}

.single-thumb {
  position: relative;
  display: grid;
  width: 53px;
  height: 74px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background-image: var(--single-art);
  background-position: center;
  background-size: cover;
  border: 4px solid #dedcd4;
  border-radius: 4px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
}

.single-thumb::after {
  position: absolute;
  inset: 0;
  background: rgba(12, 13, 11, .2);
  content: "";
}

.single-thumb span {
  position: relative;
  z-index: 1;
}

.single-card-name h3 {
  overflow: hidden;
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.single-card-name p,
.single-code small {
  margin: 0;
  color: #87877f;
  font-size: 9px;
}

.single-code strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: 12px;
}

.rarity {
  display: inline-block;
  padding: 3px 5px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 3px;
  font-size: 8px;
  font-weight: 800;
}

.condition {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
}

.condition::before {
  width: 7px;
  height: 7px;
  background: #4c9b31;
  border-radius: 50%;
  content: "";
}

.single-price strong {
  display: block;
  font-family: var(--display);
  font-size: 20px;
}

.single-price small {
  color: #818179;
  font-size: 8px;
}

.single-add {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 4px;
}

.single-add:hover {
  background: var(--lime);
}

.singles-bottom {
  align-items: center;
  margin-top: 18px;
}

.singles-bottom p {
  margin: 0;
  color: #74746c;
  font-size: 10px;
}

.decks-section {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.deck-game-tabs {
  display: flex;
  gap: 6px;
  margin: -6px 0 20px;
  overflow-x: auto;
  padding: 6px 2px 8px;
  scrollbar-width: thin;
}

.deck-game-tabs button {
  min-width: max-content;
  min-height: 34px;
  padding: 0 13px;
  color: #686860;
  background: #efede7;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.deck-game-tabs button.active {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: inset 0 -3px var(--lime);
}

.meta-overview {
  display: grid;
  grid-template-columns: 245px 1fr;
  gap: 24px;
}

.meta-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 333px;
  padding: 25px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
}

.chart-ring {
  display: flex;
  width: 150px;
  height: 150px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  background: var(--ink);
  border: 20px solid var(--red);
  border-top-color: var(--lime);
  border-right-color: var(--blue);
  border-radius: 50%;
  transform: rotate(15deg);
}

.chart-ring > * {
  transform: rotate(-15deg);
}

.chart-ring span,
.chart-ring small {
  color: #aaa9a1;
  font-family: var(--display);
  font-size: 8px;
  font-weight: 700;
}

.chart-ring strong {
  font-family: var(--display);
  font-size: 30px;
  line-height: 1;
}

.chart-legend {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 13px;
  width: 100%;
  color: #c2c3bb;
  font-size: 9px;
}

.chart-legend span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.chart-legend i {
  width: 7px;
  height: 7px;
  background: var(--legend);
  border-radius: 50%;
}

.deck-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}

.deck-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 18px;
  background: #f5f3ed;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.deck-card-top,
.deck-title,
.deck-stat-line,
.deck-colors,
.deck-card-footer {
  display: flex;
  align-items: center;
}

.deck-card-top {
  justify-content: space-between;
  color: #73736b;
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
}

.trend-up {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #397b20;
}

.trend-up svg {
  width: 12px;
  height: 12px;
}

.deck-title {
  gap: 10px;
  margin: 17px 0;
}

.deck-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background-image: var(--deck-art);
  background-position: center;
  background-size: cover;
  border: 3px solid var(--ink);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 800;
}

.deck-title h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.3;
}

.deck-title p {
  margin: 3px 0 0;
  color: #797970;
  font-size: 9px;
}

.deck-stat-line {
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid #d8d5cc;
  border-bottom: 1px solid #d8d5cc;
}

.deck-stat-line div {
  display: flex;
  flex-direction: column;
}

.deck-stat-line small {
  color: #85857d;
  font-size: 8px;
}

.deck-stat-line strong {
  margin-top: 2px;
  font-family: var(--display);
  font-size: 17px;
}

.deck-card-footer {
  justify-content: space-between;
  margin-top: auto;
  padding-top: 15px;
}

.deck-colors {
  gap: 4px;
}

.deck-colors i {
  width: 12px;
  height: 12px;
  background: var(--mana);
  border: 1px solid rgba(17, 18, 16, .2);
  border-radius: 50%;
}

.deck-card-footer button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  background: transparent;
  border: 0;
  font-size: 10px;
  font-weight: 800;
}

.deck-card-footer svg {
  width: 14px;
  height: 14px;
}

.service-strip {
  padding: 25px 0;
  background: var(--lime);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service-grid > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border-right: 1px solid rgba(17, 18, 16, .28);
}

.service-grid > div:last-child {
  border-right: 0;
}

.service-grid svg {
  width: 27px;
  height: 27px;
  stroke-width: 1.6;
}

.service-grid span {
  display: flex;
  flex-direction: column;
}

.service-grid b {
  font-size: 12px;
}

.service-grid small {
  margin-top: 2px;
  color: #535b3b;
  font-size: 9px;
}

footer {
  color: #deded6;
  background: #111210;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.7fr 1fr;
  gap: 70px;
  padding-top: 60px;
  padding-bottom: 56px;
}

.brand.inverse .brand-name {
  color: var(--white);
}

.footer-brand > p {
  margin: 22px 0;
  color: #8d8e86;
  font-size: 11px;
}

.socials {
  display: flex;
  gap: 7px;
}

.socials a {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid #41423d;
  border-radius: 4px;
}

.socials a:hover {
  color: var(--lime);
  border-color: var(--lime);
}

.socials svg {
  width: 16px;
  height: 16px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.footer-links h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-family: var(--display);
  font-size: 12px;
  text-transform: uppercase;
}

.footer-links a,
.footer-links p {
  display: block;
  margin: 0 0 10px;
  color: #92938b;
  font-size: 10px;
  line-height: 1.8;
}

.footer-links a:hover {
  color: var(--white);
}

.newsletter h3 {
  margin: 0 0 20px;
  color: var(--white);
  font-size: 21px;
  line-height: 1.45;
}

.newsletter form {
  display: flex;
  border-bottom: 1px solid #777870;
}

.newsletter input {
  min-width: 0;
  flex: 1;
  padding: 12px 0;
  color: var(--white);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 11px;
}

.newsletter button {
  display: grid;
  width: 40px;
  place-items: center;
  color: var(--lime);
  background: transparent;
  border: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  color: #686961;
  border-top: 1px solid #353632;
  font-family: var(--display);
  font-size: 9px;
}

.footer-bottom a:hover {
  color: var(--white);
}

.cart-drawer {
  position: fixed;
  z-index: 60;
  top: 0;
  right: 0;
  display: flex;
  width: min(430px, 100%);
  height: 100dvh;
  flex-direction: column;
  padding: 24px;
  background: var(--white);
  box-shadow: -20px 0 50px rgba(0, 0, 0, .17);
  transform: translateX(105%);
  transition: transform .28s ease;
}

.cart-drawer.open {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.drawer-head h2 span {
  color: var(--red);
}

.cart-empty {
  display: grid;
  flex: 1;
  place-items: center;
  align-content: center;
  text-align: center;
}

.cart-empty > svg {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  color: #93938b;
}

.cart-empty h3 {
  margin: 0 0 6px;
  font-size: 17px;
}

.cart-empty p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 11px;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
}

.cart-item {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item-art {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  color: var(--white);
  background-image: var(--cart-art);
  background-position: center;
  background-size: cover;
  border-radius: 4px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
}

.cart-item-info h3 {
  margin: 0 0 5px;
  font-size: 11px;
  line-height: 1.5;
}

.cart-item-info span {
  color: var(--muted);
  font-size: 9px;
}

.cart-item-info strong {
  display: block;
  margin-top: 7px;
  font-family: var(--display);
  font-size: 17px;
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 9px;
}

.cart-qty button {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
}

.cart-qty button:hover {
  background: var(--lime);
}

.cart-qty svg {
  width: 11px;
  height: 11px;
}

.cart-qty b {
  min-width: 18px;
  font-family: var(--display);
  font-size: 12px;
  text-align: center;
}

.cart-remove {
  align-self: start;
  padding: 3px;
  color: #87877f;
  background: transparent;
  border: 0;
}

.cart-remove svg {
  width: 15px;
  height: 15px;
}

.cart-summary {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.cart-summary > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.cart-summary > div span {
  font-size: 11px;
  font-weight: 700;
}

.cart-summary > div strong {
  font-family: var(--display);
  font-size: 27px;
}

.cart-summary p {
  margin: 4px 0 15px;
  color: var(--muted);
  font-size: 9px;
}

.cart-summary .button {
  width: 100%;
}

.cart-summary .button:disabled {
  color: #a8a8a1;
  background: #3a3b37;
  cursor: wait;
}

.checkout-notice {
  padding: 9px 10px;
  color: #a53425 !important;
  background: #fae8e3;
  border-left: 3px solid var(--red);
  font-size: 9px !important;
  line-height: 1.55;
}

.payment-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  color: #777870;
  font-size: 8px;
}

.payment-trust svg {
  width: 13px;
  height: 13px;
  color: #4c7c32;
}

.scrim {
  position: fixed;
  z-index: 50;
  inset: 0;
  background: rgba(9, 10, 8, .58);
  backdrop-filter: blur(2px);
}

.scrim.open {
  display: block;
}

.bid-dialog {
  width: min(440px, calc(100% - 32px));
  padding: 0;
  background: var(--white);
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .35);
}

.bid-dialog::backdrop {
  background: rgba(9, 10, 8, .72);
  backdrop-filter: blur(3px);
}

.bid-dialog form {
  position: relative;
  padding: 31px;
}

.dialog-close {
  position: absolute;
  top: 17px;
  right: 17px;
}

.bid-dialog .section-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #a63426;
}

.dialog-lot {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin: 22px 0 13px;
  padding: 17px;
  color: var(--white);
  background: var(--ink);
}

.dialog-lot span {
  grid-column: 1 / -1;
  color: var(--lime);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
}

.dialog-lot strong {
  font-family: var(--display);
  font-size: 34px;
}

.dialog-lot small {
  margin-bottom: 7px;
  color: #96978f;
  font-family: var(--display);
  font-size: 9px;
}

.bid-dialog form > p:not(.section-kicker) {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.7;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 250px;
  max-width: calc(100% - 44px);
  padding: 13px 15px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid #42433e;
  border-radius: 4px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, .25);
  font-size: 11px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast svg {
  width: 17px;
  height: 17px;
  color: var(--lime);
}

@media (max-width: 1180px) {
  :root { --shell: min(100% - 40px, 1120px); }
  .header-main { grid-template-columns: 210px 1fr auto; }
  .nav-inner > a { margin-right: 21px; }
  .hero-card { width: 158px; height: 230px; }
  .hero-box { width: 174px; }
  .hero-price { right: 10px; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .featured-lot-info { padding: 28px; }
  .auction-layout { grid-template-columns: minmax(0, 1.28fr) minmax(300px, .72fr); }
  .lot-card { grid-template-columns: 98px 1fr; }
  .lot-card-art { min-height: 140px; }
  .mini-card { left: 30px; }
  .meta-overview { grid-template-columns: 220px 1fr; }
  .deck-card { padding: 14px; }
  .footer-main { gap: 36px; }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 32px, 860px); }
  .utility-links a { display: none; }
  .header-main { grid-template-columns: auto 1fr auto; min-height: 66px; gap: 14px; }
  .menu-button { display: inline-grid; }
  .header-main > .brand { justify-self: center; }
  .brand-name { font-size: 22px; }
  .brand-mark { width: 39px; height: 39px; font-size: 19px; }
  .global-search, .main-nav, .account-action { display: none; }
  .header-actions { justify-self: end; }
  .header-action { min-width: 43px; padding: 4px; }
  .header-action > span { display: none; }
  .cart-count { top: -2px; right: -2px; }
  .mobile-menu {
    position: fixed;
    z-index: 60;
    top: 0;
    left: 0;
    display: block;
    width: min(390px, 88%);
    height: 100dvh;
    padding: 20px;
    background: var(--white);
    box-shadow: 20px 0 50px rgba(0, 0, 0, .2);
    transform: translateX(-105%);
    transition: transform .28s ease;
  }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 19px; font-weight: 800; }
  .mobile-search { display: flex; margin-bottom: 18px; }
  .mobile-menu nav a { display: flex; align-items: center; justify-content: space-between; min-height: 52px; border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 700; }
  .mobile-menu nav a span { color: var(--red); font-family: var(--display); font-size: 10px; }
  .mobile-menu nav svg { width: 16px; height: 16px; }
  .hero { min-height: 700px; }
  .hero::after { display: none; }
  .hero-photo { background-position: center; }
  .hero-overlay { background: rgba(10, 11, 9, .78); }
  .hero-inner { grid-template-columns: 1fr; min-height: 656px; }
  .hero-copy { align-self: start; max-width: 580px; padding: 47px 0 0; }
  .hero h1 { font-size: 58px; }
  .hero-display { min-height: 240px; margin: -15px 0 0; }
  .display-label { display: none; }
  .hero-card { bottom: 7px; width: 125px; height: 177px; border-width: 5px; }
  .hero-card-one { left: 10%; }
  .hero-card-two { left: 30%; }
  .hero-card-three { left: 50%; }
  .hero-box { right: 5%; bottom: 0; width: 170px; height: 120px; }
  .hero-price { right: 6%; bottom: 132px; }
  .game-rail { grid-auto-columns: minmax(175px, 31%); }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .auction-layout { grid-template-columns: 1fr; }
  .lot-list { grid-template-columns: repeat(3, 1fr); }
  .lot-card { grid-template-columns: 1fr; }
  .lot-card-art { min-height: 130px; }
  .mini-card { left: calc(50% - 25px); }
  .lot-card-info { min-height: 122px; }
  .meta-overview { grid-template-columns: 1fr; }
  .meta-chart { min-height: 230px; flex-direction: row; gap: 35px; }
  .chart-ring { margin: 0; }
  .chart-legend { width: auto; grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; gap: 22px 0; }
  .service-grid > div:nth-child(2) { border-right: 0; }
  .footer-main { grid-template-columns: 1fr 1.6fr; }
  .newsletter { grid-column: 1 / -1; }
  .newsletter form { max-width: 480px; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 28px); }
  .utility-inner { justify-content: center; }
  .utility-links { display: none; }
  .header-main { gap: 8px; }
  .brand { gap: 7px; }
  .brand-mark { width: 34px; height: 34px; border-width: 1px; font-size: 17px; }
  .brand-name { font-size: 19px; }
  .brand-name small { margin-top: 7px; font-size: 8px; }
  .icon-button { width: 36px; height: 36px; }
  .hero { min-height: 685px; }
  .hero-inner { min-height: 641px; }
  .hero-copy { padding-top: 37px; }
  .eyebrow { font-size: 11px; }
  .hero h1 { font-size: 47px; }
  .hero-description { margin-top: 16px; font-size: 12px; line-height: 1.7; }
  .hero-actions { margin-top: 21px; }
  .hero-actions .button { flex: 1; padding: 0 10px; font-size: 11px; }
  .hero-stats { margin-top: 24px; }
  .hero-stats > div { min-width: 0; flex: 1; padding: 0 10px; }
  .hero-stats dt { font-size: 22px; }
  .hero-stats dd { font-size: 8px; }
  .hero-display { min-height: 230px; }
  .hero-card { width: 103px; height: 151px; padding: 10px; }
  .hero-card small { font-size: 13px; }
  .hero-card-one { left: 1%; }
  .hero-card-two { left: 21%; }
  .hero-card-three { left: 42%; }
  .hero-box { right: 0; width: 137px; height: 105px; padding: 12px; box-shadow: 7px 8px 0 rgba(0,0,0,.3); }
  .hero-box b { font-size: 28px; }
  .hero-box span { font-size: 9px; }
  .hero-price { right: 1%; bottom: 113px; }
  .hero-price strong { font-size: 22px; }
  .game-section, .catalog-section, .singles-section, .decks-section { padding: 48px 0; }
  .section-heading { align-items: flex-start; margin-bottom: 22px; }
  .section-heading h2, .auction-heading h2 { font-size: 29px; }
  .section-heading .text-link { display: none; }
  .game-rail { grid-auto-columns: 72%; }
  .game-tile { min-height: 190px; }
  .catalog-toolbar { align-items: stretch; flex-direction: column; padding: 9px; }
  .segmented { width: 100%; }
  .segmented button { min-width: 0; flex: 1; padding: 0 5px; }
  .select-group { display: grid; grid-template-columns: 1fr 1fr auto; }
  .select-group select { width: 100%; padding-right: 25px; }
  .filter-button span { display: none; }
  .product-grid { gap: 10px; }
  .product-info { padding: 11px; }
  .product-visual { aspect-ratio: 1.03 / 1; }
  .product-box { min-width: 92px; width: 54%; padding: 8px; box-shadow: 6px 7px 0 rgba(16,17,15,.25); }
  .product-box b { font-size: 19px; }
  .product-box small { display: none; }
  .product-info h3 { min-height: 58px; margin-top: 6px; font-size: 11px; line-height: 1.55; }
  .product-subtitle { display: none; }
  .product-brand { font-size: 8px; }
  .stock-label { display: none; }
  .product-bottom { align-items: center; margin-top: 11px; }
  .price-block strong { font-size: 20px; }
  .add-button { width: 34px; height: 34px; }
  .status-badge { font-size: 7px; }
  .wish-button { width: 30px; height: 30px; }
  .auction-section { padding: 48px 0 42px; }
  .auction-status { display: none; }
  .featured-lot { grid-template-columns: 1fr; }
  .featured-lot-art { min-height: 355px; border-right: 0; border-bottom: 1px solid #3a3b36; }
  .graded-card { width: 160px; }
  .slab-art { height: 205px; }
  .featured-lot-info { padding: 23px; }
  .bid-line { margin: 22px 0 17px; }
  .lot-list { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .lot-card { min-width: 82%; grid-template-columns: 105px 1fr; scroll-snap-align: start; }
  .lot-card-art { min-height: 140px; }
  .mini-card { left: 33px; }
  .auction-footer { align-items: flex-start; flex-direction: column; }
  .singles-heading { align-items: flex-start; }
  .market-pulse { display: none; }
  .singles-toolbar { flex-direction: column; gap: 8px; border-bottom: 0; }
  .singles-game-tabs { border-bottom: 1px solid #bdbbb2; }
  .singles-game-tabs button { padding: 12px 13px; }
  .set-select { justify-content: space-between; padding-bottom: 0; }
  .set-select select { flex: 1; max-width: 230px; }
  .singles-table-head { display: none; }
  .single-row { grid-template-columns: 1fr auto; gap: 9px 12px; min-height: 0; padding: 12px; }
  .single-card-name { grid-column: 1 / -1; }
  .single-code { padding-left: 68px; }
  .condition { display: none; }
  .single-price { text-align: right; }
  .single-add { position: absolute; right: 12px; margin-top: 18px; }
  .single-row { position: relative; }
  .single-card-name h3 { max-width: calc(100vw - 145px); }
  .singles-bottom { align-items: stretch; flex-direction: column; }
  .singles-bottom .button { width: 100%; }
  .meta-chart { flex-direction: column; min-height: 0; }
  .chart-ring { width: 140px; height: 140px; }
  .chart-legend { grid-template-columns: 1fr 1fr; width: 100%; }
  .deck-grid { display: flex; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; }
  .deck-card { min-width: 79%; min-height: 275px; scroll-snap-align: start; }
  .deck-game-tabs { margin-top: -3px; }
  .service-grid { grid-template-columns: 1fr; gap: 0; }
  .service-grid > div { justify-content: flex-start; padding: 15px 10px; border-right: 0; border-bottom: 1px solid rgba(17,18,16,.2); }
  .service-grid > div:last-child { border-bottom: 0; }
  .footer-main { grid-template-columns: 1fr; gap: 38px; padding-top: 46px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-links > div:last-child { grid-column: 1 / -1; }
  .newsletter { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 5px; padding: 14px 0; }
  .cart-drawer { padding: 18px; }
  .toast { right: 14px; bottom: 14px; max-width: calc(100% - 28px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}