/* ============================================================
   BSG V3 REDESIGN — Design tokens + component styles
   Added: 2026-04-23
   ============================================================ */

/* V3 design tokens */
:root {
  --bsg-bg:          #0a0b0c;
  --bsg-bg-2:        #0a0b0c;
  --bsg-panel:       #1e2227;
  --bsg-line:        #2b3036;
  --bsg-line-2:      #3a4049;
  --bsg-gold:        #d4a853;
  --bsg-gold-bright: #e9bf6a;
  --bsg-teal:        #1c5a5f;
  --bsg-text:        #ffffff;
  --bsg-text-2:      #c9ccd1;
  --bsg-text-3:      #8a8f96;
  --bsg-font-display: 'Oswald', sans-serif;
  --bsg-font-body:    'Barlow', sans-serif;
  --bsg-font-cond:    'Barlow Condensed', sans-serif;
  --bsg-font-mono:    'JetBrains Mono', 'Courier New', monospace;
}

/* ── GLOBAL BACKGROUND OVERRIDE ────────────────────────────── */
body {
  background: var(--bsg-bg) !important;
  background-image: none !important;
}

/* ── V2 HEADER ─────────────────────────────────────────────── */
.bsg-v2-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: #0a0b0c;
  border-bottom: 3px solid var(--bsg-gold);
  transition: transform 0.34s cubic-bezier(0.22,0.61,0.36,1), opacity 0.22s ease;
  will-change: transform;
}
.bsg-v2-header.header-hidden {
  transform: translate3d(0, calc(-100% - 4px), 0);
  opacity: 0.01;
  pointer-events: none;
}
.bsg-v2-header.menu-open,
.bsg-v2-header.menu-open.header-hidden {
  transform: translate3d(0,0,0) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}
.bsg-v2-inner {
  display: flex;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  height: 68px;
  gap: 0;
  padding: 0;
}
.bsg-v2-logo {
  flex-shrink: 0;
  margin-right: 40px;
}
.bsg-v2-logo img {
  height: 46px;
  width: auto;
  max-width: 160px;
  display: block;
}
.bsg-v2-nav {
  flex: 1;
}
.bsg-v2-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 0;
}
.bsg-v2-links > li {
  position: relative;
}
.bsg-v2-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-family: var(--bsg-font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-decoration: none;
  text-transform: capitalize;
  white-space: nowrap;
  transition: color 0.2s;
  position: relative;
}
.bsg-v2-links > li > a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--bsg-gold);
  opacity: 0;
  transition: opacity 0.2s;
}
.bsg-v2-links > li.active > a,
.bsg-v2-links > li > a:hover {
  color: var(--bsg-gold);
}
.bsg-v2-links > li.active > a::after,
.bsg-v2-links > li > a:hover::after {
  opacity: 1;
}
.bsg-v2-caret {
  font-size: 9px;
  opacity: 0.7;
}
/* Dropdown */
.bsg-v2-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  background: #0d0e10;
  border: 1px solid var(--bsg-line);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  min-width: 240px;
  z-index: 1100;
}
.bsg-v2-dropdown:hover .bsg-v2-dropdown-menu {
  display: block;
}
.bsg-v2-dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-family: var(--bsg-font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--bsg-text-2);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s, padding-left 0.2s;
}
.bsg-v2-dropdown-menu li a:hover {
  color: var(--bsg-gold);
  padding-left: 26px;
}
/* Phone CTA */
.bsg-v2-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
  font-family: var(--bsg-font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--bsg-gold);
  text-decoration: none;
  transition: color 0.2s;
}
.bsg-v2-phone:hover {
  color: var(--bsg-gold-bright);
}
.bsg-v2-phone-icon {
  font-size: 18px;
  line-height: 1;
}
/* Hamburger */
.bsg-v2-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 16px;
  flex-shrink: 0;
}
.bsg-v2-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}
.bsg-v2-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bsg-v2-hamburger.open span:nth-child(2) { opacity: 0; }
.bsg-v2-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .bsg-v2-inner { width: 100%; padding: 0 5%; }
  .bsg-v2-hamburger { display: flex; }
  .bsg-v2-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: #1a1c1f;
    border-top: 1px solid var(--bsg-gold);
    border-bottom: 1px solid var(--bsg-line);
    padding: 8px 0 16px;
    z-index: 1100;
  }
  .bsg-v2-nav.open { display: block; }
  .bsg-v2-links { flex-direction: column; align-items: flex-start; }
  .bsg-v2-links > li { width: 100%; }
  .bsg-v2-links > li > a { padding: 12px 20px; font-size: 15px; }
  .bsg-v2-links > li > a::after { display: none; }
  .bsg-v2-dropdown-menu {
    position: static;
    display: none;
    border: none;
    background: rgba(255,255,255,0.04);
    padding: 0;
  }
  .bsg-v2-dropdown.open .bsg-v2-dropdown-menu { display: block; }
  .bsg-v2-dropdown-menu li a { padding: 9px 36px; }
}
@media (max-width: 480px) {
  .bsg-v2-phone-num { display: none; }
}

