@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap');

/* BE FORWARD-style homepage — polished marketplace layout */

body.bf-site > .topbar,
body.bf-site > .header,
body.bf-site > .mobile-nav-backdrop,
body.bf-site > .mobile-menu,
body.bf-site > .site-footer,
body.bf-site > .page-hero,
body.bf-site > .breadcrumb,
body.bf-site > .cookie-consent {
  display: none !important;
}

body.bf-site .live-chat-launcher {
  background: var(--bf-orange);
  box-shadow: 0 6px 20px rgba(0, 71, 255, 0.35);
}

body.bf-site .wa-float {
  background: #25d366;
}

body.bf-site {
  --bf-orange: #0047FF;
  --bf-orange-d: #0038CC;
  --bf-orange-soft: #eef3ff;
  --bf-black: #333333;
  --bf-grey: #4a4a4a;
  --bf-muted: #6b7280;
  --bf-line: #e5e7eb;
  --bf-bg: #ffffff;
  --bf-bg-soft: #f8fafc;
  --bf-page: #f4f6fb;
  --bf-blue: #0047FF;
  --bf-navy: #002FA8;
  --bf-red: #d71920;
  --bf-yellow: #fffbeb;
  --bf-font: 'Roboto', Arial, Helvetica, sans-serif;
  --bf-radius: 12px;
  --bf-radius-sm: 8px;
  --bf-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  --bf-shadow-md: 0 12px 32px rgba(15, 23, 42, 0.08);
  --bf-container: 1560px;
  --bf-sidebar: 252px;
  --bf-gap: 32px;
  --bf-section-gap: 24px;
  background: var(--bf-page);
  color: var(--bf-black);
  font-family: var(--bf-font);
  font-size: 14px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.bf-site .container {
  max-width: var(--bf-container);
  margin: 0 auto;
  padding-left: clamp(20px, 2.5vw, 40px);
  padding-right: clamp(20px, 2.5vw, 40px);
}

.bf-shell {
  min-height: 100vh;
  background: var(--bf-page);
}

.bf-cookie {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  background: var(--bf-black);
  color: #ddd;
  padding: 8px 12px;
  font-size: 12px;
}

.bf-cookie[hidden] { display: none !important; }

.bf-cookie__btn {
  background: var(--bf-orange);
  color: #fff;
  border: none;
  padding: 6px 16px;
  font-weight: 700;
  cursor: pointer;
}

.bf-utility {
  background: #1f2937;
  color: #cbd5e1;
  font-size: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bf-utility__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  min-height: 40px;
  padding-top: 9px;
  padding-bottom: 9px;
}

.bf-utility__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.bf-utility__stats span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bf-utility__stats strong {
  color: #fff;
  font-weight: 600;
}

.bf-utility__selects {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.bf-utility__selects label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bf-utility__selects label span {
  white-space: nowrap;
}

.bf-utility__selects select {
  appearance: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f8fafc;
  font-size: 12px;
  font-weight: 500;
  font-family: inherit;
  padding: 6px 28px 6px 10px;
  min-width: 96px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%2394a3b8' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.bf-utility__selects select:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.bf-utility__selects select:focus {
  outline: none;
  border-color: var(--bf-orange);
  box-shadow: 0 0 0 2px rgba(0, 71, 255, 0.35);
}

.bf-utility__selects select option {
  background: #1f2937;
  color: #f8fafc;
}

.bf-header {
  background: #fff;
  color: var(--bf-black);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: var(--bf-shadow);
  transition: box-shadow 0.2s ease;
}

.bf-header.is-scrolled {
  box-shadow: var(--bf-shadow-md);
}

.bf-header__main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding-top: 20px;
  padding-bottom: 20px;
  background: #fff;
  border-bottom: 1px solid var(--bf-line);
}

.bf-logo__img {
  height: 52px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  filter: none;
  border-radius: 10px;
}

.bf-logo__img:hover {
  opacity: 0.9;
}

.bf-keyword-search {
  display: grid;
  grid-template-columns: 128px 1fr 52px;
  max-width: min(860px, 100%);
  width: 100%;
  margin: 0 auto;
  border-radius: var(--bf-radius-sm);
  overflow: hidden;
  box-shadow: var(--bf-shadow);
  border: 1px solid var(--bf-line);
}

.bf-keyword-search select,
.bf-keyword-search input {
  border: none;
  font-size: 14px;
  padding: 12px 14px;
  font-family: inherit;
  background: #fff;
}

.bf-keyword-search input { border-left: 1px solid var(--bf-line); border-right: 1px solid var(--bf-line); }

.bf-keyword-search button {
  background: var(--bf-orange);
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 17px;
}

.bf-header__actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.bf-header__link {
  color: #374151 !important;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding: 8px 10px;
  border-radius: var(--bf-radius-sm);
  transition: background 0.15s ease, color 0.15s ease;
}

.bf-header__link:hover {
  background: var(--bf-bg-soft);
  color: var(--bf-orange) !important;
}

.bf-header__link span { display: inline; }

.bf-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--bf-line);
  border-radius: var(--bf-radius-sm);
  background: #fff;
  cursor: pointer;
}

