:root {
  --ink: #111111;
  --charcoal: #050505;
  --muted: #6f6f68;
  --line: #ddd8cf;
  --surface: #fffaf2;
  --soft: #f3eee5;
  --blue: #ff6a00;
  --blue-dark: #d95400;
  --orange: #ff6a00;
  --orange-soft: #fff1df;
  --silver: #f5f3ee;
  --green: #187843;
  --amber: #f59e0b;
  --shadow: 0 20px 42px rgba(11, 10, 8, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--soft);
  color: var(--ink);
  font-family: "Inter", "Poppins", Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
.btn,
select,
input,
textarea,
a {
  transition: 0.2s ease;
}

button:focus-visible,
.btn:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(255, 106, 0, 0.38);
  outline-offset: 3px;
}

.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;
}

.top-bar {
  align-items: center;
  background: var(--orange);
  color: #15100c;
  display: flex;
  font-size: 14px;
  font-weight: 800;
  justify-content: space-between;
  padding: 10px clamp(18px, 4vw, 48px);
}

.top-links {
  display: flex;
  gap: 18px;
}

.top-links a:hover {
  text-decoration: underline;
}

.header {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 106, 0, 0.08), transparent 36%),
    var(--charcoal);
  color: white;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(210px, 280px) minmax(240px, 1fr) auto;
  padding: 18px clamp(18px, 4vw, 48px);
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
}

.brand-logo {
  border: 1px solid rgba(255, 106, 0, 0.5);
  border-radius: 8px;
  height: 58px;
  object-fit: cover;
  width: 56px;
}

.brand strong {
  display: block;
  font-size: 25px;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.brand small {
  color: #d9d5ce;
  display: block;
  font-size: 12px;
}

.search-box {
  position: relative;
}

.search-box input {
  background: #161616;
  border: 1px solid #2b2b2b;
  border-radius: 6px;
  color: white;
  padding: 13px 44px 13px 18px;
  width: 100%;
}

.search-box i {
  color: var(--orange);
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.icons {
  display: flex;
  gap: 16px;
}

.icons a {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: grid;
  height: 42px;
  justify-items: center;
  width: 42px;
}

.icons a:hover {
  background: var(--orange);
  color: #111;
}

.category-nav {
  align-items: center;
  background: #111;
  border-bottom: 1px solid #24211e;
  border-top: 1px solid #24211e;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  justify-content: center;
  padding: 14px clamp(18px, 4vw, 48px);
}

.category-nav a {
  color: #e8e1d7;
  font-weight: 600;
  font-size: 14px;
}

.category-nav a:hover {
  color: var(--orange);
}

.nav-cta {
  background: var(--orange);
  border-radius: 6px;
  color: #111 !important;
  padding: 8px 14px;
}

.hero {
  background:
    linear-gradient(90deg, rgba(255, 106, 0, 0.15) 1px, transparent 1px),
    linear-gradient(180deg, #050505, #12100e);
  background-size: 72px 72px, auto;
  color: white;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.55fr);
  overflow: hidden;
  padding: clamp(34px, 6vw, 76px) clamp(18px, 4vw, 48px);
}

.hero h1 {
  font-size: clamp(42px, 7vw, 92px);
  letter-spacing: -0.075em;
  line-height: 0.9;
  margin: 10px 0 18px;
  max-width: 900px;
}

.hero p {
  color: #e8e1d7;
  font-size: 18px;
  max-width: 720px;
}

.eyebrow {
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--orange);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 18px;
}

.btn {
  background: var(--orange);
  border: 0;
  border-radius: 7px;
  color: #111;
  cursor: pointer;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  padding: 13px 22px;
}

.btn:hover {
  background: #ff8126;
  transform: translateY(-2px);
}

.btn-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--ink);
}

.btn-light:hover {
  background: white;
  color: var(--ink);
}

.trust-line {
  font-size: 14px !important;
}

.auction-house-hero {
  position: relative;
}

.auction-house-hero::after {
  background: var(--orange);
  bottom: 0;
  content: "";
  height: 8px;
  left: clamp(18px, 4vw, 48px);
  position: absolute;
  right: clamp(18px, 4vw, 48px);
}