/* ── SHARED V3 EYEBROW / GOLD RULE ─────────────────────────── */
.v3-eyebrow {
  font-family: var(--bsg-font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--bsg-gold);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.v3-gold-rule {
  width: 48px;
  height: 2px;
  background: var(--bsg-gold);
  border: none;
  margin: 16px 0 20px;
  flex-shrink: 0;
  display: block;
}

/* ── V3 SERVICES ─────────────────────────────────────────────── */
.v3-services {
  padding: 100px 0;
  background: var(--bsg-bg);
  margin: 0;
}
.v3-services-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.v3-services-header {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--bsg-line);
  margin-bottom: 0;
}
.v3-services-header h2 {
  font-family: var(--bsg-font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
  margin: 0;
  display: block;
  position: static;
}
/* Divided table grid */
.v3-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--bsg-line);
  border: 1px solid var(--bsg-line);
}
.v3-svc-card {
  background: var(--bsg-bg);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  transition: background 0.25s;
}
.v3-svc-card:hover {
  background: #1a1d20;
}
.v3-svc-image-wrap {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.v3-svc-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.65) contrast(1.15) brightness(0.72) sepia(0.18);
  transform: scale(1.04);
  transition: transform 0.3s, filter 0.3s;
}
.v3-svc-card:hover .v3-svc-img {
  transform: scale(1.08);
  filter: saturate(0.7) contrast(1.18) brightness(0.76) sepia(0.16);
}
.v3-svc-content {
  padding: 24px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.v3-svc-code {
  font-family: var(--bsg-font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--bsg-gold);
  margin-bottom: 12px;
  display: block;
}
.v3-svc-title {
  font-family: var(--bsg-font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.1;
  margin: 0;
  display: block;
  position: static;
}
.v3-svc-body {
  font-family: var(--bsg-font-body);
  font-size: 14px;
  color: var(--bsg-text-2);
  line-height: 1.6;
  flex: 1;
  margin: 0 0 20px;
}
.v3-svc-cta {
  font-family: var(--bsg-font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bsg-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: gap 0.2s;
}
.v3-svc-cta:hover { gap: 10px; color: var(--bsg-gold-bright); }
@media (max-width: 1024px) {
  .v3-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .v3-services-grid { grid-template-columns: 1fr; }
  .v3-services { padding: 60px 0; }
}

/* ── V3 NEW ARRIVALS ─────────────────────────────────────────── */
.v3-arrivals {
  padding: 100px 0;
  background: var(--bsg-bg-2);
  margin: 0;
}
.v3-arrivals-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.v3-arrivals-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 28px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 20px;
}
.v3-arrivals-header-left h2 {
  font-family: var(--bsg-font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  display: block;
  position: static;
  line-height: 1;
}
/* Carousel wrapper with side arrows */
.v3-arrivals-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}
.v3-arr-side-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bsg-line-2);
  background: transparent;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  z-index: 2;
}
.v3-arr-side-btn:hover { background: var(--bsg-gold); border-color: var(--bsg-gold); color: #111; }
.v3-arrivals-viewport {
  flex: 1;
  overflow: hidden;
  cursor: grab;
}
.v3-arrivals-viewport:active { cursor: grabbing; }
/* Car cards track — scrolls horizontally */
.v3-arrivals-grid {
  display: flex;
  flex-direction: row;
  gap: 24px;
  will-change: transform;
}
.v3-car-card {
  background: var(--bsg-panel);
  border: 1px solid var(--bsg-line);
  display: flex;
  flex-direction: column;
  flex: 0 0 380px;
  width: 380px;
}
.v3-car-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center;
  display: block;
}
.v3-car-card-body {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.v3-car-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.v3-car-card-year {
  font-family: var(--bsg-font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--bsg-text-3);
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}
.v3-car-card-name {
  font-family: var(--bsg-font-display);
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  display: block;
  position: static;
  line-height: 1.1;
}
.v3-price-badge {
  background: var(--bsg-gold);
  color: #111111;
  font-family: var(--bsg-font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 6px 10px;
  white-space: nowrap;
  flex-shrink: 0;
}
/* Spec strip */
.v3-spec-strip {
  display: flex;
  border-top: 1px dashed var(--bsg-line);
  border-bottom: 1px dashed var(--bsg-line);
  margin: 18px 0;
}
.v3-spec-item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 14px 0;
  min-width: 0;
}
.v3-spec-item:last-child {
  padding-left: 28px;
}
.v3-spec-label {
  font-family: var(--bsg-font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--bsg-text-3);
  text-transform: uppercase;
}
.v3-spec-val {
  font-family: var(--bsg-font-mono);
  font-size: 12px;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.v3-details-btn {
  display: block;
  width: 100%;
  padding: 11px 0;
  text-align: center;
  border: 1px solid var(--bsg-line-2);
  background: transparent;
  color: var(--bsg-text-2);
  font-family: var(--bsg-font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  margin-top: auto;
}
.v3-details-btn:hover { border-color: var(--bsg-gold); color: var(--bsg-gold); }
.v3-arrivals-footer {
  text-align: center;
  margin-top: 40px;
}
.v3-view-all-btn {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid var(--bsg-line-2);
  background: transparent;
  color: #ffffff;
  font-family: var(--bsg-font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}
.v3-view-all-btn:hover { border-color: var(--bsg-gold); color: var(--bsg-gold); }
@media (max-width: 640px) {
  .v3-car-card { flex: 0 0 280px; width: 280px; }
  .v3-arrivals { padding: 60px 0; }
  .v3-spec-strip { grid-template-columns: repeat(3, 1fr); }
}

/* ── V3 BLOG ─────────────────────────────────────────────────── */
.v3-blog {
  padding: 100px 0;
  background: var(--bsg-bg);
  margin: 0;
}
.v3-blog-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.v3-blog-header {
  padding-bottom: 28px;
  margin-bottom: 0;
}
.v3-blog-header h2 {
  font-family: var(--bsg-font-display);
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 600;
  color: #ffffff;
  max-width: 900px;
  line-height: 1.08;
  margin: 0;
  display: block;
  position: static;
}
.v3-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: transparent;
  border: none;
}
.v3-blog-card {
  background: rgba(10,11,12,0.85) !important;
  border: 1px solid var(--bsg-gold) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s;
  transform: none !important;
}
.v3-blog-card:hover {
  border-color: rgba(212,168,83,0.6) !important;
  background: rgba(10,11,12,0.85) !important;
  transform: none !important;
  box-shadow: none !important;
}
.v3-blog-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}
.v3-blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.v3-blog-badge {
  font-family: var(--bsg-font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--bsg-gold);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.v3-blog-title {
  font-family: var(--bsg-font-display);
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 10px;
  display: block;
  position: static;
}
.v3-blog-excerpt {
  font-family: var(--bsg-font-body);
  font-size: 13px;
  color: var(--bsg-text-2);
  line-height: 1.55;
  flex: 1;
  margin: 0 0 16px;
}
.v3-blog-link {
  font-family: var(--bsg-font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bsg-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s, color 0.2s;
}
.v3-blog-link:hover { gap: 10px; color: var(--bsg-gold-bright); }
@media (max-width: 1024px) {
  .v3-blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .v3-blog-grid { grid-template-columns: 1fr; }
  .v3-blog { padding: 60px 0; }
}

/* ── V3 AREA BANNER ─────────────────────────────────────────── */
.v3-area-banner {
  position: relative;
  padding: 80px 0;
  background: #0a0b0c;
  margin: 0;
  overflow: hidden;
}
.v3-area-bg {
  position: absolute;
  inset: 0;
  background: none;
  opacity: 0;
  filter: grayscale(1);
  z-index: 0;
}
.v3-area-inner {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── AREAS / SERVICE PAGE HERO — left-align to match logo ───── */
.page-hero {
  text-align: left !important;
  width: 90%;
  max-width: 1200px;
  margin-left: auto !important;
  margin-right: auto !important;
}
.page-title,
.page-subtitle {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: 100% !important;
  text-align: left !important;
}
.v3-area-panel {
  border: 1px solid var(--bsg-gold);
  background: rgba(10,11,12,0.85);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.v3-area-h2 {
  font-family: var(--bsg-font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.1;
  margin: 0;
  display: block;
  position: static;
}
.v3-area-body {
  font-family: var(--bsg-font-body);
  font-size: 15px;
  color: var(--bsg-text-2);
  line-height: 1.65;
  margin: 0 0 24px;
}
.v3-trust-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.v3-trust-stat {
  font-family: var(--bsg-font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--bsg-gold);
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .v3-area-panel {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 28px;
  }
  .v3-area-banner { padding: 60px 0; }
}

/* ── V3 FOOTER ──────────────────────────────────────────────── */
.v3-footer {
  background: #060708;
  padding: 72px 0 32px;
  margin: 0;
}
.v3-footer-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.v3-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 40px;
  padding-left: 40px;
  border-bottom: 1px solid var(--bsg-line);
  align-items: start;
}
.v3-footer-col-head {
  display: table;
  margin-bottom: 16px;
}
.v3-footer-col-title {
  font-family: var(--bsg-font-display);
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 6px;
  display: block;
  position: static;
  text-shadow: none;
}
.v3-footer-rule {
  width: 100%;
  height: 2px;
  background: var(--bsg-gold);
  border: none;
  margin: 0;
  display: block;
}
.v3-footer-logo {
  width: 140px;
  height: auto;
  margin-bottom: 16px;
  display: block;
  margin-left: 64px;
}
.v3-footer-copy {
  font-family: var(--bsg-font-body);
  font-size: 13px;
  color: var(--bsg-text-3);
  line-height: 1.6;
  margin: 0;
  padding-left: 64px;
}
.v3-footer-contact p,
.v3-footer-contact a {
  font-family: var(--bsg-font-body);
  font-size: 13px;
  color: var(--bsg-text-2);
  text-decoration: none;
  margin: 0 0 5px;
  display: block;
  transition: color 0.2s;
}
.v3-footer-contact a:hover { color: var(--bsg-gold); padding-left: 0; }
.v3-footer-hours {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 5px 8px;
  font-family: var(--bsg-font-body);
  font-size: 13px;
  color: var(--bsg-text-2);
}
.v3-footer-hours strong { color: var(--bsg-text-3); font-weight: 500; }
.v3-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.v3-footer-links li a {
  font-family: var(--bsg-font-body);
  font-size: 13px;
  color: var(--bsg-text-2);
  text-decoration: none;
  transition: color 0.2s, text-shadow 0.2s;
}
.v3-footer-links li a:hover {
  color: var(--bsg-gold);
  text-shadow: 0 0 8px rgba(197, 160, 101, 0.7);
  padding-left: 0;
}
/* Bottom strip */
.v3-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 8px;
}
.v3-footer-tag {
  font-family: var(--bsg-font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--bsg-text-3);
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .v3-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .v3-footer-grid { grid-template-columns: 1fr; }
  .v3-footer { padding: 48px 0 24px; }
}

/* Credentials bar V3 style */
.v3-creds-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 2.5rem;
  padding: 1.2rem 1.5rem;
  border-top: 1px solid rgba(212,168,83,0.25);
  border-bottom: 1px solid rgba(212,168,83,0.25);
  background: rgba(10,11,12,0.85);
  text-align: center;
}
.v3-creds-bar span {
  font-family: var(--bsg-font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--bsg-text-2);
  text-transform: uppercase;
  white-space: nowrap;
}
.v3-creds-bar a {
  color: var(--bsg-text-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.v3-creds-bar strong { color: var(--bsg-gold); }

/* ── V3 CARD OVERRIDES — tuning & blog pages ──────────────────
   Reskin old .card elements to match v3-svc-card style:
   dark panel, sharp corners, no blur, gold accent on hover
   ──────────────────────────────────────────────────────────── */
.tuning-grid .card,
#blog-grid .card {
  background: rgba(10,11,12,0.85) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1px solid var(--bsg-gold) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: border-color 0.25s !important;
}
.tuning-grid .card:hover,
#blog-grid .card:hover {
  transform: none !important;
  background: rgba(10,11,12,0.85) !important;
  border-color: rgba(212,168,83,0.6) !important;
  box-shadow: none !important;
}

/* Image — same filter treatment as v3-svc-img */
.tuning-grid .card-image,
#blog-grid .card-image {
  filter: saturate(0.7) contrast(1.15) brightness(0.78) sepia(0.12);
  transition: filter 0.3s, transform 0.3s;
  border-radius: 0 !important;
}
.tuning-grid .card:hover .card-image,
#blog-grid .card:hover .card-image {
  filter: saturate(0.75) contrast(1.18) brightness(0.82) sepia(0.14);
}

/* Card content padding */
.tuning-grid .card-content,
#blog-grid .card-content {
  padding: 24px 28px 32px !important;
}

/* Title — match v3-svc-title style */
.tuning-grid .card-content h3,
#blog-grid .card-content h3 {
  font-family: var(--bsg-font-display) !important;
  font-size: clamp(20px, 2vw, 26px) !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin: 0 0 10px !important;
  line-height: 1.15 !important;
}

