@charset "UTF-8";
/* =================================================================
   PakVehicles — Brand Theme (Dark + Red + Chrome)
   Inspired by logo: black base, bold red accent, silver/chrome highlights
   ================================================================= */

:root {
  --red: #E50914;
  --red-hover: #FF1F2D;
  --red-deep: #B30710;
  --dark: #0A0A0A;
  --surface: #141414;
  --card: #1A1A1A;
  --border: #27272A;
  --muted: #A1A1AA;
  --chrome: linear-gradient(135deg, #FFFFFF 0%, #C0C0C0 50%, #888888 100%);
  --chrome-text: linear-gradient(180deg, #FFFFFF 0%, #C0C0C0 60%, #888888 100%);
}

* { -webkit-font-smoothing: antialiased; }

body { background: #0A0A0A; }

/* ===== Text Effects ===== */
.text-chrome {
  background: var(--chrome-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px rgba(255,255,255,0.1);
}

.text-gradient-red {
  background: linear-gradient(180deg, #FF3340 0%, #E50914 50%, #B30710 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(229, 9, 20, 0.3);
}

.brand-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  transition: all 0.3s;
  white-space: nowrap;
}
.brand-text:hover { color: var(--red); }

/* ===== Buttons ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: linear-gradient(180deg, #FF1F2D 0%, #E50914 50%, #B30710 100%);
  color: white;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 14px rgba(229, 9, 20, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: all 0.2s;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(229, 9, 20, 0.55), inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: transparent;
  color: white;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: all 0.2s;
  cursor: pointer;
}
.btn-outline:hover {
  border-color: var(--red);
  background: rgba(229, 9, 20, 0.1);
  color: var(--red);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: #0A0A0A;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.18), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(229, 9, 20, 0.08), transparent 50%),
    url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  filter: grayscale(0.3) contrast(1.1);
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.85) 60%, #0A0A0A 100%);
}

/* Hero search card */
.search-card {
  background: linear-gradient(180deg, rgba(26,26,26,0.95) 0%, rgba(15,15,15,0.95) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4),
              0 0 0 1px rgba(229, 9, 20, 0.1),
              inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
}
.search-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(229,9,20,0.4), transparent 40%, transparent 60%, rgba(192,192,192,0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.search-field {
  display: flex;
  flex-direction: column;
}
.search-field label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 600;
}
.search-field select {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
  color: white;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23A1A1AA' viewBox='0 0 16 16'%3E%3Cpath d='M3.204 5h9.592L8 10.481 3.204 5zm-.753.659l4.796 5.48a1 1 0 0 0 1.506 0l4.796-5.48c.566-.647.106-1.659-.753-1.659H3.204a1 1 0 0 0-.753 1.659z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  transition: all 0.2s;
  cursor: pointer;
}
.search-field select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.15);
}

.search-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: linear-gradient(180deg, #FF1F2D 0%, #E50914 50%, #B30710 100%);
  color: white;
  font-weight: 700;
  font-size: 15px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 24px rgba(229, 9, 20, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: all 0.2s;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(229, 9, 20, 0.55);
}

.chip {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
  font-weight: 500;
}
.chip:hover {
  background: rgba(229, 9, 20, 0.15);
  border-color: rgba(229, 9, 20, 0.3);
  color: white;
}

/* ===== Live Pill / Auction ===== */
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: linear-gradient(180deg, #FF1F2D 0%, #E50914 100%);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  border-radius: 4px;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(229,9,20,0.5);
}

.auction-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
}
.auction-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229,9,20,0.5);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5), 0 0 30px rgba(229,9,20,0.15);
}

.auction-img {
  position: relative;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
}
.auction-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85) 100%);
}

.auction-tag-live {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 2px 12px rgba(229,9,20,0.6);
  animation: pulse-live 2s infinite;
}
@keyframes pulse-live {
  0%, 100% { box-shadow: 0 2px 12px rgba(229,9,20,0.6); }
  50% { box-shadow: 0 2px 24px rgba(229,9,20,0.9); }
}