.hero-brand-block {
  align-content: end;
  display: grid;
  gap: 22px;
  grid-column: 1;
  min-height: 530px;
}

.hero-brand-block img {
  border: 1px solid rgba(255, 106, 0, 0.35);
  border-radius: 18px;
  height: clamp(96px, 11vw, 148px);
  object-fit: cover;
  width: clamp(96px, 11vw, 148px);
}

.auction-label {
  background: var(--orange);
  color: #111;
  display: inline-block;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
  padding: 8px 12px;
  text-transform: uppercase;
}

.hero-copy-card {
  align-self: end;
  background: #171513;
  border: 1px solid #332820;
  border-left: 6px solid var(--orange);
  grid-column: 1;
  margin-top: -10px;
  max-width: 720px;
  padding: 24px;
}

.hero-copy-card .hero-lede {
  color: #fff8ef;
  font-size: 20px;
}

.hero .btn-light {
  color: white;
}

.bid-docket {
  align-self: stretch;
  background: #f8f2e8;
  border: 1px solid #3b3027;
  box-shadow: -12px 12px 0 rgba(255, 106, 0, 0.82);
  color: #111;
  display: grid;
  grid-column: 2;
  grid-row: 1 / span 2;
  grid-template-rows: auto 1fr auto;
  min-height: 590px;
}

.docket-top {
  align-items: center;
  background: #111;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
}

