/* ===== GLOBAL RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; padding-top: 104px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-main); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 480px;
  background: var(--white);
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, #fff 30%, rgba(255,255,255,0.5) 50%, transparent 68%), url('../images/hero-bg.jpg');
  background-size: auto, 68% auto;
  background-position: center, right top;
  background-repeat: no-repeat;
  background-repeat: no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 32px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero-left { max-width: 580px; }

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: 74px;
  font-weight: 800;
  line-height: 0.93;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text);
  line-height: 1.68;
  margin-bottom: 22px;
  max-width: 420px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: 3px;
  transition: background 0.2s;
}

.btn-hero-primary:hover { background: var(--gold-dark); }

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 3px;
  border: 1.5px solid rgba(0,0,0,0.3);
  transition: border-color 0.2s, background 0.2s;
}

.btn-hero-secondary:hover { border-color: var(--dark); background: rgba(0,0,0,0.04); }

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
}

.hero-trust-item { display: flex; align-items: center; gap: 10px; }

.trust-icon {
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(0,0,0,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.trust-text strong {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
}

.trust-text span {
  font-size: 10.5px;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Live Auction Card */
.hero-live-card {
  background: var(--white);
  border-radius: 8px;
  padding: 18px 20px;
  width: 265px;
  flex-shrink: 0;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 1.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.live-card-inner { display: flex; gap: 12px; align-items: flex-start; }

.live-card-img {
  width: 80px;
  height: 60px;
  border-radius: 5px;
  overflow: hidden;
  background: linear-gradient(135deg, #c8c8c8 0%, #a0a0a0 100%);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.live-card-img img { width: 100%; height: 100%; object-fit: cover; }

.gun-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 10px;
}

.bid-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.bid-amount {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.live-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 11.5px;
}

.bids-count { color: var(--text-muted); }

.time-left {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  color: var(--gold);
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 28px 20px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-icon { color: var(--gold); flex-shrink: 0; }

.stat-number {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 3px;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  color: var(--text-muted);
}

/* ===== SECTION HEADERS ===== */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--dark);
  letter-spacing: 0.8px;
}

.section-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}

.section-link:hover { color: var(--gold); }

/* ===== CATEGORIES ===== */
.categories-section {
  padding: 24px 0 32px;
  background: var(--white);
}

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

.category-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  display: block;
  transition: transform 0.25s, box-shadow 0.25s;
}

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

.category-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.35s;
}

.category-card:hover .category-card-bg { transform: scale(1.06); }

.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,12,22,0.88) 0%, rgba(5,12,22,0.2) 55%, transparent 100%);
  z-index: 1;
}

.category-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 14px 12px 16px;
}

.category-card-icon { display: none; }
.category-card-icon-hidden {
  width: 22px;
  height: 22px;
  margin-bottom: 5px;
  color: var(--gold);
}

.category-card-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.1;
  margin-bottom: 3px;
}

.category-card-count {
  font-size: 11px;
  color: rgba(255,255,255,0.58);
}

/* ===== FEATURED AUCTIONS ===== */
.featured-section {
  padding: 24px 0 52px;
  background: var(--off-white);
}

.featured-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
}

.featured-eyebrow {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}

.featured-sub {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 3px;
}

.featured-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

.carousel-btn {
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  font-size: 16px;
  transition: border-color 0.2s, color 0.2s;
}

.carousel-btn:hover { border-color: var(--gold); color: var(--gold); }

.auctions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.auction-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.25s;
}

.auction-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.auction-card-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.auction-card-img-wrap .auction-img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.35s;
}

.auction-card:hover .auction-img-bg { transform: scale(1.04); }

.auction-timer {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 2;
}

.timer-icon { color: #000; }

.auction-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 14px;
  z-index: 2;
  transition: color 0.2s;
}

.auction-wishlist:hover { color: var(--red); }

.auction-card-body { padding: 14px 16px 16px; }

.auction-card-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 12px;
  min-height: 38px;
}

.auction-bid-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 14px;
}

.auction-bid-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.auction-bid-amount {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.auction-bid-count { text-align: right; }

.auction-bid-count strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.auction-bid-count span { font-size: 11.5px; color: var(--text-muted); }

.reserve-progress {
  height: 4px;
  background: #e8e8e8;
  border-radius: 2px;
  margin-bottom: 8px;
  overflow: hidden;
}

.reserve-progress-bar {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
}

.reserve-tag {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.reserve-tag--met { color: #27ae60; }

.btn-bid {
  display: block;
  width: 100%;
  padding: 11px;
  background: var(--blue-bid);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  text-align: center;
  transition: background 0.2s;
}

.btn-bid:hover { background: var(--blue-bid-hover); }

/* ===== PROMO BANNERS ===== */
.promo-section {
  padding: 52px 0;
  background: var(--white);
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.promo-banner-large {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 310px;
  display: flex;
  align-items: flex-end;
  background: #0d1f35;
}

.promo-banner-large .promo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.6;
}

.promo-banner-large-content {
  position: relative;
  z-index: 2;
  padding: 36px 40px;
}

.promo-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.promo-banner-large-content h2 {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.92;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.promo-banner-large-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  margin-bottom: 24px;
  line-height: 1.55;
  max-width: 300px;
}

.btn-promo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 3px;
  transition: background 0.2s;
}

.btn-promo:hover { background: var(--gold-dark); }

.promo-right { display: flex; flex-direction: column; gap: 18px; }

.promo-banner-small {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  flex: 1;
  min-height: 146px;
  background: var(--navy-light);
  display: flex;
  align-items: center;
}

.promo-banner-small .promo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}

.promo-banner-small-content {
  position: relative;
  z-index: 2;
  padding: 26px 30px;
}

.promo-banner-small-content h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.3px;
  margin-bottom: 5px;
}

.promo-banner-small-content p {
  font-size: 13px;
  color: rgba(255,255,255,0.58);
  margin-bottom: 14px;
}

.promo-small-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.2s;
}

.promo-small-link:hover { gap: 10px; }

/* ===== WHY CHOOSE ===== */
.why-section {
  padding: 60px 0;
  background: #f8f8f8;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 40px;
  letter-spacing: 0.8px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(200, 134, 26, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  margin-bottom: 4px;
}

.why-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.why-item p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 180px;
}

/* ===== SELL CTA ===== */
.sell-section { padding: 60px 0; background: var(--white); }

.sell-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sell-img-wrap {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #c8c0b0;
}

.sell-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

.sell-content h2 {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 6px;
}

.sell-content h2 span { color: var(--gold); }

.sell-content > p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.sell-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 30px; }

.sell-feature { display: flex; align-items: flex-start; gap: 12px; }

.sell-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(200, 134, 26, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.sell-feature-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.sell-feature-text span { font-size: 12px; color: var(--text-muted); line-height: 1.4; }

.btn-sell {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 3px;
  border: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-sell:hover { background: var(--gold-dark); transform: translateY(-1px); }

.sell-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.sell-tagline {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
}

.tagline-arrow {
  flex-shrink: 0;
  opacity: 0.5;
}

/* ===== PARTNERS ===== */
.partners-section {
  padding: 36px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.partners-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.partner-text {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: #aaa;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  cursor: default;
}

.partner-text:hover { color: var(--gold); }