.auction-timer {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  color: white;
  z-index: 2;
}
.auction-bids {
  position: absolute;
  bottom: 14px;
  right: 12px;
  padding: 4px 10px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  color: white;
  font-size: 11px;
  z-index: 2;
}

.bid-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 1.5px solid var(--red);
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.2s;
  cursor: pointer;
}
.bid-btn:hover {
  background: linear-gradient(180deg, #FF1F2D 0%, #E50914 50%, #B30710 100%);
  color: white;
  box-shadow: 0 4px 16px rgba(229,9,20,0.4);
}

/* ===== Badges ===== */
.badge-verified {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
  background: rgba(34, 197, 94, 0.15);
  color: #4ADE80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.badge-verified-sm {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
  background: rgba(34, 197, 94, 0.15);
  color: #4ADE80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.badge-featured {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #0A0A0A;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  border-radius: 4px;
  z-index: 2;
}
.badge-import {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  background: linear-gradient(135deg, #C0C0C0, #707070);
  color: #0A0A0A;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  border-radius: 4px;
  z-index: 2;
}
.badge-deal {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 0 16px rgba(229,9,20,0.5);
}

/* ===== Body Type Cards ===== */
.body-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.25s;
  cursor: pointer;
}
.body-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(229,9,20,0.15);
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}
.body-icon {
  font-size: 36px;
  margin-bottom: 12px;
  filter: grayscale(0.2);
}
.body-card:hover .body-icon { filter: none; transform: scale(1.1); }
.body-name {
  font-weight: 700;
  font-size: 14px;
  color: white;
  margin-bottom: 4px;
}
.body-count {
  font-size: 11px;
  color: var(--muted);
}

/* ===== Filter Tabs ===== */
.filter-tab {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-tab:hover {
  border-color: rgba(229,9,20,0.5);
  color: white;
}
.filter-tab.active {
  background: linear-gradient(180deg, #FF1F2D 0%, #E50914 100%);
  border-color: var(--red);
  color: white;
  box-shadow: 0 4px 12px rgba(229,9,20,0.3);
}

/* ===== Car Cards ===== */
.car-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s;
  display: block;
}
.car-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229,9,20,0.4);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4), 0 0 24px rgba(229,9,20,0.1);
}
.car-img {
  position: relative;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
}
.car-body { padding: 16px; }
.car-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
  font-size: 11px;
  color: var(--muted);
}
.car-meta span { white-space: nowrap; }
.car-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.heart-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 2;
}
.heart-btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.1);
}

/* ===== Budget Cards ===== */
.budget-card {
  display: block;
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(180deg, var(--card) 0%, #0F0F0F 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.budget-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(229,9,20,0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}
.budget-card:hover { border-color: var(--red); transform: translateY(-3px); }
.budget-card:hover::before { opacity: 1; }
.budget-amount {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  position: relative;
}
.budget-amount-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  background: var(--chrome-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 6px 0 12px;
  position: relative;
}
.budget-count {
  font-size: 12px;
  color: var(--red);
  font-weight: 600;
  position: relative;
}

/* ===== How it works ===== */
.step-card {
  position: relative;
  padding: 36px 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.25s;
  overflow: hidden;
}
.step-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
}
.step-number {
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  background: var(--chrome-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.25;
}
.step-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(229,9,20,0.15), rgba(229,9,20,0.05));
  border: 1px solid rgba(229,9,20,0.3);
  border-radius: 14px;
  font-size: 28px;
  margin-bottom: 18px;
}