.docket-top span,
.docket-top strong {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-vehicle {
  height: 100%;
  min-height: 270px;
}

.docket-body {
  padding: 22px;
}

.docket-body h2 {
  font-size: 28px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.docket-body p {
  color: #5b554e;
  font-size: 14px;
  margin: 8px 0 18px;
}

.docket-bid {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  margin-bottom: 18px;
  padding: 16px 0;
}

.docket-bid span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.docket-bid strong {
  color: var(--orange);
  display: block;
  font-size: 40px;
  letter-spacing: -0.05em;
}

.hero-panel {
  align-self: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  padding: 24px;
  backdrop-filter: blur(14px);
}

.hero-panel > div {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 20px;
}

.stat-value {
  display: block;
  font-size: 34px;
  font-weight: 800;
}

.mini-category {
  align-items: center;
  display: flex;
  gap: 12px;
}

.mini-category i {
  color: #bfdbfe;
  font-size: 26px;
}

.section {
  padding: 64px clamp(18px, 4vw, 48px);
}

.section.soft {
  background: #f9f4eb;
}

.section-header {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 18px;
}

.section-header h2,
.split h2 {
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.065em;
}

.section-header a {
  color: var(--orange);
  font-weight: 700;
}

.auction-ticker {
  background: var(--orange);
  color: #111;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 clamp(18px, 4vw, 48px);
}

.auction-ticker div {
  border-left: 1px solid rgba(17, 17, 17, 0.18);
  padding: 22px 18px;
}

.auction-ticker div:last-child {
  border-right: 1px solid rgba(17, 17, 17, 0.18);
}

.auction-ticker strong {
  display: block;
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.auction-ticker span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-board-section {
  background: #100f0e;
  color: white;
}

.board-heading {
  align-items: end;
  border-bottom: 1px solid #2a251f;
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 18px;
}

.board-heading h2 {
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.board-heading a {
  color: var(--orange);
  font-weight: 900;
}

.auction-grid,
.category-grid,
.feature-grid,
.dashboard-grid,
.admin-grid,
.filter-grid,
.form-grid {
  display: grid;
  gap: 20px;
}

.auction-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.auction-grid.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.auction-card,
.category-card,
.feature-grid article,
.process-grid article,
.panel,
.dashboard-card,
.admin-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.auction-card {
  border-top: 5px solid var(--orange);
  overflow: hidden;
}

.auction-board .auction-card {
  background: #171513;
  border-color: #2d2822;
  box-shadow: none;
  color: white;
}

.vehicle-placeholder {
  align-items: center;
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 106, 0, 0.48), transparent 24%),
    linear-gradient(135deg, rgba(5, 5, 5, 0.98), rgba(39, 31, 24, 0.98)),
    linear-gradient(45deg, rgba(255,255,255,0.04) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.04) 50%, rgba(255,255,255,0.04) 75%, transparent 75%);
  background-size: auto, auto, 24px 24px;
  color: white;
  display: flex;
  height: 180px;
  justify-content: center;
  position: relative;
}

.vehicle-placeholder i {
  align-items: center;
  background: linear-gradient(145deg, #fff8ed, #b8b0a5);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.8);
  color: #16110d;
  display: grid;
  font-size: 42px;
  height: 92px;
  justify-items: center;
  opacity: 0.96;
  width: 92px;
}

.vehicle-placeholder span {
  background: var(--orange);
  color: #111;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  left: 14px;
  padding: 7px 10px;
  position: absolute;
  top: 14px;
}

.auction-body {
  padding: 18px;
}

.auction-body h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.meta {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 13px;
}

.auction-board .meta {
  color: #bdb5ab;
}

.bid-line {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 18px 0;
}

.bid-line strong {
  color: var(--orange);
  display: block;
  font-size: 24px;
}

.badge {
  background: #efe7db;
  border-radius: 4px;
  color: #42342a;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 9px;
}

.badge.green {
  background: #e4f5e7;
  color: #166534;
}

.badge.amber {
  background: #fef3c7;
  color: #92400e;
}

.auction-actions {
  display: grid;
  gap: 10px;
  grid-template-columns: auto 1fr;
}

.watch-btn {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--orange);
  cursor: pointer;
  padding: 11px 14px;
}

.auction-board .watch-btn {
  border-color: #3d352e;
}

.category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-card {
  padding: 22px;
}

.category-card:hover,
.auction-card:hover,
.dashboard-card:hover {
  transform: translateY(-4px);
}

.category-card i,
.feature-grid i {
  color: var(--orange);
  font-size: 28px;
  margin-bottom: 12px;
}

.category-band {
  align-items: start;
  background: #f8f2e8;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.45fr);
}

.category-intro {
  border-left: 8px solid var(--orange);
  padding-left: 20px;
  position: sticky;
  top: 24px;
}

.category-intro h2 {
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: -0.07em;
  line-height: 0.95;
  margin: 8px 0 14px;
}

.category-intro p:not(.eyebrow) {
  color: var(--muted);
}

.category-ledger {
  gap: 12px;
}

.category-ledger .category-card {
  align-items: center;
  border-radius: 0;
  box-shadow: none;
  display: grid;
  gap: 12px;
  grid-template-columns: 42px 1fr;
  min-height: 112px;
}

.category-ledger .category-card i {
  margin: 0;
}

.category-ledger .category-card p {
  grid-column: 2;
}

.category-card p,
.feature-grid p,
.dashboard-card p,
.admin-card p {
  color: var(--muted);
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.why-panel {
  background: #111;
  color: white;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
}

.why-copy {
  border-top: 6px solid var(--orange);
  padding-top: 20px;
}

.why-copy h2 {
  font-size: clamp(32px, 5vw, 62px);
  line-height: 0.94;
}

.why-copy p:not(.eyebrow) {
  color: #d4c9bc;
  margin-top: 18px;
}

.feature-ledger {
  gap: 0;
  margin-top: 0;
}

.feature-ledger article {
  background: transparent;
  border-color: #2e2924;
  border-radius: 0;
  box-shadow: none;
}

.feature-ledger p {
  color: #c6bbae;
}

.feature-grid article,
.process-grid article {
  padding: 24px;
}

.closing-row {
  background: #fdf8ef;
}

.closing-row > div:first-child {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.closing-row h2 {
  font-size: clamp(32px, 5vw, 60px);
  letter-spacing: -0.075em;
  line-height: 0.95;
}

.process-section {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.05) 1px, transparent 1px),
    var(--soft);
  background-size: 48px 48px;
}

.process-number {
  color: var(--orange);
  display: block;
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 1;
  margin-bottom: 14px;
}

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

.process-grid ol {
  margin: 16px 0 0 20px;
}

.process-grid li {
  margin: 8px 0;
}

.stats-strip {
  background: var(--charcoal);
  color: white;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
  padding: 34px clamp(18px, 4vw, 48px);
  text-align: center;
}

.stats-strip strong {
  display: block;
  font-size: 34px;
}

.stats-strip span {
  color: #cbd5e1;
}

.page-hero {
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 106, 0, 0.32), transparent 24%),
    linear-gradient(135deg, var(--charcoal), #1d1814);
  color: white;
  padding: 48px clamp(18px, 4vw, 48px);
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 54px);
}

