:root {
  --bg: #f4f5f7;
  --ink: #10141c;
  --mute: #5c6573;
  --card: #fff;
  --line: #e4e7ec;
  --accent: #c1121f;
  --ok: #0f7a4d;
}
* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  font-family: Outfit, system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); }
.wrap { width: min(1120px, calc(100% - 32px)); margin: 24px auto 48px; }
.top {
  display: flex; align-items: center; justify-content: space-between; gap: 12px 18px;
  padding: 10px 24px; background: #fff; border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 20;
  flex-wrap: nowrap;
}
.brand { display: flex; align-items: center; gap: 10px; color: inherit; text-decoration: none; font-weight: 700; }
.brand.has-logo { gap: 0; max-width: 300px; flex: 0 0 auto; }
.brand img {
  width: 300px; height: auto; max-width: 100%;
  object-fit: contain; display: block;
}
.nav {
  display: flex; flex: 1 1 auto; align-items: center; justify-content: flex-start;
  gap: 8px 14px; min-width: 0; flex-wrap: nowrap; overflow-x: auto;
}
.nav a {
  color: var(--mute); text-decoration: none; font-weight: 500;
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  width: 40px; height: 40px; padding: 0; flex: none;
  border: 1px solid var(--line); border-radius: 10px;
  background: #fff; cursor: pointer;
  place-items: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 16px; height: 2px; background: var(--ink); border-radius: 1px;
}
.who {
  display: flex; align-items: center; gap: 12px;
  flex: 0 0 auto; margin-left: auto;
  background: #fff;
  position: relative;
  z-index: 1;
}
.who form { margin: 0; }
.who-name {
  color: var(--ink); font-weight: 600; white-space: nowrap;
  max-width: 14rem; overflow: hidden; text-overflow: ellipsis;
}
.who-num { color: var(--mute); font-weight: 700; }
.who-menu { position: relative; }
.who-menu-btn {
  display: flex; align-items: center; gap: 8px;
  border: 0; background: #fff; padding: 6px 10px;
  font: inherit; cursor: pointer; color: inherit;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px var(--line);
}
.who-menu-btn:hover { box-shadow: inset 0 0 0 1px #c5cad3; }
.who-menu-btn::after {
  content: '';
  width: 0.4em; height: 0.4em;
  border-right: 2px solid var(--mute);
  border-bottom: 2px solid var(--mute);
  transform: rotate(45deg); margin-top: -0.25em;
}
.who-menu-btn[aria-expanded="true"]::after {
  transform: rotate(-135deg); margin-top: 0.15em;
}
.who-menu-pop {
  position: absolute; right: 0; top: calc(100% + 8px); z-index: 30;
  min-width: 11rem; padding: 8px; background: #fff;
  border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 10px 28px rgba(16,20,28,0.16);
  display: grid; gap: 2px;
}
.who-menu-pop[hidden] { display: none; }
.who-menu-pop a, .who-menu-pop button {
  display: block; width: 100%; text-align: left;
  border: 0; background: transparent; color: var(--ink);
  font: inherit; font-weight: 600; padding: 8px 10px;
  border-radius: 8px; cursor: pointer; text-decoration: none;
}
.who-menu-pop a:hover, .who-menu-pop button:hover { background: var(--bg); }
.who .btn, .who .btn-ghost {
  border-radius: 8px;
  padding: 6px 12px;
  white-space: nowrap;
  font-size: 14px;
}
.who a:not(.btn) { white-space: nowrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink); color: #fff; border: 0; border-radius: 999px;
  padding: 8px 14px; text-decoration: none; font-weight: 600; cursor: pointer; font: inherit;
}
.btn-ghost { background: #fff; color: var(--ink); box-shadow: inset 0 0 0 1px var(--line); }
.btn-ghost.is-on { background: var(--ink); color: #fff; }
.kicker { text-transform: uppercase; letter-spacing: 0.08em; font-size: 12px; color: var(--accent); font-weight: 700; }
h1 { letter-spacing: -0.04em; margin: 0 0 8px; }
.lede { color: var(--mute); max-width: 40rem; }
.hero-plain { margin: 0 0 18px; }
.hero-plain h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); }
.muted { color: var(--mute); }
.flash { padding: 10px 12px; border-radius: 10px; margin-bottom: 16px; }
.flash.ok { background: #e8f7ef; }
.flash.err { background: #fde8ea; }
.flash.demo-banner { background: #fff6e5; }
.store-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.store-card { background: var(--card); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.store-card img { width: 100%; height: 180px; object-fit: cover; }
.store-card-body { padding: 12px 14px 16px; }
.store-card-body h3 { margin: 0 0 6px; font-size: 1.05rem; }
.store-card-body h3 a { color: inherit; text-decoration: none; }
.sale-list, .grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.sale-card, .lot-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden; text-decoration: none; color: inherit;
  display: flex; flex-direction: column; min-width: 0; max-width: 100%;
}
.sale-card { padding: 16px; }
.tag { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent); }
.lot-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #eceff3;
  overflow: hidden;
  flex-shrink: 0;
  color: var(--mute);
}
.won-dock {
  position: fixed;
  left: 12px;
  bottom: 12px;
  z-index: 25;
  width: auto;
  max-width: min(15.5rem, calc(100vw - 24px));
  overflow: hidden;
  background: #fff;
  border: 1px solid #ecd9a8;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(180, 83, 9, 0.22);
  padding: 0;
}
.won-dock.is-open {
  width: min(15.5rem, calc(100vw - 24px));
  max-height: min(40vh, 280px);
  overflow: auto;
  border-radius: 12px;
}
.won-dock[hidden] { display: none !important; }
.won-dock-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin: 0;
  border: 0;
  background: linear-gradient(105deg, #b45309, #f59e0b 40%, #fde68a 50%, #f59e0b 60%, #b45309);
  background-size: 220% 100%;
  color: #1a0f00;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 12px;
  cursor: pointer;
}
.won-dock.is-open .won-dock-toggle {
  border-radius: 12px 12px 0 0;
  justify-content: space-between;
}
.won-dock-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.2em;
  padding: 0 5px;
  border-radius: 999px;
  background: rgba(26, 15, 0, 0.12);
  font-size: 11px;
}
.won-dock-list { display: none; padding: 4px 8px 8px; }
.won-dock.is-open .won-dock-list { display: block; }
.won-dock-item {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  padding: 5px 4px;
  border-radius: 8px;
}
.won-dock-item:hover { background: #fffbeb; }
.won-dock-item img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.won-dock-item strong { display: block; font-size: 12px; }
.won-dock-item em { font-style: normal; font-size: 12px; font-weight: 700; color: #b45309; }
.lot-photo > span,
.lot-photo > a span { position: absolute; inset: 0; display: grid; place-items: center; }
.lot-photo > .lot-card-link { position: absolute; inset: 0; }
.lot-photo img {
  position: absolute;
  inset: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  max-width: none;
  object-fit: contain;
  object-position: center;
}
.lot-swipe {
  position: absolute;
  inset: 0;
}
.lot-swipe-track {
  display: flex;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.lot-swipe-track::-webkit-scrollbar { display: none; }
.lot-swipe-slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}
.lot-swipe-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  display: flex;
  justify-content: center;
  gap: 5px;
  pointer-events: none;
  z-index: 2;
}
.lot-swipe-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  box-shadow: 0 0 2px rgba(0,0,0,0.55);
}
.lot-swipe-dots span.is-on {
  background: #fff;
  transform: scale(1.35);
}
.lot-swipe-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font: inherit;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  padding: 0 0 2px;
}
.lot-swipe-arrow.is-prev { left: 8px; }
.lot-swipe-arrow.is-next { right: 8px; }
.lot-swipe:hover .lot-swipe-arrow:not([disabled]) { opacity: 1; }
.lot-swipe-arrow[disabled] { opacity: 0; pointer-events: none; }
@media (hover: none), (max-width: 767px) {
  .lot-swipe-arrow { display: none; }
}
.lot-body { padding: 12px 14px 14px; flex: 1; display: flex; flex-direction: column; min-width: 0; }
.lot-body h3 {
  margin: 0 0 6px; font-size: 1.05rem; line-height: 1.25;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  line-clamp: 2; overflow: hidden;
  min-height: calc(1.25em * 2);
}
.lot-price { margin: 0; min-height: 1.5em; display: flex; flex-direction: column; align-items: flex-start; gap: 1px; }
.lot-price-page { margin: 0 0 10px; }
.lot-meta { font-size: 13px; font-weight: 500; }
.bid-count-btn {
  display: inline;
  border: 0;
  background: none;
  padding: 0;
  margin: 0;
  color: #1d4ed8;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  appearance: none;
  -webkit-appearance: none;
}
.lot-high {
  margin: 2px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: #15803d;
}
.terms + form .check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 14px 0;
  font-weight: 600;
}
.amt { font-size: 1.1rem; }
.flag { font-size: 16px; font-weight: 800; color: var(--ok); }
.lot-card.is-winning .flag, .lot-page.is-winning .flag,
.lot-card.is-won .flag, .lot-page.is-won .flag,
.lot-card.is-sold .flag, .lot-page.is-sold .flag,
.lot-card.is-nosale .flag, .lot-page.is-nosale .flag,
.lot-card.is-outbid .flag, .lot-page.is-outbid .flag,
.lot-card.is-nobid .flag, .lot-page.is-nobid .flag {
  margin: 8px 0 0;
  padding: 6px 8px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: 8px;
  line-height: 1.2;
  white-space: nowrap;
  min-height: 2.15em;
  box-sizing: border-box;
}
.lot-card.is-winning .flag, .lot-page.is-winning .flag {
  background: #d4edda;
  color: #155724;
  border: 1px solid #28a745;
}
.lot-card.is-won .flag, .lot-page.is-won .flag {
  position: relative;
  overflow: hidden;
  background: linear-gradient(105deg, #b45309 0%, #f59e0b 28%, #fde68a 50%, #f59e0b 72%, #b45309 100%);
  background-size: 220% 100%;
  color: #1a0f00;
  border: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.55), 0 0 0 1px #92400e, 0 6px 14px rgba(180, 83, 9, 0.35);
  letter-spacing: 0.1em;
  font-size: 14px;
  text-shadow: 0 1px 0 rgba(255,255,255,0.5);
  animation: won-pop 0.5s cubic-bezier(0.2, 1.4, 0.3, 1) 1, won-shimmer 2.4s linear infinite;
}
.lot-card.is-won .flag::before,
.lot-page.is-won .flag::before {
  content: '★';
  margin-right: 0.4em;
  color: #fff7cc;
  text-shadow: 0 0 6px rgba(255, 215, 0, 0.9);
}
.lot-card.is-won .flag::after,
.lot-page.is-won .flag::after {
  content: '★';
  margin-left: 0.4em;
  color: #fff7cc;
  text-shadow: 0 0 6px rgba(255, 215, 0, 0.9);
}
@keyframes won-pop {
  0% { transform: scale(0.82); }
  55% { transform: scale(1.08); }
  100% { transform: scale(1); }
}
@keyframes won-shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 220% 50%; }
}
.lot-card.is-won {
  box-shadow: inset 0 0 0 2px #eab308, 0 10px 22px rgba(180, 83, 9, 0.22);
}
.lot-card.is-won.is-target {
  box-shadow: inset 0 0 0 2px #eab308, 0 0 0 3px var(--accent);
}
.lot-card.is-outbid .flag, .lot-page.is-outbid .flag {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #dc3545;
}
.lot-card.is-nobid .flag, .lot-page.is-nobid .flag {
  background: #eef2f6;
  color: #4b5563;
  border: 1px solid #cbd5e1;
}
.lot-card.is-sold:not(.is-won) .flag, .lot-page.is-sold:not(.is-won) .flag {
  background: #15803d;
  color: #fff;
  border: 1px solid #166534;
}
.lot-card.is-sold.is-outbid:not(.is-won) .flag,
.lot-page.is-sold.is-outbid:not(.is-won) .flag {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #dc3545;
}
.lot-card.is-nosale .flag, .lot-page.is-nosale .flag {
  background: #6b7280;
  color: #fff;
  border: 1px solid #4b5563;
}
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }
.filters input, .filters select, .auth-form input, .bid-form input {
  border: 1px solid var(--line); border-radius: 10px; padding: 9px 10px; font: inherit; background: #fff;
}
.featured { margin: 18px 0 28px; }
.feat-row { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px; }
.feat-row .lot-card { min-width: 220px; }
.feat-strip {
  border-radius: 14px;
  padding: 16px 14px 10px;
  margin: 0 0 16px;
}
.feat-strip.is-featured {
  background: linear-gradient(135deg, #fffaf0 0%, #fff3d6 100%);
  border: 1px solid #f0d68a;
  box-shadow: 0 4px 12px rgba(199, 144, 6, 0.1);
}
.feat-strip.is-popular {
  background: linear-gradient(135deg, #fff5ee 0%, #ffe3d1 100%);
  border: 1px solid #ffb88a;
  box-shadow: 0 4px 12px rgba(238, 90, 36, 0.08);
}
.feat-strip-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.feat-strip-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: grid; place-items: center; color: #fff; font-size: 18px;
}
.is-featured .feat-strip-icon {
  background: linear-gradient(135deg, #f5c343, #c79006);
  box-shadow: 0 3px 10px rgba(199, 144, 6, 0.35);
}
.is-popular .feat-strip-icon {
  background: linear-gradient(135deg, #ff6a00, #ee0979);
  box-shadow: 0 3px 10px rgba(238, 9, 121, 0.35);
}
.feat-eyebrow {
  margin: 0 0 2px; font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.is-featured .feat-eyebrow { color: #c79006; }
.is-popular .feat-eyebrow { color: #c2410c; }
.feat-strip h2 { margin: 0; font-size: 1.25rem; letter-spacing: -0.03em; }
.feat-nav { margin-left: auto; display: flex; gap: 8px; flex-shrink: 0; }
.feat-arrow {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid #e2c9b3; background: #fff; color: #c2410c;
  font: inherit; font-size: 20px; line-height: 1; cursor: pointer;
}
.is-featured .feat-arrow { border-color: #ecd9a8; color: #c79006; }
.feat-arrow:disabled { opacity: 0.35; cursor: default; }
.feat-strip .feat-row {
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 10px;
}
.feat-strip .feat-row::-webkit-scrollbar { display: none; }
.feat-strip .feat-row { align-items: stretch; }
.feat-strip .lot-card {
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 36px) / 4);
  width: calc((100% - 36px) / 4);
  max-width: calc((100% - 36px) / 4);
  min-width: 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(16, 20, 28, 0.08);
}
@media (min-width: 992px) {
  .feat-strip .lot-card {
    flex-basis: calc((100% - 48px) / 5);
    width: calc((100% - 48px) / 5);
    max-width: calc((100% - 48px) / 5);
  }
}
.lot-num {
  margin: 0;
  height: var(--lot-num-h, 2.125rem);
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  text-align: center;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: #111;
  flex-shrink: 0;
}
.feat-strip.is-featured .lot-num,
.home-strip-featured .lot-num { background: linear-gradient(135deg, #d4a017, #b8860b); }
.feat-strip.is-popular .lot-num,
.home-strip-popular .lot-num { background: linear-gradient(135deg, #ff6a00, #ee0979); }
.is-feat .lot-cat { display: none; }
.lot-cat { margin: 0 0 2px; font-size: 12px; }
.lot-num-page {
  display: inline-block;
  border-radius: 8px;
  padding: 6px 12px;
  margin: 0 0 10px;
}
.is-feat .clock, .is-feat .reserve,
.is-feat .end-banner, .is-feat .flag { display: none; }
.catalog-continue {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 2px 0 18px; color: #8a8a99; font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.lot-page { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: start; }
.lot-gallery {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  background: transparent;
  overflow: visible;
}
.lot-hero-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #eceff3;
  border-radius: 14px;
  overflow: hidden;
}
.lot-hero-frame.is-empty {
  display: grid;
  place-items: center;
  color: var(--mute);
}
.lot-gallery #lot-hero {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center;
  background: #eceff3;
  border-radius: 0;
}
.thumbs { display: flex; gap: 8px; margin-top: 0; overflow-x: auto; }
.thumb { border: 0; padding: 0; background: none; cursor: pointer; flex: 0 0 auto; }
.thumb img {
  width: 64px;
  height: 48px;
  object-fit: contain;
  object-position: center;
  background: #eceff3;
  border-radius: 8px;
}
.lot-info { margin: 28px 0 8px; }
.lot-info-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid var(--line);
}
.lot-info-tabs button {
  appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  padding: 10px 14px;
  font: inherit;
  font-weight: 700;
  font-size: 14px;
  color: var(--mute);
  cursor: pointer;
}
.lot-info-tabs button.is-on {
  color: var(--ink);
  border-bottom-color: var(--ink);
}
.lot-info-panel {
  padding: 16px 4px 8px;
  font-size: 15px;
  line-height: 1.55;
}
.lot-info-panel[hidden] { display: none !important; }
.lot-prem { width: 100%; border-collapse: collapse; }
.lot-prem th { text-align: left; padding: 12px 8px 4px; font-size: 14px; }
.lot-prem td { padding: 6px 8px; border-bottom: 1px solid var(--line); font-size: 14px; vertical-align: top; }
.lot-prem td:last-child { text-align: right; font-weight: 700; white-space: nowrap; width: 4.5rem; }
.bid-form, .auth-form { position: relative; display: grid; gap: 10px; max-width: 22rem; margin: 16px 0; }
.auth-form label, .bid-form label { display: grid; gap: 4px; font-weight: 600; font-size: 14px; }
.foot { text-align: center; color: var(--mute); padding: 24px; border-top: 1px solid var(--line); font-size: 14px; }
.empty { color: var(--mute); padding: 24px 0; }
.pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
  margin: 12px 0 16px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
}
.pager-bottom { margin-top: 20px; }
.pager-count { margin: 0; font-size: 12px; font-weight: 600; color: var(--mute); white-space: nowrap; }
.pager-float {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 45;
  display: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
  width: max-content;
  max-width: calc(100vw - 16px);
  margin: 0;
  padding: 8px 12px;
  border: 0;
  border-radius: 14px;
  background: rgba(16, 20, 28, 0.94);
  color: #fff;
  box-shadow: 0 10px 28px rgba(16, 20, 28, 0.28);
}
.pager-float.is-visible { display: flex !important; }
.pager-float .pager-count { color: rgba(255,255,255,0.72); }
.pager-float .pager-pages a { background: rgba(255,255,255,0.12); color: #fff; }
.pager-float .pager-pages a:hover { background: rgba(255,255,255,0.22); }
.pager-float .pager-pages .is-on { background: var(--accent); color: #fff; }
.pager-float .pager-jump { margin-left: 0; }
.pager-float .pager-jump span { color: rgba(255,255,255,0.72); }
.pager-float .pager-jump select {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}
body.has-jump-bar { padding-bottom: 72px; }
@media (max-width: 767px) {
  .pager-float {
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    max-width: none;
    border-radius: 0;
    padding: 8px 10px 10px;
  }
}
.pager-pages, .pager-jump { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.pager-pages a, .pager-pages span {
  display: inline-flex;
  min-width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
}
.pager-pages a { background: #eef1f4; }
.pager-pages a:hover { background: #dfe5ea; }
.pager-pages .is-on {
  background: var(--ink);
  color: #fff;
}
.pager-gap { min-width: 1.25rem; color: var(--mute); }
.pager-jump {
  margin-left: auto;
  font-weight: 600;
}
.pager-jump span { color: var(--mute); font-size: 13px; }
.pager-jump select {
  height: 2rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 8px;
  background: #fff;
  font: inherit;
  font-weight: 600;
  color: inherit;
}
.scroll-sentinel { height: 8px; }
.scroll-spinner { text-align: center; color: var(--mute); font-weight: 700; padding: 12px 0; }
.lot-card.is-unloaded {
  background: #eceff3;
  min-height: 280px;
}
.lot-card.is-dismissing {
  transform: scale(0.85);
  opacity: 0;
  pointer-events: none;
  transition: transform 280ms ease, opacity 280ms ease;
}
.lot-card:not(.is-winning):not(.is-outbid):not(.is-nobid):not(.is-sold):not(.is-nosale):not(.is-upcoming) .flag { display: none; }
.lot-card { position: relative; --lot-num-h: 2.125rem; }
.lot-card.is-target { box-shadow: 0 0 0 3px var(--accent); }
.lot-card.is-winning,
.lot-card.is-outbid { box-shadow: none; }
.lot-card.is-winning::after,
.lot-card.is-outbid::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: var(--lot-num-h);
  pointer-events: none;
  z-index: 6;
  border-radius: 0 0 14px 14px;
}
.lot-card.is-winning::after {
  box-shadow: inset 0 0 0 2px var(--ok);
}
.lot-card.is-outbid:not(.is-winning)::after {
  box-shadow: inset 0 0 0 2px #dc3545;
}
.lot-card.is-winning.is-target,
.lot-card.is-outbid.is-target {
  box-shadow: 0 0 0 3px var(--accent);
}
.lot-card.took-lead { animation: took-lead 1.2s ease 1; }
.lot-card.got-outbid { animation: got-outbid 0.7s ease 1; }
@keyframes took-lead {
  0% { box-shadow: 0 0 0 0 rgba(15, 122, 77, 0.45); }
  100% { box-shadow: none; }
}
@keyframes got-outbid {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}
#bid-sound, .js-bid-sound { font-size: 13px; }
.pickup-banner {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 14px 16px; margin: 0 0 20px; color: var(--mute);
}
.won-sale { margin: 0 0 28px; }
.won-sale-head { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; margin-bottom: 12px; }
.won-sale-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.won-sale-head h2 { margin: 0 0 4px; font-size: 1.2rem; }
.sale-title-link { color: inherit; text-decoration: none; }
.sale-title-link:hover { color: var(--accent); }
.pickup-btn { background: var(--accent); }
.auth-form label.check { display: flex; align-items: center; gap: 8px; font-weight: 500; }
.account-form { max-width: 40rem; }
.account-form > .btn { justify-self: start; width: auto; }
.account-form .check { display: flex; align-items: center; gap: 8px; font-weight: 500; }
.account-block { margin: 12px 0 0; font-size: 1.05rem; letter-spacing: -0.02em; }
.account-city-row { grid-template-columns: 1fr 11rem 7rem; }
#ab-push-pre, #ab-install {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 40;
  max-width: 28rem; margin: 0 auto; background: var(--ink); color: #fff;
  border-radius: 16px; padding: 16px 18px; box-shadow: 0 12px 40px rgba(16, 20, 28, 0.28);
}
#ab-push-pre p, #ab-install p { margin: 6px 0 12px; color: #c5ccd6; font-size: 14px; }
.ab-push-actions { display: flex; gap: 8px; justify-content: flex-end; }
#ab-push-pre .btn-ghost, #ab-install .btn-ghost { color: #fff; box-shadow: inset 0 0 0 1px #5c6573; background: transparent; }
#ab-push-pre .btn:not(.btn-ghost), #ab-install .btn:not(.btn-ghost) { background: #fff; color: var(--ink); }
.lot-card-link, .lot-title { color: inherit; text-decoration: none; }
.lot-card-link { display: block; min-width: 0; }
.lot-status {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
  padding-top: 6px;
  align-items: stretch;
  min-height: 0;
}
.lot-status > * { margin: 0; width: 100%; box-sizing: border-box; }
.lot-card.is-sold .clock,
.lot-card.is-nosale .clock,
.lot-card[data-lot-ended="1"] .clock {
  display: none !important;
}
.lot-bid-slot { display: grid; align-items: start; }
.lot-bid-slot > .card-bid,
.lot-bid-slot > a.btn { grid-area: 1 / 1; }
.lot-bid-slot > .btn-dismiss {
  grid-area: 1 / 1;
  align-self: start;
  height: auto;
  max-height: 2.75rem;
  width: 100%;
}
.lot-card:not([data-lot-ended="1"]) .btn-dismiss {
  visibility: hidden;
  pointer-events: none;
}
.lot-card[data-lot-ended="1"] .lot-bid-slot .card-bid,
.lot-card[data-lot-ended="1"] .lot-bid-slot > a.btn:not(.btn-dismiss) {
  visibility: hidden;
  pointer-events: none;
}
.lot-card[data-lot-ended="1"] .btn-watch,
.lot-card.is-sold .btn-watch,
.lot-card.is-nosale .btn-watch,
.lot-page[data-lot-ended="1"] .btn-watch,
.lot-page[data-lot-ended="1"] .watch-form {
  display: none !important;
}
.lot-actions {
  padding: 0 12px 12px; display: grid; gap: 8px;
  min-width: 0; width: 100%; box-sizing: border-box;
}
.lot-actions > .btn { width: 100%; min-width: 0; box-sizing: border-box; }
.card-bid {
  position: relative;
  display: grid; gap: 6px;
  width: 100%; min-width: 0; max-width: 100%;
}
.card-bid .btn-bid,
.card-bid .btn-max {
  width: 100%; min-width: 0; max-width: 100%;
  box-sizing: border-box;
  padding: 8px 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-bid .btn-bid { background: #1d4ed8; }
.card-bid .btn-bid2 { background: #15803d; }
.card-max { display: grid; min-width: 0; width: 100%; }
.card-max input[type="hidden"] { display: none; }
.card-bid .btn-max,
.card-max .btn-max {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  height: auto;
  white-space: normal;
  overflow: visible;
  line-height: 1.15;
  text-transform: uppercase;
}
.btn-max-label { font-size: inherit; font-weight: inherit; letter-spacing: inherit; }
.btn-max-amt {
  font-size: inherit;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}
.max-bid-field { display: grid; gap: 6px; text-align: left; font-weight: 600; font-size: 14px; margin: 0 0 12px; }
#max-bid-input { border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; font: inherit; font-size: 1.25rem; font-weight: 700; }
#max-bid-desc { margin: 0 0 8px; font-size: 13px; color: var(--mute); text-align: left; line-height: 1.45; }
.card-max .btn-max { width: 100%; }
.lot-end {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--mute);
  letter-spacing: 0.01em;
  line-height: 1.25;
  text-align: center;
}
.clock { font-family: ui-monospace, monospace; font-size: 20px; font-weight: 800; letter-spacing: 0.02em; margin: 0; text-align: center; }
.clock.is-urgent { color: var(--accent); }
.lot-card.is-lastcall .clock {
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 6px 8px;
  overflow: hidden;
  background: linear-gradient(105deg, #7f1d1d 0%, #dc2626 28%, #fca5a5 50%, #dc2626 72%, #7f1d1d 100%);
  background-size: 220% 100%;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 8px;
  border: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.28), 0 0 0 1px #7f1d1d, 0 6px 14px rgba(185, 28, 28, 0.4);
  text-shadow: 0 1px 0 rgba(0,0,0,0.28);
  animation: won-pop 0.5s cubic-bezier(0.2, 1.4, 0.3, 1) 1, won-shimmer 2.4s linear infinite;
}
.lot-card.is-lastcall .clock::before,
.lot-card.is-lastcall .clock::after {
  content: '🚨';
  font-size: 0.95em;
  line-height: 1;
}
.lot-card.is-lastcall .clock::before { margin-right: 0.4em; }
.lot-card.is-lastcall .clock::after { margin-left: 0.4em; }
.lot-card.is-processing .lot-bid-slot .card-bid,
.lot-card.is-processing .lot-bid-slot > a.btn:not(.btn-dismiss) {
  visibility: hidden;
  pointer-events: none;
}
.lot-card.is-processing .btn-watch,
.lot-page.is-processing .bid-form,
.lot-page.is-processing .watch-form {
  display: none !important;
}
.lot-card.is-processing .clock,
.lot-page.is-processing .clock {
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 6px 8px;
  min-height: 2.4em;
  background: #1e293b;
  color: #fde68a;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 8px;
  border: 1px solid #334155;
  box-shadow: none;
  animation: none;
  text-shadow: none;
}
.reserve {
  margin: 6px 0 0; padding: 4px 8px; text-align: center; font-size: 12px; font-weight: 700;
  background: #e8daef; color: #6c3483; border: 1px solid #8e44ad; border-radius: 8px;
}
.end-banner {
  margin: 0; padding: 6px 8px; text-align: center; font-weight: 800;
  border-radius: 8px; color: #fff; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  min-height: 2.4em; box-sizing: border-box;
}
.lot-status .end-banner[hidden] { display: none !important; }
.sold-banner { background: #15803d; }
.nosale-banner { background: #6b7280; }
.lot-card.is-won .sold-banner { background: #ca8a04; color: #1a1300; }
.lot-page[data-lot-ended="1"] .bid-form {
  display: none !important;
}
.lot-msg {
  position: absolute; left: 0; right: 0; bottom: 0;
  margin: 0; padding: 4px 6px; font-size: 12px; font-weight: 600;
  text-align: center; pointer-events: none; z-index: 2;
  background: rgba(255,255,255,0.92); border-radius: 8px;
}
.lot-msg[hidden] { display: none !important; }
.lot-msg.is-err { color: var(--accent); }
.share-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  margin: 0 0 16px; padding: 10px 12px; background: #fff;
  border: 1px solid var(--line); border-radius: 12px; font-size: 14px; color: var(--mute);
}
.share-btn {
  border: 0; background: #111827; color: #fff; border-radius: 999px;
  padding: 6px 10px; font: inherit; font-size: 13px; font-weight: 600;
  text-decoration: none; cursor: pointer;
}
.share-fb { background: #1877f2; }
.share-x { background: #111; }
.popular h2 { margin-top: 0; }
.account-nav { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 20px; }
.account-nav a {
  padding: 6px 12px; border-radius: 999px; text-decoration: none; color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line); background: #fff; font-weight: 600; font-size: 14px;
}
.account-nav a.is-on { background: var(--ink); color: #fff; box-shadow: none; }
.activity { display: grid; gap: 8px; }
.activity-row {
  display: grid; grid-template-columns: 7rem 1fr 1.2fr 6rem auto; gap: 10px;
  align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 10px 14px; text-decoration: none; color: inherit;
}
.activity-row[data-lot-modal]:hover { border-color: #c5cad3; }
.activity-row.is-in-sale { grid-template-columns: 7rem 1fr 6rem auto; }
.history { width: 100%; border-collapse: collapse; margin-top: 16px; font-size: 14px; }
.history th, .history td { text-align: left; padding: 6px 8px; border-bottom: 1px solid var(--line); }
.terms { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px; margin: 16px 0; }
.crumb { color: var(--mute); }
.lot-back {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
  margin: 0 0 18px;
}
.lot-back-btn {
  font-weight: 800;
  padding: 10px 16px;
  background: var(--ink);
  color: #fff;
}
.lot-back-btn:hover { color: #fff; }
.lot-back-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.home-hero { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 16px; margin: 0 0 28px; }
.hero-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 20px; }
.hero-card h2 { margin: 0 0 12px; font-size: 1.4rem; }
.live-card { padding: 0; overflow: hidden; }
.live-head {
  background: #0c1220; color: #eef2f7; padding: 16px 20px;
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 14px;
}
.live-head h2 { color: #fff; margin: 0; font-size: 1.25rem; }
.live-head .kicker { color: #86efac; display: flex; align-items: center; gap: 8px; margin: 0; }
.live-body { padding: 4px 20px 16px; }
.live-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e; box-shadow: 0 0 8px rgba(34, 197, 94, 0.9);
  animation: live-pulse 1.5s ease-in-out infinite;
}
@keyframes live-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.live-row {
  display: flex; justify-content: space-between; gap: 12px; align-items: center;
  padding: 12px 0; border-top: 1px solid var(--line); text-decoration: none; color: inherit;
}
.live-row:first-of-type { border-top: 0; }
.live-row:hover { color: inherit; }
.countdown { font-family: ui-monospace, monospace; font-size: 18px; font-weight: 800; color: var(--ink); white-space: nowrap; }
.countdown.is-urgent { color: var(--accent); }
.home-strip { margin: 8px 0 28px; }
.home-strip h2 { margin: 0 0 12px; }
.sell-card { background: #0c1220; color: #eef2f7; }
.sell-card .kicker { color: #f87171; }
.sell-card h2 { color: #fff; }
.sell-card .muted { color: #9aa6b8; }
.sell-card .btn { background: #fff; color: #0c1220; }
.sold-proof { margin: 16px 0; }
.sold-label { text-transform: uppercase; letter-spacing: 0.08em; font-size: 11px; font-weight: 700; color: #fbbf24; margin: 0 0 8px; }
.sold-track { position: relative; min-height: 72px; }
.sold-slide {
  display: none; align-items: center; gap: 12px; text-decoration: none; color: inherit;
}
.sold-slide.is-on { display: flex; }
.sold-slide img, .sold-ph {
  width: 64px; height: 64px; border-radius: 8px; object-fit: cover; flex-shrink: 0;
}
.sold-ph { display: grid; place-items: center; background: #1f2937; color: #fbbf24; font-size: 11px; font-weight: 700; }
.sold-price { display: block; font-weight: 800; font-size: 1.05rem; color: #fff; }
.prose { max-width: 42rem; }
.prose p { color: var(--mute); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.auth-form textarea { border: 1px solid var(--line); border-radius: 10px; padding: 9px 10px; font: inherit; }
.live-board { background: #0c1220; color: #eef2f7; border-radius: 20px; padding: 32px; }
.live-board .kicker { color: #f87171; }
.live-board h1 { color: #fff; }
#card-container {
  min-height: 90px;
  margin: 12px 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
#catalog-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; align-items: stretch; }
#catalog-grid .lot-actions { margin-top: auto; }
.lot-card:not(.is-feat) .clock {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4em;
  margin: 0;
}
.lot-card:not(.is-feat) .clock[hidden] {
  display: none !important;
}
.lot-card.is-lastcall .clock[hidden],
.lot-card.is-processing .clock[hidden] {
  display: flex !important;
}
@media (max-width: 991px) {
  #catalog-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  #catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
}
@media (max-width: 575px) {
  #catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
}
@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; }
}
@media (max-width: 1100px) {
  .brand.has-logo { max-width: 240px; }
  .who-name { max-width: 10rem; }
}
@media (max-width: 900px) {
  .top { flex-wrap: wrap; gap: 8px 10px; padding: 10px 12px; }
  .nav-toggle { display: grid; order: -1; }
  .brand.has-logo { max-width: min(280px, calc(100vw - 11rem)); flex: 1 1 auto; }
  .brand img { width: 280px; }
  .who { gap: 8px; }
  .who .btn { padding: 7px 12px; font-size: 13px; }
  .nav {
    display: none;
    order: 4;
    flex: 1 1 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 4px 0 8px;
    border-top: 1px solid var(--line);
  }
  .top.nav-open .nav { display: flex; }
  .nav a {
    display: block;
    padding: 10px 4px;
    border-bottom: 1px solid var(--line);
  }
}
@media (max-width: 800px) {
  .lot-page { grid-template-columns: 1fr; }
  .split, .home-hero { grid-template-columns: 1fr; }
  .activity-row { grid-template-columns: 1fr; }
  .live-row { flex-wrap: wrap; }
  .countdown { white-space: normal; }
  .won-sale-head { flex-wrap: wrap; }
}
@media (max-width: 767px) {
  .wrap { width: calc(100% - 16px); margin: 12px auto 36px; }
  .cat-head h1 { font-size: 1.35rem; }
  .cat-head { margin-bottom: 4px; }
  .filters { margin: 10px 0; }
  .pager-jump { margin-left: 0; width: 100%; }
  .pager-jump select { flex: 1; min-width: 0; width: 100%; }
  .featured { margin: 8px 0 14px; }
  .feat-row { gap: 8px; }
  .feat-row .lot-card { min-width: 44%; }
  .feat-strip { padding: 12px 8px 6px; margin-bottom: 12px; }
  .feat-strip h2 { font-size: 1.05rem; }
  .feat-strip .lot-card {
    flex-basis: calc((100% - 8px) / 2);
    width: calc((100% - 8px) / 2);
    max-width: calc((100% - 8px) / 2);
  }
  .feat-strip-icon { width: 34px; height: 34px; font-size: 15px; }
  #catalog-grid .lot-card,
  .feat-row .lot-card { border-radius: 10px; }
  #catalog-grid .lot-body,
  .feat-row .lot-body { padding: 8px 8px 6px; }
  #catalog-grid .lot-body h3,
  .feat-row .lot-body h3 {
    font-size: 0.88rem;
    line-height: 1.25;
    margin: 0 0 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
  }
  .lot-card { --lot-num-h: 1.9rem; }
  .lot-num { font-size: 13px; padding: 0 6px; }
  #catalog-grid .lot-cat,
  .feat-row .lot-cat { font-size: 11px; margin: 0 0 2px; }
  #catalog-grid .lot-meta { font-size: 12px; }
  #catalog-grid .amt, .feat-row .amt { font-size: 0.95rem; }
  #catalog-grid .lot-actions { padding: 0 8px 8px; gap: 5px; }
  #catalog-grid .card-bid { gap: 4px; }
  #catalog-grid .card-bid .btn-bid,
  #catalog-grid .card-bid .btn-max,
  #catalog-grid .lot-actions > .btn {
    padding: 6px 6px;
    font-size: 12px;
    border-radius: 8px;
  }
  #catalog-grid .btn-max-amt { font-size: 12px; }
  #catalog-grid .lot-end { font-size: 11px; }
  #catalog-grid .lot-high { font-size: 12px; }
  #catalog-grid .clock { font-size: 16px; margin: 0; }
  #catalog-grid .lot-card.is-winning .flag,
  #catalog-grid .lot-card.is-won .flag,
  #catalog-grid .lot-card.is-sold .flag,
  #catalog-grid .lot-card.is-nosale .flag,
  #catalog-grid .lot-card.is-outbid .flag,
  #catalog-grid .lot-card.is-nobid .flag {
    font-size: 11px;
    padding: 4px 5px;
    margin: 4px 0 0;
    letter-spacing: 0;
    white-space: nowrap;
  }
  #catalog-grid .reserve,
  #catalog-grid .lot-card.is-lastcall .clock,
  #catalog-grid .lot-card.is-processing .clock,
  #catalog-grid .end-banner {
    font-size: 11px;
    padding: 4px 5px;
    margin: 0;
  }
  #catalog-grid .btn-watch { display: none; }
  .share-row, .cat-blurb { display: none; }
}
@media (min-width: 576px) and (max-width: 767px) {
  .feat-strip .lot-card {
    flex-basis: calc((100% - 16px) / 3);
    width: calc((100% - 16px) / 3);
    max-width: calc((100% - 16px) / 3);
  }
}
.lot-desc-btn {
  display: block; width: auto; margin: -2px 0 8px;
  border: 0; background: transparent; padding: 0;
  color: var(--accent); font: inherit; font-size: 13px; font-weight: 700;
  text-align: left; cursor: pointer;
}
.lot-desc-modal {
  position: fixed; inset: 0; z-index: 50;
  display: grid; place-items: center; padding: 16px;
}
#bid-history-modal { z-index: 100; }
#bid-history-modal .lot-desc-panel { width: min(36rem, 100%); }
.lot-desc-modal[hidden] { display: none; }
.lot-desc-backdrop {
  position: absolute; inset: 0; background: rgba(16, 20, 28, 0.55);
}
.lot-desc-panel {
  position: relative; z-index: 1;
  width: min(28rem, 100%); max-height: min(80vh, 560px);
  overflow: auto; background: #fff; border-radius: 16px;
  padding: 22px 20px 18px; box-shadow: 0 16px 50px rgba(16, 20, 28, 0.28);
}
.lot-desc-close {
  position: absolute; top: 10px; right: 10px;
  width: 36px; height: 36px; border: 0; border-radius: 50%;
  background: #f4f5f7; color: var(--ink); font: inherit; font-size: 22px;
  cursor: pointer; line-height: 1;
}
.lot-desc-panel h2 { margin: 0 32px 12px 0; font-size: 1.15rem; letter-spacing: -0.03em; }
#lot-desc-text { white-space: pre-wrap; color: var(--ink); margin: 0; line-height: 1.45; }
.lot-desc-actions { display: flex; justify-content: flex-end; margin-top: 16px; }
.lot-peek-modal {
  position: fixed; inset: 0; z-index: 80;
  display: none; place-items: center; padding: 16px;
}
.lot-peek-modal.is-open { display: grid; }
.lot-peek-modal[hidden] { display: none !important; }
.lot-peek-backdrop {
  position: absolute; inset: 0; background: rgba(16, 20, 28, 0.55);
}
.lot-peek-panel {
  position: relative; z-index: 1;
  width: min(26rem, 100%); max-height: min(92vh, 880px);
  overflow: auto; background: #fff; border-radius: 16px;
  padding: 14px 12px 12px; box-shadow: 0 16px 50px rgba(16, 20, 28, 0.28);
}
.lot-peek-close {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 36px; height: 36px; border: 0; border-radius: 50%;
  background: #f4f5f7; color: var(--ink); font: inherit; font-size: 22px;
  cursor: pointer; line-height: 1;
}
.lot-peek-panel .lot-card { border: 0; box-shadow: none; max-width: none; }
.lot-peek-panel .btn-dismiss { display: none !important; }
.lot-peek-panel .lot-desc-src[hidden] {
  display: block !important; white-space: pre-wrap;
  margin: 0 0 8px; color: var(--mute); font-size: 14px;
  max-height: 7.5em; overflow: auto;
}
.lot-peek-panel .lot-desc-btn { display: none; }
.lot-peek-loading, .lot-peek-err { margin: 36px 12px 16px; color: var(--mute); }
.lot-peek-foot { margin: 8px 4px 0; text-align: center; }
.lot-peek-foot a { font-weight: 600; font-size: 14px; }
.bid-confirm-modal {
  position: fixed; inset: 0; z-index: 95;
  display: grid; place-items: center; padding: 16px;
}
.bid-confirm-modal[hidden] { display: none; }
.bid-confirm-backdrop {
  position: absolute; inset: 0; background: rgba(16, 20, 28, 0.55);
}
.bid-confirm-panel {
  position: relative; z-index: 1;
  width: min(26rem, 100%);
  background: #fff; border-radius: 16px;
  padding: 22px 20px 18px; text-align: center;
  box-shadow: 0 16px 50px rgba(16, 20, 28, 0.28);
}
.bid-confirm-x {
  position: absolute; top: 10px; right: 10px;
  width: 36px; height: 36px; border: 0; border-radius: 50%;
  background: #f4f5f7; color: var(--ink); font: inherit; font-size: 22px;
  cursor: pointer; line-height: 1;
}
.bid-confirm-panel h2 { margin: 0 0 14px; font-size: 1.15rem; letter-spacing: -0.03em; }
#bid-confirm-lot, #max-bid-lot {
  background: #f7f7f9; border: 1px solid var(--line); border-radius: 10px;
  padding: 8px 10px; margin: 0 0 14px; text-align: left;
}
#bid-confirm-num, #max-bid-num {
  margin: 0; font-weight: 800; color: var(--accent); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
}
#bid-confirm-item, #max-bid-item { margin: 2px 0 0; font-weight: 600; }
#bid-confirm-lead { margin: 0; color: var(--ink); }
#bid-confirm-amount {
  margin: 8px 0 0; font-size: 32px; font-weight: 800; color: var(--ok); letter-spacing: -0.03em;
}
#bid-confirm-desc { margin: 14px 0 0; font-size: 13px; color: var(--mute); text-align: left; line-height: 1.45; }
.bid-confirm-actions {
  display: flex; gap: 8px; justify-content: flex-end; margin-top: 18px;
}
.bid-confirm-actions .btn { min-width: 7.5rem; }
#bid-alert-msg {
  margin: 8px 0 0; font-size: 16px; line-height: 1.45; color: var(--ink);
}
#bid-alert-modal .bid-confirm-actions { justify-content: center; }
#win-confetti {
  position: fixed;
  inset: 0;
  z-index: 35;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .lot-card.took-lead, .lot-card.got-outbid { animation: none; }
  .lot-card.is-lastcall .clock { animation: none; background-position: 50% 50%; }
  .lot-card.is-won .flag, .lot-page.is-won .flag { animation: none; background-position: 50% 50%; }
  #win-confetti { display: none !important; }
}

.sell-cms { margin: 0 0 20px; }
.sell-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 22px 20px;
  margin: 0 0 16px;
  box-shadow: 0 2px 10px rgba(16, 20, 28, 0.04);
}
.sell-panel h2 { margin: 0 0 10px; font-size: 1.35rem; letter-spacing: -0.03em; }
.sell-panel p { color: var(--mute); margin: 0 0 12px; }
.sell-panel p:last-child { margin-bottom: 0; }
.portal-graphic {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #fff;
  border-radius: 18px;
  padding: 28px 26px 24px;
  margin: 0 0 16px;
  scroll-margin-top: 80px;
}
.sell-panel, .buyout-card, #consign { scroll-margin-top: 80px; }
.portal-graphic::before,
.portal-graphic::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.portal-graphic::before {
  top: -90px; right: -80px; width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(193,18,31,0.38) 0%, rgba(193,18,31,0) 70%);
}
.portal-graphic::after {
  bottom: -110px; left: -90px; width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(193,18,31,0.22) 0%, rgba(193,18,31,0) 70%);
}
.portal-graphic > * { position: relative; z-index: 1; }
.portal-graphic-top {
  display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
}
.portal-gavel {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 6px 18px rgba(193,18,31,0.45);
}
.portal-graphic-top strong { display: block; font-size: 1.15rem; }
.portal-graphic-top small {
  display: block; color: #a0c4ff; letter-spacing: 0.14em;
  text-transform: uppercase; font-size: 11px; font-weight: 600;
}
.portal-eyebrow {
  color: #ff8b91; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; font-size: 12px; margin: 0 0 6px;
}
.portal-graphic h2 {
  margin: 0 0 10px; font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.04em; line-height: 1.08;
}
.portal-graphic h2 span { color: #ff5b65; }
.portal-lead { color: #c9d6ff; max-width: 38rem; margin: 0 0 18px; }
.portal-benefits {
  list-style: none; padding: 0; margin: 0 0 16px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px;
}
.portal-benefits li { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.portal-benefits svg {
  flex-shrink: 0; width: 36px; height: 36px; padding: 7px;
  border-radius: 50%; background: rgba(193,18,31,0.18);
  border: 1px solid rgba(193,18,31,0.7); color: #ff5b65;
}
.portal-buyout-mini {
  display: flex; flex-direction: column; gap: 4px;
  background: rgba(193,18,31,0.15); border: 1px solid rgba(193,18,31,0.45);
  border-radius: 12px; padding: 12px 14px; margin-bottom: 16px;
}
.portal-buyout-mini strong { display: block; color: #ff8b91; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.portal-buyout-mini span { color: #fff; }
.portal-graphic-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 16px;
}
.portal-cta { background: var(--accent); color: #fff; }
.portal-graphic-foot p { margin: 0; color: #c9d6ff; }
.sell-steps {
  list-style: none; padding: 0; margin: 16px 0 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.sell-steps li { text-align: center; }
.sell-steps span {
  display: grid; place-items: center;
  width: 56px; height: 56px; margin: 0 auto 10px;
  border-radius: 50%; background: var(--accent); color: #fff;
  font-weight: 800; font-size: 1.2rem;
}
.sell-steps h3 { margin: 0 0 6px; font-size: 1rem; }
.sell-steps p { font-size: 14px; }
.sell-accept {
  list-style: none; padding: 0; margin: 8px 0 14px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px 18px;
}
.sell-accept li { color: var(--ink); padding-left: 1.4rem; position: relative; }
.sell-accept li::before {
  content: ''; position: absolute; left: 0; top: 0.55em;
  width: 0.55em; height: 0.28em; border: 2px solid var(--ok);
  border-top: 0; border-right: 0; transform: rotate(-50deg);
}
.buyout-card {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e 0%, #2b1217 100%);
  color: #fff; border-radius: 16px; padding: 24px; margin: 0 0 16px;
}
.buyout-card::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(193,18,31,0.3) 0%, rgba(193,18,31,0) 70%);
}
.buyout-card > * { position: relative; z-index: 1; }
.buyout-card .kicker { color: #ff8b91; }
.buyout-card h2 { color: #fff; margin: 0 0 10px; }
.buyout-card p, .buyout-card li { color: #d8c4c7; }
.buyout-card ul { list-style: none; padding: 0; margin: 0 0 16px; }
.buyout-card li { padding: 4px 0 4px 1.4rem; position: relative; color: #fff; }
.buyout-card li::before {
  content: ''; position: absolute; left: 0; top: 0.7em;
  width: 0.55em; height: 0.28em; border: 2px solid #5cb85c;
  border-top: 0; border-right: 0; transform: rotate(-50deg);
}
.buyout-card .btn { background: var(--accent); color: #fff; }
.buyout-card .muted { color: #d8c4c7; }
.sell-sold-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.sell-sold-head h2 { margin: 0; }
.sell-sold-nav { display: flex; gap: 6px; }
.sell-sold-nav .btn { width: 36px; height: 36px; padding: 0; }
.sell-sold-track {
  display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 12px 2px 4px; -webkit-overflow-scrolling: touch;
}
.sell-sold-card {
  flex: 0 0 calc((100% - 24px) / 3); min-width: 0; scroll-snap-align: start;
  background: #fff; border-radius: 10px; padding: 8px; text-align: center;
  text-decoration: none; color: inherit; box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.sell-sold-card .img-wrap {
  aspect-ratio: 4 / 3; display: grid; place-items: center;
  overflow: hidden; border-radius: 8px; background: #eceff3;
}
.sell-sold-card img { width: 100%; height: 100%; object-fit: contain; }
.sell-sold-card .sold-ph { width: 100%; height: 100%; display: grid; place-items: center; }
.grid-bid {
  display: inline-block; margin-top: 8px;
  background: linear-gradient(135deg, #0f7a4d, #449d44);
  color: #fff; font-weight: 700; font-size: 13px;
  padding: 6px 10px; border-radius: 4px;
}
.sell-form { display: grid; gap: 12px; margin-top: 8px; max-width: none; }
.sell-form label { display: grid; gap: 4px; font-weight: 600; font-size: 14px; }
.sell-form input, .sell-form select, .sell-form textarea {
  border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; font: inherit; background: #fff;
}
.sell-form-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.req { color: var(--accent); }
.sell-callout {
  background: #f8f9fa; border-radius: 8px; padding: 12px 14px; margin: 0 0 12px;
}
.photo-label { font-weight: 600; margin: 0 0 8px; }
.photo-upload-grid { display: flex; gap: 10px; flex-wrap: wrap; }
.photo-upload-box {
  flex: 0 0 calc(20% - 8px); min-width: 92px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  height: 100px; border: 2px dashed var(--line); border-radius: 8px;
  background: #fafafa; cursor: pointer; font-size: 12px; color: var(--mute); font-weight: 600;
}
.photo-upload-box input { display: none; }
.photo-upload-box:hover { border-color: var(--accent); background: #fff5f5; }
.photo-upload-box.has-file { border-color: var(--ok); background: #f0fff0; color: var(--ok); }
.photo-ico { color: #ccc; }
.photo-upload-box.has-file .photo-ico { color: var(--ok); }
@media (max-width: 900px) {
  .portal-benefits, .sell-steps, .sell-accept, .sell-form-row { grid-template-columns: 1fr 1fr; }
  .sell-sold-card { flex-basis: calc((100% - 12px) / 2); }
}
@media (max-width: 640px) {
  .portal-benefits, .sell-steps, .sell-accept, .sell-form-row, .account-city-row { grid-template-columns: 1fr; }
  .sell-sold-card { flex-basis: 80%; }
  .photo-upload-box { flex-basis: calc(33.33% - 8px); }
  .portal-graphic, .sell-panel, .buyout-card { padding: 18px 16px; }
}

.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 0 0 18px;
}
.svc-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 2px 12px rgba(16, 20, 28, 0.07);
  border-top: 3px solid var(--accent);
}
.svc-card h2 { margin: 0 0 8px; font-size: 1.15rem; }
.svc-card p { margin: 0; color: var(--mute); font-size: 15px; }
.svc-ico {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #8e1118);
  color: #fff; display: grid; place-items: center;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(193, 18, 31, 0.28);
}
.svc-checks { grid-template-columns: 1fr; }
.buyout-card .svc-stats { margin: 18px 0 0; background: transparent; padding: 0; }
.buyout-card .svc-stats strong { color: #fff; }
.buyout-card .svc-stats span { color: #d8c4c7; }
@media (max-width: 767px) {
  .svc-grid { grid-template-columns: 1fr; }
}
.contact-cms { margin: 0 0 20px; }
.contact-card { padding: 22px; }
.contact-top {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(16rem, 1fr);
  gap: 28px;
  align-items: start;
}
.contact-top.is-details-only { grid-template-columns: 1fr; }
.contact-map iframe {
  display: block; width: 100%; height: 400px; border: 0;
  border-radius: 10px; background: #eceff3;
}
.contact-details h2 { margin: 0 0 12px; font-size: 1.25rem; letter-spacing: -0.03em; }
.contact-details p { margin: 0 0 10px; color: var(--mute); }
.contact-line {
  display: flex; align-items: center; gap: 8px; color: var(--ink);
}
.contact-line svg { flex-shrink: 0; color: var(--accent); }
.contact-hours-label {
  display: flex; align-items: center; gap: 8px;
  margin: 16px 0 4px; color: var(--ink);
}
.contact-hours-label svg { flex-shrink: 0; color: var(--accent); }
.contact-hours { margin: 0 0 8px 30px; }
.hours-table {
  width: auto;
  margin: 0 0 6px 30px;
  border-collapse: collapse;
  font-size: 15px;
}
.hours-table th {
  text-align: left;
  font-weight: 700;
  color: var(--ink);
  padding: 3px 18px 3px 0;
  white-space: nowrap;
  vertical-align: top;
}
.hours-table td {
  padding: 3px 0;
  color: var(--ink);
}
.hours-tz {
  margin: 0 0 8px 30px;
  font-size: 13px;
  color: var(--mute);
}
.contact-social {
  list-style: none; display: flex; gap: 10px;
  padding: 0; margin: 16px 0 0;
}
.contact-social a {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 10px;
  background: #f4f5f7; color: var(--ink);
}
.contact-social a:hover { background: var(--accent); color: #fff; }
.about-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #fff;
  border-radius: 18px;
  padding: 36px 28px;
  margin: 0 0 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: -90px; right: -80px; width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(193,18,31,0.35) 0%, rgba(193,18,31,0) 70%);
  pointer-events: none;
}
.about-hero > * { position: relative; }
.about-hero .kicker { color: #ff8b91; }
.about-hero h1 { color: #fff; margin: 0 0 10px; font-size: clamp(1.6rem, 4vw, 2.2rem); }
.about-hero p { margin: 0 auto; max-width: 40rem; color: #c9d6ff; }
.about-sell-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.about-tile {
  background: #f4f5f7;
  border-radius: 12px;
  padding: 18px 12px;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--ink);
  font-size: 14px;
}
.about-tile svg { color: var(--accent); }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
  color: #fff;
  border-radius: 16px;
  padding: 28px 18px;
  margin: 0 0 18px;
  text-align: center;
}
.about-stats strong { display: block; font-size: clamp(1.6rem, 4vw, 2.2rem); letter-spacing: -0.04em; }
.about-stats span {
  display: block; margin-top: 6px; color: #c9d6ff;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
}
.about-why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.about-why p { margin: 0; color: var(--mute); }
.about-why strong { color: var(--ink); }
.about-cta {
  background: linear-gradient(135deg, #c1121f, #8e1118);
  color: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  margin: 0 0 24px;
  text-align: center;
}
.about-cta h2 { color: #fff; margin: 0 0 8px; }
.about-cta p { color: rgba(255,255,255,0.92); margin: 0 0 16px; }
.about-cta-row { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.about-cta .btn { background: #fff; color: var(--accent); }
.about-cta .btn-ghost { background: transparent; color: #fff; box-shadow: inset 0 0 0 2px #fff; }
.about-cta .btn-ghost:hover { background: #fff; color: var(--accent); }
@media (max-width: 767px) {
  .about-sell-grid { grid-template-columns: 1fr 1fr; }
  .about-stats, .about-why { grid-template-columns: 1fr; }
}
.contact-status {
  display: flex; align-items: flex-start; gap: 14px;
}
.contact-status svg { flex-shrink: 0; margin-top: 2px; color: #337ab7; }
.contact-status h2 { margin: 0 0 4px; font-size: 1.15rem; }
.contact-status p { margin: 0; }
.contact-form { margin-top: 8px; }
.contact-form > .btn { justify-self: start; width: auto; }
@media (max-width: 800px) {
  .contact-top { grid-template-columns: 1fr; }
  .contact-map iframe { height: 280px; }
}

.sale-board {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  margin: 0 0 20px;
}
.sale-board-head {
  display: grid;
  grid-template-columns: minmax(140px, 220px) 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 14px;
}
.sale-board-cover {
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: #eceff3;
  color: var(--mute);
  text-decoration: none;
  font-weight: 700;
}
.sale-board-cover img { width: 100%; height: 100%; object-fit: cover; }
.sale-board-cover span { display: grid; place-items: center; height: 100%; }
.sale-board-copy h2 { margin: 0 0 6px; font-size: 1.35rem; }
.sale-board-copy h2 a { color: inherit; text-decoration: none; }
.sale-board-copy h2 a:hover { color: var(--accent); }
.sale-board-cta { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 0; }
.sale-board-lots h3 { margin: 0; font-size: 1rem; }
@media (max-width: 700px) {
  .sale-board-head { grid-template-columns: 1fr; }
  .live-auc-row { grid-template-columns: 1fr; }
  .live-auc-thumb { width: 100%; height: 180px; }
}
.live-auc-row {
  display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 16px;
  align-items: center; padding: 14px 0; border-top: 1px solid var(--line);
  text-decoration: none; color: inherit;
}
.live-auc-row:first-of-type { border-top: 0; }
.live-auc-row:hover { color: inherit; }
.live-auc-row:hover .live-auc-thumb { transform: scale(1.03); }
.live-auc-row:hover .live-auc-cta { color: var(--accent); }
.live-auc-thumb {
  width: 180px; height: 135px; object-fit: cover; border-radius: 12px;
  background: #eceff3; display: block;
  transition: transform 0.25s ease;
}
.live-auc-ph { display: grid; place-items: center; font-size: 12px; color: var(--mute); font-weight: 700; }
.live-auc-info { min-width: 0; }
.live-auc-info strong { display: block; font-size: 1.05rem; line-height: 1.25; margin: 2px 0 4px; }
.live-auc-cta { display: inline-block; margin-top: 8px; font-size: 13px; font-weight: 700; color: var(--ink); }
.home-cd {
  display: flex; gap: 6px; font-weight: 800; font-variant-numeric: tabular-nums;
  margin-top: 6px; color: var(--ink);
}
.home-cd span { background: #f4f5f7; border-radius: 6px; padding: 4px 6px; font-size: 12px; }
.live-card .home-cd span { background: #eceff3; }
.sell-card h2 span { color: #ff8b91; }
.home-sell-bullets { list-style: none; padding: 0; margin: 0 0 14px; color: #fff; }
.home-sell-bullets li { padding: 4px 0 4px 1.3rem; position: relative; }
.home-sell-bullets li::before {
  content: ''; position: absolute; left: 0; top: 0.7em;
  width: 0.5em; height: 0.28em; border: 2px solid #86efac;
  border-top: 0; border-right: 0; transform: rotate(-50deg);
}
.home-sell-cta { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.home-sell-call { color: #fff; box-shadow: inset 0 0 0 1px #5c6573; background: transparent; }
.search-hero {
  display: flex; gap: 8px; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 12px; margin: 0 0 18px;
}
.search-hero input {
  flex: 1; border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; font: inherit;
}
.cat-swipe { position: relative; margin: 0 0 28px; }
.cat-swipe-head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px; margin: 0 0 10px;
}
.cat-swipe-head h2 { margin: 0; font-size: 13px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.cat-swipe-viewall { font-size: 12px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.04em; }
.cat-swipe-viewall:hover { text-decoration: underline; }
.cat-swipe-wrap { position: relative; }
.cat-swipe-track {
  display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 4px 44px 12px;
  -webkit-overflow-scrolling: touch; scrollbar-width: thin;
}
.cat-swipe-track::-webkit-scrollbar { height: 6px; }
.cat-swipe-track::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
.cat-swipe-card {
  flex: 0 0 165px; aspect-ratio: 1 / 1; height: auto;
  scroll-snap-align: start; position: relative;
  border-radius: 10px; overflow: hidden; color: #fff;
  text-decoration: none; background: #1a1a2e;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.cat-swipe-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.18); color: #fff; }
.cat-swipe-card-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.4s ease;
}
.cat-swipe-card:hover .cat-swipe-card-img { transform: scale(1.06); }
.cat-swipe-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.22) 50%, rgba(0,0,0,0.08) 100%);
}
.cat-swipe-card-body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 12px 12px 14px; z-index: 2;
  display: grid; gap: 3px;
}
.cat-swipe-card-body strong {
  font-size: 14px; font-weight: 800; line-height: 1.2;
  text-transform: uppercase; letter-spacing: 0.03em;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.cat-swipe-card-body small {
  font-size: 11px; font-weight: 600; opacity: 0.92;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.cat-swipe-card.is-noimg { background: linear-gradient(135deg, #2c3e50 0%, #1a1a2e 100%); }
.cat-swipe-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 4; width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; color: var(--ink);
  box-shadow: 0 3px 10px rgba(0,0,0,0.14);
  font: inherit; font-size: 22px; line-height: 1; cursor: pointer;
  display: grid; place-items: center;
}
.cat-swipe-arrow.is-prev { left: 0; }
.cat-swipe-arrow.is-next { right: 0; }
.cat-swipe-arrow:hover { background: var(--paper); }
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 12px; margin: 0 0 18px;
}
.filter-bar input, .filter-bar select {
  flex: 1 1 10rem; min-width: 0; height: 42px;
  border: 1px solid var(--line); border-radius: 10px;
  padding: 9px 12px; font: inherit; color: var(--ink); background: #fff;
}
.filter-bar select {
  -webkit-appearance: none; appearance: none;
  padding-right: 2rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%235c6573' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.past-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px; margin: 12px 0 20px;
}
.past-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  overflow: hidden; color: inherit; text-decoration: none;
}
.past-card:hover { box-shadow: 0 8px 22px rgba(16,20,28,0.12); }
.past-card-img {
  height: 160px; background: #f4f5f7; display: grid; place-items: center; overflow: hidden;
}
.past-card-img img { width: 100%; height: 100%; object-fit: contain; }
.past-card-body { display: grid; gap: 4px; padding: 12px; }
.past-card-body strong {
  font-size: 14px; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.past-card-price { font-size: 17px; font-weight: 800; color: #15803d; }
.past-card-cat {
  justify-self: start; background: #e8f5e9; color: #15803d;
  font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 999px;
}
.home-news { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 0 0 24px; }
.home-news article {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px;
}
.home-news h3 { margin: 0 0 6px; }
.showcase {
  background: #fff5f3; border: 1px solid #f5c6ba; border-radius: 16px;
  padding: 18px 16px; margin: 0 0 20px;
}
.showcase.is-featured { background: #fffbeb; border-color: #ecd9a8; }
.showcase.is-recent { background: #f4f7ff; border-color: #d5def5; }
.showcase.is-past { background: #f3fbf6; border-color: #cde8d8; }
.showcase-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 12px;
}
.showcase-head h2 { margin: 0 0 4px; }
.showcase-nav { display: flex; gap: 6px; flex-shrink: 0; margin: 0; }
.showcase-nav .btn { width: 36px; height: 36px; padding: 0; }
.showcase-nav .btn:disabled { opacity: 0.35; cursor: default; }
.showcase-cta-row { margin: 12px 0 0; }
.showcase-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}
.showcase-row::-webkit-scrollbar { display: none; }
.showcase-row .grid-card {
  flex: 0 0 calc((100% - 30px) / 4);
  width: calc((100% - 30px) / 4);
  max-width: calc((100% - 30px) / 4);
  min-width: 0;
  scroll-snap-align: start;
}
@media (max-width: 900px) {
  .showcase-row .grid-card {
    flex-basis: calc((100% - 10px) / 2);
    width: calc((100% - 10px) / 2);
    max-width: calc((100% - 10px) / 2);
  }
}
@media (max-width: 520px) {
  .showcase-row .grid-card {
    flex-basis: 78%;
    width: 78%;
    max-width: 78%;
  }
}
.home-grid { display: grid; gap: 10px; }
.home-grid[hidden] { display: none !important; }
.home-grid-4 { grid-template-columns: 1fr 1fr; }
.home-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
.grid-card {
  background: #fff; border-radius: 10px; padding: 8px; text-align: center;
  text-decoration: none; color: inherit; box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.grid-card .img-wrap {
  aspect-ratio: 4 / 3; display: grid; place-items: center;
  overflow: hidden; border-radius: 8px; background: #eceff3;
}
.grid-card img { width: 100%; height: 100%; object-fit: contain; }
.home-grid .grid-bid { background: linear-gradient(135deg, #c1121f, #9b0e18); }
.home-grid .grid-bid.is-sold { background: linear-gradient(135deg, #0f7a4d, #449d44); }
.upcoming-header { display: flex; align-items: baseline; gap: 10px; margin: 8px 0 14px; }
.upcoming-header span { font-size: 14px; color: var(--mute); font-weight: 500; }
.auc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 0 0 28px; }
.auc-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  display: flex; flex-direction: column; box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.auc-card-image { position: relative; aspect-ratio: 16 / 9; background: #eceff3; display: block; }
.auc-card-image img { width: 100%; height: 100%; object-fit: cover; }
.auc-ph { display: grid; place-items: center; height: 100%; color: var(--mute); font-weight: 700; }
.auc-badge {
  position: absolute; top: 10px; left: 10px;
  color: #fff; font-size: 11px; font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 999px;
}
.auc-badge-online { background: #1976d2; }
.auc-badge-prebid { background: #f57c00; }
.auc-badge-webcast { background: #7b1fa2; }
.auc-badge-onsite { background: #256366; }
.auc-card-body { padding: 14px 16px 16px; display: flex; flex-direction: column; flex: 1; }
.auc-card-body h3 { margin: 0 0 6px; font-size: 1.05rem; }
.auc-card-body h3 a { color: inherit; text-decoration: none; }
.auc-meta { display: flex; flex-wrap: wrap; gap: 8px 12px; color: var(--mute); font-size: 13px; margin: 0 0 10px; }
.auc-status { text-align: center; font-weight: 700; font-size: 13px; padding: 8px; border-radius: 8px; margin: 0 0 8px; }
.auc-status.is-open { background: #eafaf1; color: #0f7a4d; }
.auc-status.is-soon { background: #fef9e7; color: #b7950b; }
.auc-status.is-closed { background: #f2f3f4; color: #95a5a6; }
.status-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: #0f7a4d; margin-right: 4px; animation: live-pulse 1.5s ease-in-out infinite;
}
.auc-cta {
  display: block; text-align: center; margin-top: auto;
  background: var(--accent); color: #fff; font-weight: 700;
  padding: 10px 14px; border-radius: 8px; text-decoration: none;
}
@media (max-width: 800px) {
  .home-news, .auc-grid, .home-grid-3 { grid-template-columns: 1fr; }
  .search-hero { flex-direction: column; }
}