/* ===== Sell CTA ===== */
.cta-bg {
  background-image:
    radial-gradient(ellipse at 70% 50%, rgba(229,9,20,0.25), transparent 60%),
    linear-gradient(180deg, #0A0A0A 0%, #141414 100%);
}
.cta-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta-phone {
  width: 280px;
  aspect-ratio: 9 / 16;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 8px solid #2a2a2a;
  border-radius: 36px;
  padding: 24px 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 80px rgba(229,9,20,0.15);
  position: relative;
}
.cta-phone::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: #0a0a0a;
  border-radius: 999px;
}
.phone-screen {
  margin-top: 24px;
  padding: 18px;
  background: linear-gradient(180deg, #141414 0%, #0a0a0a 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.phone-bar {
  margin-top: 14px;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
}
.phone-bar-fill {
  height: 100%;
  width: 72%;
  background: linear-gradient(90deg, var(--red), #FF6B6B);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(229,9,20,0.6);
}
.phone-btn {
  margin-top: 18px;
  width: 100%;
  padding: 12px;
  background: linear-gradient(180deg, #FF1F2D 0%, #E50914 50%, #B30710 100%);
  color: white;
  font-weight: 700;
  font-size: 13px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

/* ===== Testimonial ===== */
.testimonial {
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.25s;
}
.testimonial:hover {
  border-color: rgba(229,9,20,0.4);
}
.avatar {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: white;
  font-weight: 700;
  font-size: 13px;
  border-radius: 50%;
  letter-spacing: 0.05em;
}

/* ===== Footer ===== */
.footer-h {
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.footer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}
.footer-list a {
  color: var(--muted);
  transition: color 0.2s;
}
.footer-list a:hover { color: var(--red); }

.social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: white;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s;
}
.social-icon:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}

/* ===== Misc ===== */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-weight: 600;
  font-size: 14px;
  transition: gap 0.2s;
}
.link-arrow:hover { gap: 10px; }
.link-arrow span { transition: transform 0.2s; }
.link-arrow:hover span { transform: translateX(4px); }

.logo-mark {
  filter: drop-shadow(0 0 12px rgba(229,9,20,0.4));
}

/* ===== LISTINGS PAGE STYLES ===== */
.filter-section {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.filter-section:last-child { border-bottom: 0; }
.filter-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  cursor: pointer;
  font-size: 13px;
  color: var(--muted);
  transition: color 0.15s;
}
.filter-check:hover { color: white; }
.filter-check input {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1.5px solid #444;
  border-radius: 4px;
  background: #0a0a0a;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.filter-check input:checked {
  background: var(--red);
  border-color: var(--red);
}
.filter-check input:checked::after {
  content: '✓';
  position: absolute;
  top: -2px;
  left: 2px;
  color: white;
  font-size: 12px;
  font-weight: 800;
}
.filter-check .count {
  margin-left: auto;
  font-size: 11px;
  color: #555;
}

.range-input {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  color: white;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  width: 100%;
}

.car-row {
  display: grid;
  grid-template-columns: 280px 1fr auto;
  gap: 24px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.25s;
}
.car-row:hover {
  border-color: rgba(229,9,20,0.4);
  transform: translateY(-2px);
}
.car-row-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  background-color: #222;
}

/* ===== DETAIL PAGE STYLES ===== */
.gallery-main {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  background-color: #1a1a1a;
  border: 1px solid var(--border);
}
.gallery-thumb {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  border: 2px solid var(--border);
  background-color: #1a1a1a;
  cursor: pointer;
  transition: all 0.2s;
}
.gallery-thumb:hover, .gallery-thumb.active {
  border-color: var(--red);
}