/* Gold rule under title */
.tuning-grid .card-content h3::after,
#blog-grid .card-content h3::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--bsg-gold);
  margin-top: 10px;
}

/* Body text */
.tuning-grid .card-content p,
#blog-grid .card-content p {
  font-family: var(--bsg-font-body) !important;
  font-size: 14px !important;
  color: var(--bsg-text-2) !important;
  line-height: 1.6 !important;
  margin: 0 0 20px !important;
}

/* CTA link — match v3-svc-cta */
.tuning-grid .card-content .btn-outline,
#blog-grid .card-content .btn-outline {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  font-family: var(--bsg-font-display) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--bsg-gold) !important;
  width: auto !important;
  margin-bottom: 0 !important;
  box-shadow: none !important;
  transition: gap 0.2s, color 0.2s !important;
}
.tuning-grid .card-content .btn-outline:hover,
#blog-grid .card-content .btn-outline:hover {
  transform: none !important;
  gap: 10px !important;
  color: var(--bsg-gold-bright) !important;
  background: transparent !important;
  border: none !important;
}

/* Badge/tag (blog) */
#blog-grid .stock-tag {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  font-family: var(--bsg-font-mono) !important;
  font-size: 10px !important;
  font-weight: 400 !important;
  letter-spacing: 0.2em !important;
  color: var(--bsg-text-3) !important;
  text-transform: uppercase !important;
  padding: 0 !important;
  margin-bottom: 8px !important;
}