.page-hero p {
  color: #e8e1d7;
  margin-top: 10px;
  max-width: 760px;
}

.filters,
.panel {
  padding: 22px;
}

.filter-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: #4a4038;
  font-size: 13px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  border: 1px solid var(--line);
  background: #fffdf8;
  border-radius: 7px;
  padding: 12px 13px;
  width: 100%;
}

.details-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
}

.gallery-placeholder {
  display: grid;
  gap: 14px;
  grid-template-columns: 2fr 1fr;
}

.gallery-placeholder .vehicle-placeholder {
  border-radius: 22px;
  height: 360px;
}

.gallery-thumbs {
  display: grid;
  gap: 14px;
}

.gallery-thumbs .vehicle-placeholder {
  height: auto;
}

.spec-list,
.bid-history,
.notification-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.spec-list div,
.bid-history div,
.notification-list div {
  background: #f7f0e6;
  border-radius: 7px;
  display: flex;
  justify-content: space-between;
  padding: 12px;
}

.form-steps {
  display: grid;
  gap: 24px;
}

.form-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-grid .wide {
  grid-column: 1 / -1;
}

.upload-box {
  align-items: center;
  border: 2px dashed #cbd5e1;
  border-radius: 8px;
  color: var(--muted);
  display: grid;
  min-height: 120px;
  padding: 20px;
  text-align: center;
}

.dashboard-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dashboard-card,
.admin-card {
  padding: 22px;
}

.dashboard-card strong,
.admin-card strong {
  display: block;
  font-size: 30px;
}

.admin-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.login-container {
  background: white;
  border-top: 6px solid var(--orange);
  border-radius: 10px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  margin: 80px auto;
  max-width: 420px;
  padding: 34px;
}

.login-container input,
.login-container button {
  border-radius: 7px;
  padding: 12px;
}

.login-container input {
  border: 1px solid var(--line);
}

.login-container button {
  background: var(--orange);
  border: 0;
  color: #111;
  cursor: pointer;
  font-weight: 700;
}

footer {
  align-items: center;
  background: var(--charcoal);
  color: white;
  display: flex;
  gap: 12px;
  justify-content: center;
  padding: 28px;
}

footer img {
  border-radius: 6px;
  height: 38px;
  object-fit: cover;
  width: 38px;
}