.spec-item {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.spec-item:last-child { border-bottom: 0; }
.spec-label {
  color: var(--muted);
  font-size: 13px;
}
.spec-value {
  color: white;
  font-weight: 600;
  font-size: 14px;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  color: white;
}
.feature-pill::before {
  content: '✓';
  color: var(--red);
  font-weight: 800;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  border: 1.5px solid;
}
.contact-call {
  background: linear-gradient(180deg, #FF1F2D 0%, #E50914 50%, #B30710 100%);
  color: white;
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 4px 14px rgba(229, 9, 20, 0.4);
}
.contact-call:hover { transform: translateY(-1px); }
.contact-wa {
  background: #25D366;
  color: white;
  border-color: #25D366;
}
.contact-msg {
  background: transparent;
  color: white;
  border-color: var(--border);
}
.contact-msg:hover { border-color: white; }

@media (max-width: 768px) {
  .car-row { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICES / PRODUCTS / CART
   ============================================================ */
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: rgba(229,9,20,0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.service-img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: #1a1a1a;
}
.service-img-icon {
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(229,9,20,0.15), rgba(0,0,0,0.4));
  font-size: 64px;
  position: relative;
}
.service-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 999px;
  text-transform: uppercase;
}
.service-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.add-to-cart {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 1.5px solid var(--red);
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  cursor: pointer;
}
.add-to-cart:hover {
  background: linear-gradient(180deg, #FF1F2D 0%, #E50914 50%, #B30710 100%);
  color: white;
}

.qty-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.qty-pill button {
  width: 32px;
  height: 32px;
  background: transparent;
  color: white;
  font-weight: 700;
  cursor: pointer;
}
.qty-pill button:hover { background: var(--red); }
.qty-pill input {
  width: 40px;
  text-align: center;
  background: transparent;
  border: none;
  color: white;
  font-weight: 700;
  font-size: 14px;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
}
.payment-method:hover { border-color: rgba(229,9,20,0.4); }
.payment-method.selected {
  border-color: var(--red);
  background: linear-gradient(135deg, rgba(229,9,20,0.12), rgba(0,0,0,0.4));
}
.payment-radio {
  width: 18px;
  height: 18px;
  border: 2px solid #444;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.payment-method.selected .payment-radio {
  border-color: var(--red);
}
.payment-method.selected .payment-radio::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--red);
  border-radius: 50%;
}
.payment-logo {
  width: 56px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 6px;
  font-weight: 800;
  font-size: 11px;
  flex-shrink: 0;
}

/* ============================================================
   AD PACKAGES
   ============================================================ */
.package-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.package-card.popular {
  border-color: var(--red);
  background: linear-gradient(180deg, rgba(229,9,20,0.08), var(--card));
  transform: scale(1.03);
}
.package-card.popular::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 0;
  right: 0;
  padding: 6px 16px;
  background: linear-gradient(135deg, #FF1F2D, #E50914);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  border-radius: 0 16px 0 12px;
}
.package-card:hover { transform: translateY(-4px); }
.package-card.popular:hover { transform: scale(1.03) translateY(-4px); }

.package-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.package-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  background: var(--chrome-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.package-price-popular {
  background: linear-gradient(180deg, #FF3340, #E50914);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.package-features {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.package-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.package-feature::before {
  content: '✓';
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34,197,94,0.15);
  color: #4ade80;
  border-radius: 50%;
  font-weight: 800;
  font-size: 11px;
}
.package-feature.no::before {
  content: '✕';
  background: rgba(255,255,255,0.05);
  color: #555;
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.25s;
  display: block;
}
.blog-card:hover {
  border-color: rgba(229,9,20,0.4);
  transform: translateY(-3px);
}
.blog-img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
}
.blog-cat {
  display: inline-block;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(229,9,20,0.15);
  color: var(--red);
  border-radius: 4px;
  margin-bottom: 10px;
}

/* ============================================================
   AUCTION PAGE
   ============================================================ */
.bid-history {
  max-height: 360px;
  overflow-y: auto;
  padding-right: 8px;
}
.bid-history::-webkit-scrollbar { width: 4px; }
.bid-history::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }
.bid-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.bid-row:last-child { border-bottom: 0; }
.bid-row.winning {
  background: linear-gradient(90deg, rgba(229,9,20,0.08), transparent);
  margin: 0 -12px;
  padding: 12px;
  border-radius: 8px;
  border-bottom: 0;
}