.bf-mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #333;
  margin: 0 auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.bf-mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.bf-mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.bf-mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.bf-mobile-drawer {
  background: #1a1a1a;
  border-top: 1px solid #333;
  padding: 12px;
}

.bf-mobile-drawer[hidden] { display: none !important; }

.bf-mobile-search {
  display: grid;
  grid-template-columns: 1fr 44px;
  margin-bottom: 12px;
}

.bf-mobile-search input {
  border: 1px solid #444;
  background: #fff;
  padding: 10px 12px;
  font-size: 14px;
}

.bf-mobile-search button {
  background: var(--bf-orange);
  border: none;
  color: #fff;
  cursor: pointer;
}

.bf-mobile-nav {
  display: grid;
  gap: 2px;
}

.bf-mobile-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  color: #eee !important;
  text-decoration: none;
  font-size: 14px;
  border-radius: 4px;
}

.bf-mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--bf-orange) !important;
}

.bf-mobile-nav__cta {
  margin-top: 8px;
  justify-content: center;
  background: var(--bf-orange) !important;
  color: #fff !important;
  font-weight: 700;
}

.bf-header__cats {
  background: #1f2937;
}

.bf-header__cats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  min-height: 48px;
  padding: 6px 0;
}

.bf-header__nav,
.bf-header__tools {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
}

.bf-header__nav a,
.bf-header__tools a {
  color: #e5e7eb !important;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 0;
  transition: color 0.15s ease;
}

.bf-header__nav a.active {
  color: #fff !important;
  box-shadow: inset 0 -2px 0 var(--bf-orange);
}

.bf-header__nav a:hover,
.bf-header__tools a:hover {
  color: var(--bf-orange) !important;
}

.bf-notice {
  background: var(--bf-yellow);
  border-bottom: 1px solid #fde68a;
  padding: 10px 0;
  font-size: 13px;
}

.bf-notice p {
  margin: 0;
  color: #78350f;
  line-height: 1.5;
}

.bf-notice strong {
  color: #92400e;
  font-weight: 700;
}

.bf-main {
  display: grid;
  grid-template-columns: var(--bf-sidebar) minmax(0, 1fr) var(--bf-sidebar);
  gap: var(--bf-gap);
  padding-top: 36px;
  padding-bottom: 48px;
  align-items: start;
}

.bf-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bf-center {
  display: flex;
  flex-direction: column;
  gap: var(--bf-section-gap);
  min-width: 0;
}