.listing-type-row {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 12px;
  font-weight: 800;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.auction-board .listing-type-row {
  color: #c6bbae;
}

.quick-filter-row,
.badge-row,
.action-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-filter-row {
  margin: 22px 0;
}

.action-stack {
  margin-top: 18px;
}

.action-stack .btn,
.action-stack .watch-btn {
  justify-content: center;
  text-align: center;
  width: 100%;
}

.empty-state {
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: 10px;
  color: var(--muted);
  grid-column: 1 / -1;
  padding: 28px;
  text-align: center;
}

.marketplace-story {
  background: #111;
  color: white;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
}

.listing-rail {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.seller-grid {
  display: grid;
  gap: 16px;
}

.seller-card,
.seller-profile-card,
.listing-preview {
  align-items: center;
  background: #f8f2e8;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  gap: 16px;
  grid-template-columns: auto 1fr auto;
  padding: 18px;
}

.seller-avatar {
  align-items: center;
  background: #111;
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  display: grid;
  font-weight: 900;
  height: 58px;
  justify-items: center;
  width: 58px;
}

.why-panel .seller-card {
  background: #171513;
  border-color: #2e2924;
  color: white;
}

.why-panel .seller-card p {
  color: #c6bbae;
}

.clearout-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.included-list {
  margin: 14px 0 0 20px;
}

.included-list li {
  margin: 8px 0;
}

.safety-note {
  background: #191410;
  border-left: 5px solid var(--orange);
  border-radius: 8px;
  color: #fff4e8 !important;
  padding: 14px;
}

.quality-meter {
  background: #e5ded2;
  border-radius: 999px;
  height: 12px;
  margin: 14px 0;
  overflow: hidden;
}

.quality-meter span {
  background: var(--orange);
  display: block;
  height: 100%;
}

.message-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
}

.conversation-list {
  align-self: start;
}

.listing-preview {
  grid-template-columns: auto 1fr;
  margin: 18px 0;
}

.listing-preview i {
  color: var(--orange);
  font-size: 32px;
}

.chat-thread {
  background: #f8f2e8;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  gap: 12px;
  margin: 18px 0;
  padding: 16px;
}

.chat-thread p {
  background: white;
  border-radius: 10px;
  margin: 0;
  padding: 12px;
}

.chat-thread span {
  color: var(--muted);
  font-size: 12px;
}

.system-message {
  border-left: 5px solid var(--orange);
}

.table-wrap {
  overflow-x: auto;
}

.compare-table {
  border-collapse: collapse;
  min-width: 780px;
  width: 100%;
}

.compare-table th,
.compare-table td {
  border: 1px solid var(--line);
  padding: 14px;
  text-align: left;
  vertical-align: top;
}

.compare-table th {
  background: #111;
  color: white;
  min-width: 160px;
  text-transform: capitalize;
}

.compare-table td {
  background: #fffaf2;
}

.wide {
  grid-column: 1 / -1;
}

.feature-grid article.panel,
.panel article {
  padding: 22px;
}

.feature-grid article h3 {
  margin-bottom: 8px;
}

.why-panel .feature-grid article p,
.marketplace-story .feature-grid article p {
  color: #c6bbae;
}

.why-panel .feature-grid article h3,
.marketplace-story .feature-grid article h3,
.why-panel .feature-grid article,
.marketplace-story .feature-grid article {
  color: white;
}

.dashboard-card,
.admin-card {
  border-top: 5px solid var(--orange);
}

.panel > h2 {
  letter-spacing: -0.04em;
}

.wanted-callout {
  align-items: stretch;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 106, 0, 0.14), transparent 26%),
    #0f0d0b;
  color: white;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
}

.wanted-callout .btn-light {
  color: white;
}

.wanted-preview-stack {
  display: grid;
  gap: 16px;
}

.wanted-card,
.response-card,
.insight-card,
.match-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.wanted-card,
.response-card {
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr;
  padding: 18px;
}

.wanted-callout .wanted-card {
  background: #181512;
  border-color: #312820;
  color: white;
  box-shadow: none;
}

.wanted-callout .wanted-card p,
.wanted-callout .wanted-card .meta,
.wanted-callout .wanted-card .listing-type-row {
  color: #c6bbae;
}