.bid-input {
  background: rgba(0,0,0,0.4);
  border: 1.5px solid var(--border);
  color: white;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  width: 100%;
}
.bid-input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.15);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 20px;
}
.modal-backdrop.show { display: flex; }
.modal-content {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

/* ============================================================
   ADMIN PANEL
   ============================================================ */
.admin-shell {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}
.admin-sidebar {
  background: #0a0a0a;
  border-right: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.admin-sidebar::-webkit-scrollbar { width: 4px; }
.admin-sidebar::-webkit-scrollbar-thumb { background: var(--border); }
.admin-logo {
  padding: 0 24px 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.admin-section-label {
  padding: 16px 24px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #555;
}
.admin-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 24px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  transition: all 0.15s;
  border-left: 3px solid transparent;
}
.admin-link:hover {
  background: rgba(255,255,255,0.03);
  color: white;
}
.admin-link.active {
  background: linear-gradient(90deg, rgba(229,9,20,0.15), transparent);
  color: white;
  border-left-color: var(--red);
}
.admin-link .badge {
  margin-left: auto;
  font-size: 10px;
  padding: 2px 6px;
  background: var(--red);
  color: white;
  border-radius: 999px;
  font-weight: 800;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 40;
}
.admin-content { padding: 28px; }

.kpi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.kpi-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(229,9,20,0.15), transparent);
  border-radius: 50%;
}
.kpi-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 8px;
}
.kpi-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: white;
  letter-spacing: 0.02em;
  line-height: 1;
}
.kpi-trend {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
}
.kpi-trend.up { color: #4ade80; }
.kpi-trend.down { color: #f87171; }

.admin-table {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  border-collapse: collapse;
}
.admin-table th {
  text-align: left;
  padding: 14px 18px;
  background: rgba(0,0,0,0.4);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.admin-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: white;
}
.admin-table tr:last-child td { border-bottom: 0; }
.admin-table tr:hover td { background: rgba(255,255,255,0.02); }

.role-badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.role-admin { background: rgba(229,9,20,0.18); color: #ff6b75; border: 1px solid rgba(229,9,20,0.3); }
.role-sales { background: rgba(59,130,246,0.18); color: #93c5fd; border: 1px solid rgba(59,130,246,0.3); }
.role-marketing { background: rgba(168,85,247,0.18); color: #d8b4fe; border: 1px solid rgba(168,85,247,0.3); }
.role-finance { background: rgba(34,197,94,0.18); color: #86efac; border: 1px solid rgba(34,197,94,0.3); }
.role-support { background: rgba(245,158,11,0.18); color: #fcd34d; border: 1px solid rgba(245,158,11,0.3); }
.role-user { background: rgba(255,255,255,0.06); color: #aaa; border: 1px solid var(--border); }

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  text-transform: uppercase;
}
.status-live { background: rgba(34,197,94,0.18); color: #4ade80; }
.status-pending { background: rgba(245,158,11,0.18); color: #fcd34d; }
.status-rejected { background: rgba(229,9,20,0.18); color: #ff6b75; }
.status-draft { background: rgba(255,255,255,0.06); color: #aaa; }

.btn-sm {
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: white;
  transition: all 0.15s;
}
.btn-sm:hover { border-color: var(--red); color: var(--red); }
.btn-sm.primary {
  background: linear-gradient(180deg, #FF1F2D, #E50914);
  border-color: var(--red);
  color: white;
}
.btn-sm.primary:hover { box-shadow: 0 4px 12px rgba(229,9,20,0.4); }
.btn-sm.success {
  background: rgba(34,197,94,0.18);
  border-color: rgba(34,197,94,0.3);
  color: #4ade80;
}
.btn-sm.danger { color: #ff6b75; border-color: rgba(229,9,20,0.3); }

.chat-bubble {
  max-width: 70%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.4;
}
.chat-bubble.them {
  background: var(--card);
  border: 1px solid var(--border);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-bubble.me {
  background: linear-gradient(180deg, #FF1F2D, #E50914);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  color: white;
}

@media (max-width: 1024px) {
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { position: relative; height: auto; }
}