.bf-side-banner {
  display: block;
  padding: 20px 18px;
  text-decoration: none;
  color: #fff !important;
  font-size: 12px;
  line-height: 1.5;
  border: none;
  border-radius: var(--bf-radius);
  box-shadow: var(--bf-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bf-side-banner:hover {
  transform: translateY(-2px);
  box-shadow: var(--bf-shadow-md);
}

.bf-side-banner strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
}

.bf-side-banner em {
  display: inline-block;
  margin-top: 10px;
  font-style: normal;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: var(--bf-radius-sm);
}

.bf-side-banner--parts {
  background: linear-gradient(135deg, #6a1b9a, #e91e63);
  min-height: 140px;
}

.bf-side-banner i {
  font-size: 22px;
  margin-bottom: 8px;
}

.bf-make-panel {
  border: 1px solid var(--bf-line);
  background: #fff;
  border-radius: var(--bf-radius);
  box-shadow: var(--bf-shadow);
  overflow: hidden;
}

.bf-make-panel h2 {
  margin: 0;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 700;
  background: var(--bf-bg-soft);
  border-bottom: 1px solid var(--bf-line);
}

.bf-make-panel ul {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  max-height: none;
  overflow: visible;
}

.bf-make-panel li a {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  text-decoration: none;
  color: #222 !important;
  border-bottom: 1px solid #f3f4f6;
  font-size: 13px;
  transition: background 0.15s ease, color 0.15s ease;
}

.bf-make-panel li:last-child a { border-bottom: none; }

.bf-make-panel li a:hover {
  background: var(--bf-orange-soft);
  color: var(--bf-orange-d) !important;
}

.bf-make-panel__count {
  color: var(--bf-muted);
  font-size: 12px;
}

.bf-make-panel__logo {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bf-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bf-make-panel__all {
  display: block;
  padding: 12px 16px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--bf-blue) !important;
  text-decoration: none;
  border-top: 1px solid var(--bf-line);
  background: #fafafa;
}

.bf-side-banner--dark { background: linear-gradient(135deg, #222, #444); }
.bf-side-banner--blue { background: linear-gradient(135deg, #004b9a, #0077cc); }
.bf-side-banner--navy { background: linear-gradient(135deg, #003b73, #005a9e); }
.bf-side-banner--orange { background: linear-gradient(135deg, #0047FF, #6699ff); color: #fff !important; }

.bf-search-panel {
  background: linear-gradient(145deg, #0047FF 0%, #0038CC 55%, #002FA8 100%);
  padding: 26px 28px;
  margin-bottom: 0;
  border-radius: var(--bf-radius);
  box-shadow: var(--bf-shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.bf-search-panel h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.bf-search-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bf-search-form__layout {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.bf-search-form__layout > label {
  min-width: 0;
}

.bf-search-form label span {
  display: block;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 6px;
}

.bf-search-form select {
  width: 100%;
  border: 1px solid transparent;
  padding: 10px 12px;
  font-size: 13px;
  font-family: inherit;
  background: #fff;
  border-radius: var(--bf-radius-sm);
  color: var(--bf-black);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.bf-search-form select:hover {
  border-color: #d1d5db;
}

.bf-search-form select:focus {
  outline: none;
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
}

.bf-search-form__footer {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 2px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.bf-search-form__feature-field {
  flex: 1 1 220px;
  max-width: 320px;
  min-width: 0;
}

.bf-search-form__submit {
  flex: 1 1 auto;
  margin-left: auto;
  background: var(--bf-black);
  color: #fff;
  border: none;
  cursor: pointer;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 11px 32px;
  min-height: 42px;
  font-family: inherit;
  border-radius: var(--bf-radius-sm);
  white-space: nowrap;
  transition: background 0.15s ease, transform 0.15s ease;
}

.bf-search-form__submit:hover {
  background: #000;
  transform: translateY(-1px);
}

.bf-search-form__submit span {
  font-size: 16px;
  font-weight: 700;
}

.bf-search-form__submit small {
  font-size: 12px;
  color: #ccc;
  line-height: 1;
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.bf-promo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 0;
}

.bf-promo-tile {
  min-height: 112px;
  padding: 18px 16px;
  text-decoration: none;
  color: #fff !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-size: 12px;
  border: none;
  border-radius: var(--bf-radius);
  box-shadow: var(--bf-shadow);
  position: relative;
  overflow: hidden;
}

.bf-promo-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.18) 100%);
  pointer-events: none;
}

.bf-promo-tile strong,
.bf-promo-tile span,
.bf-promo-tile i {
  position: relative;
  z-index: 1;
}

.bf-promo-tile strong {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
}

.bf-promo-tile span { opacity: 0.92; margin-top: 6px; }

.bf-promo-tile--auction { background: linear-gradient(135deg, #004b9a, #0099ff); }
.bf-promo-tile--special { background: linear-gradient(135deg, #c62828, #ff5252); }
.bf-promo-tile--stock { background: linear-gradient(135deg, #2e7d32, #66bb6a); }
.bf-promo-tile--guide { background: linear-gradient(135deg, #455a64, #78909c); }

.bf-carousel-section {
  margin-bottom: 0;
  padding: 22px 24px 24px;
  background: #fff;
  border-radius: var(--bf-radius);
  box-shadow: var(--bf-shadow);
  border: 1px solid var(--bf-line);
}

.bf-carousel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 16px;
}

.bf-carousel-head h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--bf-black);
  padding-left: 12px;
  border-left: 4px solid var(--bf-orange);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.bf-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 4px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.bf-carousel::-webkit-scrollbar { display: none; }

.bf-car-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  border: 1px solid var(--bf-line);
  background: #fff;
  border-radius: var(--bf-radius-sm);
  overflow: hidden;
  box-shadow: var(--bf-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.bf-car-card__body {
  padding: 14px 16px 16px;
}

.bf-car-card__body h3 {
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
  margin: 0 0 4px;
}

.bf-car-card__price {
  font-size: 16px;
}

.bf-account-panel {
  border: 1px solid var(--bf-line);
  background: #fff;
  padding: 22px 18px;
  border-radius: var(--bf-radius);
  box-shadow: var(--bf-shadow);
}

.bf-account-panel h2 {
  margin: 0 0 12px;
  font-size: 16px;
  text-align: center;
  font-weight: 700;
}

.bf-account-panel ul {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}

.bf-account-panel li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  padding: 7px 0;
  color: #333;
}

.bf-account-panel li i {
  color: var(--bf-orange);
  width: 16px;
  text-align: center;
}

.bf-account-panel__btn {
  display: block;
  text-align: center;
  background: var(--bf-orange);
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  padding: 12px;
  border-radius: var(--bf-radius-sm);
  transition: background 0.15s ease;
}

.bf-account-panel__btn:hover {
  background: var(--bf-orange-d);
}

.bf-account-panel__login {
  margin: 10px 0 0;
  text-align: center;
  font-size: 12px;
}

.bf-account-panel__login a {
  color: var(--bf-blue) !important;
}

.bf-carousel-head__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bf-carousel-viewall {
  font-size: 12px;
  font-weight: 600;
  color: var(--bf-blue) !important;
  text-decoration: none;
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: var(--bf-radius-sm);
  transition: background 0.15s ease, color 0.15s ease;
}

.bf-carousel-viewall:hover {
  background: var(--bf-bg-soft);
  text-decoration: none;
  color: var(--bf-orange) !important;
}

.bf-empty {
  text-align: center;
  padding: 40px 20px;
  background: var(--bf-bg-soft);
  border: 1px dashed var(--bf-line);
  margin-bottom: 16px;
}

.bf-empty i {
  font-size: 32px;
  color: var(--bf-orange);
  margin-bottom: 12px;
}

.bf-empty h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

.bf-empty p {
  margin: 0 auto 16px;
  max-width: 40ch;
  color: var(--bf-muted);
  font-size: 12px;
}

.bf-empty__btn {
  display: inline-block;
  background: var(--bf-orange);
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 3px;
  font-size: 12px;
}

.bf-carousel-nav {
  display: flex;
  gap: 4px;
}

.bf-carousel-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--bf-line);
  background: #fff;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  color: #333;
  border-radius: var(--bf-radius-sm);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.bf-carousel-btn:hover {
  background: var(--bf-orange);
  color: #fff;
  border-color: var(--bf-orange);
}

.bf-car-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eee;
}

.bf-car-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bf-car-card__points {
  position: absolute;
  top: 4px;
  left: 4px;
  background: var(--bf-blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 2px;
}

.bf-car-card__ref {
  margin: 0 0 6px;
  font-size: 11px;
  color: var(--bf-muted);
  font-weight: 500;
}

.bf-car-card__body h3 a {
  color: #222 !important;
  text-decoration: none;
}

.bf-car-card__price {
  margin: 0;
  color: var(--bf-red);
  font-weight: 700;
}

.bf-car-card__deal {
  display: inline-block;
  margin-top: 4px;
  background: var(--bf-orange);
  color: #fff;
  font-size: 10px;
  padding: 1px 5px;
}

.bf-trust {
  background: #fff;
  border-bottom: 1px solid var(--bf-line);
  padding: 0;
}

.bf-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 0;
  align-items: stretch;
}

.bf-trust__item {
  text-align: center;
  padding: 24px 20px;
  background: transparent;
  border-right: 1px solid var(--bf-line);
}

.bf-trust__item strong {
  display: block;
  font-size: 26px;
  color: var(--bf-black);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.bf-trust__item span {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: var(--bf-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.bf-trust__item--cta {
  border-right: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  background: var(--bf-bg-soft);
}

.bf-trust__item--cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bf-orange);
  color: #fff !important;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: var(--bf-radius-sm);
  white-space: nowrap;
  transition: background 0.15s ease, transform 0.15s ease;
}

.bf-trust__item--cta a:hover {
  background: var(--bf-orange-d);
  transform: translateY(-1px);
}

/* Car card details */
.bf-car-card__media img {
  transition: transform 0.35s ease;
}

.bf-car-card:hover .bf-car-card__media img {
  transform: scale(1.04);
}

.bf-car-card__badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--bf-orange);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 2px;
  max-width: calc(100% - 8px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bf-car-card__meta {
  margin: 0 0 4px;
  font-size: 10px;
  color: var(--bf-muted);
  line-height: 1.3;
}

.bf-car-card__price span {
  font-size: 9px;
  font-weight: 500;
  color: var(--bf-muted);
}

.bf-car-card__body h3 a:hover {
  color: var(--bf-orange) !important;
}

/* Promo tiles hover */
.bf-promo-tile {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bf-promo-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.bf-promo-tile i {
  font-size: 18px;
  margin-bottom: 6px;
  opacity: 0.9;
}

/* How to buy — homepage only; beat .container { margin: 0 auto } */
body.bf-site .bf-steps.container {
  margin-top: 32px;
  margin-bottom: 72px;
  margin-left: auto;
  margin-right: auto;
  padding: 36px 40px 44px;
  background: #fff;
  border-radius: var(--bf-radius);
  box-shadow: var(--bf-shadow);
  border: 1px solid var(--bf-line);
  text-align: center;
}

.bf-steps h2 {
  margin: 0 0 28px;
  font-size: 21px;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--bf-black);
}

.bf-steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  text-align: left;
}

.bf-steps__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bf-bg-soft);
  padding: 22px;
  border-radius: var(--bf-radius-sm);
  border: 1px solid var(--bf-line);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.bf-steps__list li:hover {
  border-color: #d1d5db;
  box-shadow: var(--bf-shadow);
}

.bf-steps__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bf-orange);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bf-steps__list strong {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.bf-steps__list p {
  font-size: 13px;
  line-height: 1.5;
}

.bf-steps__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--bf-blue) !important;
  text-decoration: none;
}

.bf-steps__link:hover {
  text-decoration: underline;
  color: var(--bf-orange) !important;
}

/* Footer */
.bf-footer {
  background: #111827;
  color: #cbd5e1;
  margin-top: 0;
}

.bf-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding: 64px 0 52px;
}

.bf-footer__brand p {
  margin: 12px 0 16px;
  font-size: 13px;
  line-height: 1.6;
  color: #94a3b8;
  max-width: 38ch;
}

.bf-footer__brand img {
  height: 48px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
  filter: none;
  border-radius: 10px;
  margin-bottom: 6px;
}

.bf-footer__contact {
  display: grid;
  gap: 6px;
}

.bf-footer__contact a {
  color: #ddd !important;
  text-decoration: none;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bf-footer__contact a:hover { color: var(--bf-orange) !important; }

.bf-footer h3 {
  margin: 0 0 18px;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.bf-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bf-footer li { margin-bottom: 8px; }

.bf-footer a {
  color: #94a3b8 !important;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.15s ease;
}

.bf-footer a:hover { color: var(--bf-orange) !important; }

.bf-footer__bar {
  border-top: 1px solid #374151;
  padding: 20px 0 28px;
  font-size: 12px;
  color: #64748b;
}

.bf-footer__bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.bf-footer__bar p { margin: 0; }

.bf-page-head {
  background: #fff;
  border-bottom: 1px solid var(--bf-line);
  padding: 20px 0;
}

.bf-page-head__crumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: var(--bf-muted);
  margin-bottom: 8px;
}

.bf-page-head__crumb a {
  color: var(--bf-blue) !important;
  text-decoration: none;
}

.bf-page-head__crumb a:hover {
  color: var(--bf-orange) !important;
}

.bf-page-head__crumb i {
  font-size: 9px;
  opacity: 0.5;
}

.bf-page-head__title {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--bf-black);
}

.bf-page-head__lead {
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--bf-muted);
}

.bf-page-main {
  min-height: 40vh;
}

.bf-search-form select:focus,
.bf-keyword-search input:focus,
.bf-keyword-search select:focus {
  outline: 2px solid #fff;
  outline-offset: 1px;
}

.bf-carousel-btn:focus-visible,
.bf-mobile-toggle:focus-visible,
.bf-cookie__btn:focus-visible {
  outline: 2px solid var(--bf-orange);
  outline-offset: 2px;
}

@media (min-width: 1680px) {
  body.bf-site {
    --bf-container: 1640px;
  }

  body.bf-home-page {
    --bf-sidebar: 268px;
    --bf-gap: 36px;
  }

  .bf-car-card {
    flex: 0 0 232px;
  }

  .bf-keyword-search {
    max-width: min(920px, 100%);
  }
}