.wanted-icon {
  align-items: center;
  background:
    linear-gradient(145deg, #ff7a1a, #dc5200);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(255, 106, 0, 0.22), inset 0 1px 0 rgba(255,255,255,0.28);
  color: #111;
  display: grid;
  font-size: 28px;
  height: 64px;
  justify-items: center;
  width: 64px;
}

.wanted-budget {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  margin: 14px 0;
  padding: 12px 0;
}

.wanted-budget span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wanted-budget strong {
  color: var(--orange);
  display: block;
  font-size: 24px;
}

.match-explain {
  background: var(--orange-soft);
  border-left: 5px solid var(--orange);
  border-radius: 8px;
  color: #3b2a1c !important;
  font-weight: 700;
  margin: 14px 0;
  padding: 12px;
}

.demand-band {
  background: #f8f2e8;
}

.insight-card {
  align-items: center;
  display: flex;
  gap: 14px;
  padding: 18px;
}

.insight-card i {
  align-items: center;
  background: #111;
  border-radius: 12px;
  color: var(--orange);
  display: grid;
  flex: 0 0 48px;
  height: 48px;
  justify-items: center;
  margin: 0;
  width: 48px;
}

.insight-card p {
  color: var(--ink);
  font-weight: 800;
}

.response-card {
  box-shadow: none;
  margin-bottom: 14px;
}

.match-card {
  padding: 0 0 12px;
  overflow: hidden;
}

.match-card .auction-card {
  border: 0;
  box-shadow: none;
}

.premium-icon-list article i,
.feature-grid article > i {
  align-items: center;
  background: linear-gradient(145deg, #17120e, #292019);
  border: 1px solid rgba(255, 106, 0, 0.32);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  color: var(--orange);
  display: grid;
  height: 54px;
  justify-items: center;
  width: 54px;
}

@media (max-width: 1100px) {
  .auction-grid,
  .auction-grid.compact,
  .feature-grid,
  .admin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-grid,
  .dashboard-grid,
  .filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header,
  .hero,
  .details-layout {
    grid-template-columns: 1fr;
  }

  .hero-brand-block,
  .hero-copy-card,
  .bid-docket {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-brand-block {
    min-height: auto;
  }

  .bid-docket {
    min-height: auto;
  }

  .category-band,
  .why-panel,
  .marketplace-story,
  .wanted-callout,
  .message-layout {
    grid-template-columns: 1fr;
  }

  .category-intro {
    position: static;
  }

  .seller-card,
  .seller-profile-card {
    grid-template-columns: auto 1fr;
  }

  .seller-card .btn {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .top-bar,
  .section-header,
  .bid-line,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .auction-grid,
  .auction-grid.compact,
  .category-grid,
  .feature-grid,
  .process-grid,
  .stats-strip,
  .dashboard-grid,
  .admin-grid,
  .filter-grid,
  .form-grid,
  .gallery-placeholder {
    grid-template-columns: 1fr;
  }

  .header {
    gap: 16px;
  }

  .icons {
    width: 100%;
  }

  .icons a {
    flex: 1;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-bottom: 44px;
  }

  .hero h1 {
    font-size: clamp(40px, 15vw, 58px);
  }

  .hero-copy-card {
    padding: 18px;
  }

  .auction-ticker {
    grid-template-columns: 1fr 1fr;
  }

  .auction-ticker div:nth-child(2n) {
    border-right: 1px solid rgba(17, 17, 17, 0.18);
  }

  .board-heading,
  .closing-row > div:first-child {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .category-ledger .category-card {
    grid-template-columns: 36px 1fr;
  }

  .seller-card,
  .seller-profile-card,
  .listing-preview,
  .wanted-card,
  .response-card {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .quick-filter-row .badge {
    flex: 1 1 140px;
    justify-content: center;
  }
}

.tour-overlay {
  align-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 122, 24, 0.24), transparent 34%),
    rgba(7, 7, 8, 0.72);
  backdrop-filter: blur(10px);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 1000;
}

.tour-card {
  background: linear-gradient(145deg, #fffaf2, #ffffff 48%, #fff3e6);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 30px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
  max-width: 520px;
  padding: 34px;
  position: relative;
  width: min(100%, 520px);
}

.tour-card h2 {
  color: #111111;
  font-size: clamp(30px, 5vw, 46px);
  margin: 10px 0 12px;
}

.tour-card p {
  color: #3c352d;
  font-size: 16px;
  line-height: 1.7;
}

.tour-close {
  align-items: center;
  background: #111111;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 40px;
}

.tour-progress {
  display: flex;
  gap: 8px;
  margin: 24px 0;
}

.tour-progress span {
  background: rgba(17, 17, 17, 0.14);
  border-radius: 999px;
  flex: 1;
  height: 7px;
}

.tour-progress span.active {
  background: linear-gradient(90deg, #ff7a18, #f2b705);
}

.tour-actions {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.tour-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}