/* Grid gap to match v3 sections */
.tuning-grid .grid,
#blog-grid {
  gap: 24px !important;
}

/* ── Homepage blog cards — match v3-area-panel style ── */
#home-blog-container .card {
  background: rgba(10,11,12,0.85) !important;
  border: 1px solid var(--bsg-gold) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition: border-color 0.25s !important;
}
#home-blog-container .card:hover {
  transform: none !important;
  background: rgba(10,11,12,0.85) !important;
  border-color: rgba(212,168,83,0.6) !important;
  box-shadow: none !important;
}

/* ── V3 STOCK PAGE overrides ──────────────────────────────────── */
.stock-filters,
.stock-filters-header {
  background: var(--bsg-panel) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1px solid var(--bsg-line) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.car-card {
  background: rgba(10,11,12,0.85) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1px solid var(--bsg-gold) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: border-color 0.25s !important;
}
.car-card:hover {
  transform: none !important;
  background: rgba(10,11,12,0.85) !important;
  border-color: rgba(212,168,83,0.6) !important;
  box-shadow: none !important;
}

/* ── V3 CAR SOURCING PAGE overrides ──────────────────────────── */
.contact-container {
  background: var(--bsg-panel) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1px solid var(--bsg-line) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: border-color 0.25s !important;
}
.contact-container:hover {
  border-color: rgba(212,168,83,0.4) !important;
  box-shadow: none !important;
}
