/*
 * MEV Charger — Unified UI V2
 * Visual layer for the public website.
 * Keep functional page styles in place; this file standardises the experience.
 */

:root {
  --mev-bg: #f5f8f7;
  --mev-surface: #ffffff;
  --mev-surface-soft: #eef7f3;
  --mev-ink: #102620;
  --mev-text: #344b44;
  --mev-muted: #70827c;
  --mev-line: #dce7e3;
  --mev-brand: #078f72;
  --mev-brand-dark: #056b57;
  --mev-brand-soft: #e7f6f0;
  --mev-navy: #17342f;
  --mev-danger: #b42318;
  --mev-radius-sm: 12px;
  --mev-radius: 18px;
  --mev-radius-lg: 26px;
  --mev-shadow-sm: 0 8px 24px rgba(16, 38, 32, .055);
  --mev-shadow: 0 18px 52px rgba(16, 38, 32, .085);
  --mev-container: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--mev-bg) !important;
  color: var(--mev-ink) !important;
}

html[dir="rtl"] body,
html[dir="rtl"] button,
html[dir="rtl"] input,
html[dir="rtl"] select,
html[dir="rtl"] textarea {
  font-family: "Cairo", "Segoe UI", Tahoma, Arial, sans-serif !important;
}

body h1,
body h2,
body h3,
body h4 {
  color: var(--mev-ink);
  text-wrap: balance;
}

body p {
  text-wrap: pretty;
}

body a,
body button,
body input,
body select,
body summary {
  -webkit-tap-highlight-color: transparent;
}

body :focus-visible {
  outline: 3px solid rgba(7, 143, 114, .23) !important;
  outline-offset: 3px;
}

body img {
  background-color: #f2f6f4;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

body .h2h-shell {
  position: fixed !important;
  inset: 0 0 auto !important;
  z-index: 1200 !important;
  background: rgba(255, 255, 255, .94) !important;
  border-bottom: 1px solid var(--mev-line) !important;
  box-shadow: none !important;
  backdrop-filter: blur(18px) saturate(150%) !important;
}

body .h2h-header {
  width: min(var(--mev-container), calc(100% - 32px)) !important;
  min-height: 72px !important;
  height: 72px !important;
  margin-inline: auto !important;
  padding: 0 !important;
  gap: 22px !important;
}

body .h2h-spacer {
  height: 72px !important;
}

body .h2h-brand {
  gap: 9px !important;
  min-width: max-content !important;
}

body .h2h-mark {
  width: 54px !important;
  height: 40px !important;
  padding: 5px 4px !important;
  border: 1px solid #cfe7df !important;
  border-radius: 13px !important;
  background: #eaf7f2 !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

body .h2h-mark img,
body .f31Mark img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  background: transparent !important;
  object-fit: contain !important;
}

body .h2h-name strong {
  color: var(--mev-ink) !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  letter-spacing: -.01em !important;
}

body .h2h-name > span {
  display: none !important;
}

body .h2h-nav {
  gap: 2px !important;
}

body .h2h-link,
body .h2h-shop-btn {
  min-height: 40px !important;
  padding: 9px 12px !important;
  border: 0 !important;
  border-radius: 11px !important;
  background: transparent !important;
  color: var(--mev-text) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  box-shadow: none !important;
}

body .h2h-link:hover,
body .h2h-shop-btn:hover,
body .h2h-link.is-active,
body .h2h-shop-btn.is-active {
  background: var(--mev-brand-soft) !important;
  color: var(--mev-brand-dark) !important;
}

body .h2h-actions {
  gap: 7px !important;
}

body .h2h-action {
  min-height: 38px !important;
  padding: 8px 11px !important;
  border: 1px solid var(--mev-line) !important;
  border-radius: 11px !important;
  background: #fff !important;
  color: var(--mev-ink) !important;
  box-shadow: none !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}

body .h2h-action.register {
  display: none !important;
}

body .h2h-action.search {
  width: 38px !important;
  min-width: 38px !important;
  padding: 0 !important;
}

body .h2h-action.search .h2h-action-text {
  display: none !important;
}

body .h2h-action.search .h2h-action-icon {
  font-size: 0 !important;
}

body .h2h-action.search .h2h-action-icon::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-sizing: border-box;
}

body .h2h-action.search .h2h-action-icon::after {
  content: "";
  display: block;
  width: 7px;
  height: 2px;
  margin: -1px 0 0 11px;
  border-radius: 2px;
  background: currentColor;
  transform: rotate(45deg);
}

html[dir="rtl"] body .h2h-action.search .h2h-action-icon::after {
  margin-right: 11px;
  margin-left: 0;
  transform: rotate(-45deg);
}

body .h2h-action.whatsapp {
  border-color: var(--mev-brand) !important;
  background: var(--mev-brand) !important;
  color: #fff !important;
}

body .h2h-action.cart {
  position: relative !important;
  padding-inline: 10px !important;
}

body .h2h-action.cart .h2h-count {
  min-width: 18px !important;
  height: 18px !important;
  padding: 0 5px !important;
  border-radius: 9px !important;
  background: var(--mev-brand) !important;
  color: #fff !important;
  font-size: 10px !important;
}

body .h2h-mega {
  top: calc(100% + 8px) !important;
  border: 1px solid var(--mev-line) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, .98) !important;
  box-shadow: var(--mev-shadow) !important;
}

body .h2h-mega-card,
body .h2h-knowledge-hero,
body .h2h-knowledge-item {
  border-color: var(--mev-line) !important;
  border-radius: 14px !important;
  box-shadow: none !important;
}

body .h2h-panel {
  background: rgba(16, 38, 32, .24) !important;
  backdrop-filter: blur(8px) !important;
}

body .h2h-card {
  width: min(420px, 100%) !important;
  border: 0 !important;
  border-radius: 24px 0 0 24px !important;
  background: #fff !important;
  box-shadow: -18px 0 60px rgba(16, 38, 32, .16) !important;
}

html[dir="rtl"] body .h2h-card {
  border-radius: 0 24px 24px 0 !important;
}

body .h2h-mobile-head {
  border-bottom: 1px solid var(--mev-line) !important;
}

body .h2h-mobile-commerce {
  grid-template-columns: 1fr 1fr !important;
  gap: 8px !important;
}

body .h2h-mobile-auth-card.register {
  display: none !important;
}

body .h2h-mobile-auth-card,
body .h2h-mobile-cart-card,
body .h2h-mobile-link,
body .h2h-mobile-shop {
  border: 1px solid var(--mev-line) !important;
  border-radius: 14px !important;
  background: #fff !important;
  box-shadow: none !important;
}

body .h2h-mobile-auth-card small,
body .h2h-mobile-cart-card small {
  display: none !important;
}

body .h2h-mobile-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
}

body .h2h-mobile-link {
  min-height: 58px !important;
  padding: 12px !important;
}

body .h2h-mobile-link.is-active {
  border-color: rgba(7, 143, 114, .24) !important;
  background: var(--mev-brand-soft) !important;
  color: var(--mev-brand-dark) !important;
}

body .h2h-mobile-important {
  display: none !important;
}

body .h2h-mobile-actions .h2h-action {
  min-height: 46px !important;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

body .f31Footer {
  margin: 0 !important;
  padding: 56px 0 22px !important;
  border: 0 !important;
  background: #112c27 !important;
  color: #fff !important;
}

body .f31Wrap {
  width: min(var(--mev-container), calc(100% - 32px)) !important;
  margin-inline: auto !important;
}

body .f31Cta {
  margin: 0 0 46px !important;
  padding: 24px 26px !important;
  border: 1px solid rgba(255, 255, 255, .11) !important;
  border-radius: 22px !important;
  background: rgba(255, 255, 255, .065) !important;
  box-shadow: none !important;
}

body .f31Cta h2 {
  margin: 0 !important;
  color: #fff !important;
  font-size: clamp(23px, 3vw, 34px) !important;
  font-weight: 750 !important;
}

body .f31Cta p {
  margin: 6px 0 0 !important;
  color: rgba(255, 255, 255, .66) !important;
  font-size: 13px !important;
}

body .f31Btn {
  min-height: 44px !important;
  padding: 10px 15px !important;
  border: 1px solid rgba(255, 255, 255, .16) !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, .08) !important;
  color: #fff !important;
  font-weight: 700 !important;
}

body .f31Btn.green {
  border-color: #14a982 !important;
  background: #14a982 !important;
}

body .f31Main {
  grid-template-columns: 220px 1fr !important;
  gap: 56px !important;
}

body .f31Mark {
  width: 64px !important;
  height: 42px !important;
  padding: 5px !important;
  border: 1px solid rgba(255, 255, 255, .15) !important;
  border-radius: 12px !important;
  background: #eaf7f2 !important;
  overflow: hidden !important;
}

body .f31Brand > p,
body .f31Signal {
  display: none !important;
}

body .f31Cols {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 28px !important;
}

body .f31Col h3 {
  margin: 0 0 12px !important;
  color: rgba(255, 255, 255, .55) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .05em !important;
  text-transform: uppercase !important;
}

body .f31List {
  gap: 5px !important;
}

body .f31List a {
  min-height: 32px !important;
  padding: 5px 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: rgba(255, 255, 255, .82) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
}

body .f31Count {
  background: rgba(255, 255, 255, .09) !important;
  color: rgba(255, 255, 255, .62) !important;
}

body .f31Bottom {
  margin-top: 42px !important;
  padding-top: 18px !important;
  border-top: 1px solid rgba(255, 255, 255, .10) !important;
  color: rgba(255, 255, 255, .54) !important;
  font-size: 11px !important;
}

/* --------------------------------------------------------------------------
   Home
   -------------------------------------------------------------------------- */

body.page-home .home-main-clean,
body.page-home .site-main {
  background: var(--mev-bg) !important;
}

body.page-home .luxHome {
  font-family: inherit !important;
  color: var(--mev-ink) !important;
}

body.page-home .luxWrap {
  width: min(var(--mev-container), calc(100% - 32px)) !important;
  max-width: none !important;
  padding: 0 !important;
}

body.page-home .luxHero {
  padding: 20px 0 0 !important;
  background: transparent !important;
}

body.page-home .luxHeroShell {
  min-height: 0 !important;
  height: auto !important;
  margin: 0 !important;
  border: 1px solid var(--mev-line) !important;
  border-radius: var(--mev-radius-lg) !important;
  background:
    radial-gradient(circle at 84% 16%, rgba(7, 143, 114, .14), transparent 30%),
    #fff !important;
  box-shadow: var(--mev-shadow-sm) !important;
}

body.page-home .luxHeroShell > .luxWrap {
  width: 100% !important;
}

body.page-home .luxHeroGrid {
  grid-template-columns: 1.05fr .95fr !important;
  min-height: 440px !important;
  gap: 40px !important;
  padding: 44px !important;
  align-items: center !important;
}

body.page-home .luxMini {
  padding: 6px 10px !important;
  border: 1px solid rgba(7, 143, 114, .15) !important;
  border-radius: 999px !important;
  background: var(--mev-brand-soft) !important;
  color: var(--mev-brand-dark) !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: .04em !important;
}

body.page-home .luxHero h1 {
  max-width: 640px !important;
  margin: 16px 0 0 !important;
  color: var(--mev-ink) !important;
  font-size: clamp(40px, 5.4vw, 68px) !important;
  line-height: 1.08 !important;
  letter-spacing: -.045em !important;
  font-weight: 760 !important;
}

html[dir="rtl"] body.page-home .luxHero h1 {
  letter-spacing: 0 !important;
  line-height: 1.28 !important;
}

body.page-home .luxHero h1 span {
  color: var(--mev-brand) !important;
}

body.page-home .luxLead {
  max-width: 600px !important;
  margin: 15px 0 0 !important;
  color: var(--mev-text) !important;
  font-size: 16px !important;
  line-height: 1.75 !important;
}

body.page-home .luxHeroActions {
  gap: 9px !important;
  margin-top: 22px !important;
}

body.page-home .luxBtn {
  min-height: 44px !important;
  padding: 10px 16px !important;
  border: 1px solid var(--mev-line) !important;
  border-radius: 12px !important;
  background: #fff !important;
  color: var(--mev-ink) !important;
  box-shadow: none !important;
  font-size: 13px !important;
  font-weight: 750 !important;
}

body.page-home .luxBtn.ai {
  border-color: var(--mev-brand) !important;
  background: var(--mev-brand) !important;
  color: #fff !important;
}

body.page-home .luxBtn.dark {
  border-color: var(--mev-navy) !important;
  background: var(--mev-navy) !important;
  color: #fff !important;
}

body.page-home .luxSignal {
  gap: 6px !important;
  margin-top: 18px !important;
}

body.page-home .luxSignal span {
  padding: 5px 8px !important;
  border: 1px solid var(--mev-line) !important;
  border-radius: 8px !important;
  background: #f8faf9 !important;
  color: var(--mev-muted) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
}

body.page-home .luxGallery {
  min-height: 350px !important;
  border-radius: 22px !important;
}

body.page-home .luxPhotoMain,
body.page-home .luxPhotoSmall,
body.page-home .luxPhotoWide {
  border: 5px solid #fff !important;
  border-radius: 18px !important;
  box-shadow: var(--mev-shadow-sm) !important;
}

body.page-home .luxMetric {
  border: 1px solid var(--mev-line) !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, .94) !important;
  box-shadow: var(--mev-shadow-sm) !important;
}

body.page-home .luxDock,
body.page-home #product-categories,
body.page-home #knowledge-categories,
body.page-home #brands {
  display: none !important;
}

body.page-home .luxSection {
  margin: 0 !important;
  padding: 50px 0 0 !important;
}

body.page-home .luxSearchPanel,
body.page-home .luxService {
  border: 1px solid var(--mev-line) !important;
  border-radius: 22px !important;
  background: #fff !important;
  box-shadow: var(--mev-shadow-sm) !important;
}

body.page-home .luxSearchPanel {
  grid-template-columns: .75fr 1.25fr !important;
  padding: 24px !important;
}

body.page-home .luxSearchHead h2,
body.page-home .luxHead h2,
body.page-home .luxShopIntro h2,
body.page-home .luxService h2 {
  margin: 8px 0 0 !important;
  color: var(--mev-ink) !important;
  font-size: clamp(27px, 3vw, 38px) !important;
  line-height: 1.22 !important;
  letter-spacing: -.025em !important;
  font-weight: 750 !important;
}

html[dir="rtl"] body.page-home .luxSearchHead h2,
html[dir="rtl"] body.page-home .luxHead h2,
html[dir="rtl"] body.page-home .luxShopIntro h2,
html[dir="rtl"] body.page-home .luxService h2 {
  letter-spacing: 0 !important;
}

body.page-home .luxSearchHead p,
body.page-home .luxHead p,
body.page-home .luxShopIntro p,
body.page-home .luxService p {
  margin-top: 7px !important;
  color: var(--mev-muted) !important;
  font-size: 13px !important;
  line-height: 1.65 !important;
}

body.page-home .luxSearch {
  padding: 5px !important;
  border: 1px solid var(--mev-line) !important;
  border-radius: 14px !important;
  background: #f9fbfa !important;
  box-shadow: none !important;
}

body.page-home .luxSearch input {
  min-height: 42px !important;
  padding-inline: 12px !important;
  font-size: 13px !important;
}

body.page-home .luxPills {
  margin-top: 8px !important;
}

body.page-home .luxPills a:nth-child(n+4) {
  display: none !important;
}

body.page-home .luxShopPath {
  grid-template-columns: .8fr repeat(3, 1fr) !important;
  gap: 12px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.page-home .luxShopIntro,
body.page-home .luxShopCard {
  min-height: 190px !important;
  padding: 20px !important;
  border: 1px solid var(--mev-line) !important;
  border-radius: 20px !important;
  background: #fff !important;
  box-shadow: none !important;
}

body.page-home .luxShopIntro {
  background: var(--mev-navy) !important;
}

body.page-home .luxShopIntro h2,
body.page-home .luxShopIntro p {
  color: #fff !important;
}

body.page-home .luxShopIntro .luxMini {
  border-color: rgba(255, 255, 255, .2) !important;
  background: rgba(255, 255, 255, .12) !important;
  color: #fff !important;
}

body.page-home .luxShopCard:hover,
body.page-home .luxCard:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(7, 143, 114, .28) !important;
  box-shadow: var(--mev-shadow-sm) !important;
}

body.page-home .luxShopIcon {
  width: 38px !important;
  height: 38px !important;
  border-radius: 11px !important;
  background: var(--mev-brand-soft) !important;
  color: var(--mev-brand-dark) !important;
  font-size: 17px !important;
}

body.page-home .luxShopCard h3 {
  margin-top: 16px !important;
  font-size: 18px !important;
  font-weight: 750 !important;
}

body.page-home .luxShopCard p {
  color: var(--mev-muted) !important;
  font-size: 12px !important;
  line-height: 1.55 !important;
}

body.page-home .luxShopGo {
  color: var(--mev-brand-dark) !important;
  font-size: 12px !important;
  font-weight: 750 !important;
}

body.page-home .luxHead {
  margin-bottom: 16px !important;
}

body.page-home .luxGrid4 {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

body.page-home .luxGrid3 {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

body.page-home .luxCard {
  border: 1px solid var(--mev-line) !important;
  border-radius: 18px !important;
  background: #fff !important;
  box-shadow: none !important;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease !important;
}

body.page-home .luxMedia {
  height: 180px !important;
  background: #f0f5f3 !important;
}

body.page-home .luxMedia img {
  object-fit: contain !important;
  padding: 10px !important;
}

body.page-home #guides .luxMedia img {
  object-fit: cover !important;
  padding: 0 !important;
}

body.page-home .luxBody {
  padding: 14px !important;
}

body.page-home .luxChip {
  padding: 5px 7px !important;
  border-radius: 7px !important;
  background: var(--mev-brand-soft) !important;
  color: var(--mev-brand-dark) !important;
  font-size: 10px !important;
  font-weight: 750 !important;
}

body.page-home .luxBody h3 {
  margin: 9px 0 0 !important;
  font-size: 16px !important;
  line-height: 1.35 !important;
  font-weight: 750 !important;
}

body.page-home .luxBody p {
  margin: 7px 0 0 !important;
  color: var(--mev-muted) !important;
  font-size: 11px !important;
  line-height: 1.5 !important;
}

body.page-home .luxMeta {
  margin-top: 10px !important;
  color: var(--mev-text) !important;
  font-size: 11px !important;
}

body.page-home .luxService {
  grid-template-columns: 1fr 340px !important;
  gap: 26px !important;
  padding: 26px !important;
}

body.page-home .luxServicePhoto {
  height: 220px !important;
  border-radius: 17px !important;
}

body.page-home .luxFAQ {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
  padding-bottom: 56px !important;
}

body.page-home .luxFAQ details {
  padding: 16px !important;
  border: 1px solid var(--mev-line) !important;
  border-radius: 16px !important;
  background: #fff !important;
  box-shadow: none !important;
}

body.page-home .luxFAQ summary {
  color: var(--mev-ink) !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
  font-weight: 750 !important;
}

body.page-home .luxFAQ p {
  color: var(--mev-muted) !important;
  font-size: 12px !important;
}

body.page-home .luxCard,
body.page-home .luxDockItem,
body.page-home .luxSearchPanel,
body.page-home .luxService,
body.page-home .luxFAQ details {
  opacity: 1 !important;
  transform: none !important;
}

/* --------------------------------------------------------------------------
   Vehicle directory
   -------------------------------------------------------------------------- */

body.vehicle-directory-page .vehicle-directory-main {
  background: var(--mev-bg) !important;
}

body.vehicle-directory-page .vdPage {
  background: var(--mev-bg) !important;
  color: var(--mev-ink) !important;
  font-family: inherit !important;
}

body.vehicle-directory-page .vdHero {
  width: min(var(--mev-container), calc(100% - 32px)) !important;
  margin: 20px auto 0 !important;
  border: 1px solid var(--mev-line) !important;
  border-radius: 24px !important;
  background:
    radial-gradient(circle at 85% 10%, rgba(7, 143, 114, .14), transparent 28%),
    #fff !important;
}

body.vehicle-directory-page .vdHero::after {
  display: none !important;
}

body.vehicle-directory-page .vdHeroInner {
  width: 100% !important;
  grid-template-columns: 1fr !important;
  padding: 42px !important;
}

body.vehicle-directory-page .vdPanel,
body.vehicle-directory-page .vdHeroActions {
  display: none !important;
}

body.vehicle-directory-page .vdKicker {
  padding: 6px 10px !important;
  border: 0 !important;
  background: var(--mev-brand-soft) !important;
  color: var(--mev-brand-dark) !important;
  box-shadow: none !important;
  font-size: 10px !important;
  font-weight: 750 !important;
}

body.vehicle-directory-page .vdTitle {
  max-width: 760px !important;
  margin-top: 13px !important;
  color: var(--mev-ink) !important;
  font-size: clamp(36px, 5vw, 55px) !important;
  line-height: 1.15 !important;
  letter-spacing: -.035em !important;
  font-weight: 760 !important;
}

html[dir="rtl"] body.vehicle-directory-page .vdTitle {
  letter-spacing: 0 !important;
  line-height: 1.32 !important;
}

body.vehicle-directory-page .vdSub {
  max-width: 720px !important;
  margin-top: 12px !important;
  color: var(--mev-muted) !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
}

body.vehicle-directory-page .vdWrap {
  width: min(var(--mev-container), calc(100% - 32px)) !important;
}

body.vehicle-directory-page .vdTools {
  position: sticky !important;
  top: 82px !important;
  z-index: 30 !important;
  margin-top: 14px !important;
  padding: 8px !important;
  border: 1px solid var(--mev-line) !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, .94) !important;
  box-shadow: var(--mev-shadow-sm) !important;
  backdrop-filter: blur(14px) !important;
}

body.vehicle-directory-page .vdInput,
body.vehicle-directory-page .vdSelect {
  height: 46px !important;
  border-color: var(--mev-line) !important;
  border-radius: 11px !important;
  background: #f9fbfa !important;
  font-size: 13px !important;
}

body.vehicle-directory-page .vdSection {
  padding: 40px 0 0 !important;
}

body.vehicle-directory-page .vdSectionHead {
  align-items: center !important;
  margin-bottom: 14px !important;
}

body.vehicle-directory-page .vdSection h2 {
  color: var(--mev-ink) !important;
  font-size: clamp(25px, 3vw, 36px) !important;
  line-height: 1.2 !important;
  letter-spacing: -.025em !important;
  font-weight: 750 !important;
}

html[dir="rtl"] body.vehicle-directory-page .vdSection h2 {
  letter-spacing: 0 !important;
}

body.vehicle-directory-page .vdSectionHead p {
  color: var(--mev-muted) !important;
  font-size: 12px !important;
}

body.vehicle-directory-page .vdBrandFeatured {
  gap: 10px !important;
}

body.vehicle-directory-page .vdBrandCard {
  padding: 10px !important;
  border: 1px solid var(--mev-line) !important;
  border-radius: 16px !important;
  background: #fff !important;
  box-shadow: none !important;
}

body.vehicle-directory-page .vdBrandLogo {
  height: 58px !important;
  border-radius: 12px !important;
  background: #f2f6f4 !important;
}

body.vehicle-directory-page .vdBrandCard b {
  margin-top: 9px !important;
  font-size: 13px !important;
  font-weight: 750 !important;
}

body.vehicle-directory-page .vdBrandCard span {
  margin-top: 3px !important;
  color: var(--mev-muted) !important;
  font-size: 10px !important;
}

body.vehicle-directory-page .vdPopularSection,
body.vehicle-directory-page .vdBrowseSection,
body.vehicle-directory-page .vdLatestSection,
body.vehicle-directory-page .vdSeoBlock {
  display: none !important;
}

body.vehicle-directory-page .vdBrandBlock {
  display: block !important;
  margin: 0 0 10px !important;
  padding: 0 !important;
  border: 1px solid var(--mev-line) !important;
  border-radius: 18px !important;
  background: #fff !important;
  overflow: clip !important;
}

body.vehicle-directory-page .vdBrandBlock[style*="display: none"] {
  display: none !important;
}

body.vehicle-directory-page .vdBrandTop {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  margin: 0 !important;
  padding: 15px 17px !important;
  cursor: pointer !important;
  list-style: none !important;
}

body.vehicle-directory-page .vdBrandTop::-webkit-details-marker {
  display: none !important;
}

body.vehicle-directory-page .vdBrandTop::after {
  content: "+";
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  background: var(--mev-brand-soft);
  color: var(--mev-brand-dark);
  font-size: 18px;
  font-weight: 600;
}

body.vehicle-directory-page .vdBrandBlock[open] > .vdBrandTop::after {
  content: "−";
}

body.vehicle-directory-page .vdBrandTop h3 {
  color: var(--mev-ink) !important;
  font-size: 20px !important;
  font-weight: 750 !important;
}

body.vehicle-directory-page .vdBrandTop a {
  display: none !important;
}

body.vehicle-directory-page .vdBrandBlock > .vdGrid {
  padding: 0 14px 14px !important;
}

body.vehicle-directory-page .vdGrid,
body.vehicle-directory-page .vdGridSmall {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

body.vehicle-directory-page .vdCard {
  border: 1px solid var(--mev-line) !important;
  border-radius: 15px !important;
  background: #fff !important;
  box-shadow: none !important;
}

body.vehicle-directory-page .vdImg {
  height: 145px !important;
  background: #f1f5f3 !important;
}

body.vehicle-directory-page .vdImg img {
  object-fit: contain !important;
  padding: 8px !important;
}

body.vehicle-directory-page .vdBody {
  padding: 11px !important;
}

body.vehicle-directory-page .vdBody h4 {
  color: var(--mev-ink) !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  font-weight: 750 !important;
}

body.vehicle-directory-page .vdVerify {
  margin-top: 7px !important;
  padding: 4px 6px !important;
  font-size: 10px !important;
}

body.vehicle-directory-page .vdMeta {
  gap: 4px !important;
  margin-top: 7px !important;
}

body.vehicle-directory-page .vdMeta span {
  padding: 4px 6px !important;
  border-radius: 6px !important;
  background: #f3f6f5 !important;
  color: var(--mev-muted) !important;
  font-size: 10px !important;
}

body.vehicle-directory-page .vdDesc,
body.vehicle-directory-page .vdCompatibility,
body.vehicle-directory-page .vdAction:not(.main) {
  display: none !important;
}

body.vehicle-directory-page .vdActions {
  margin-top: 8px !important;
}

body.vehicle-directory-page .vdAction.main {
  min-height: 34px !important;
  border: 0 !important;
  border-radius: 9px !important;
  background: var(--mev-brand) !important;
  color: #fff !important;
  font-size: 10px !important;
  font-weight: 750 !important;
}

body.vehicle-directory-page #vehiclesList {
  padding-bottom: 56px !important;
}

/* --------------------------------------------------------------------------
   Vehicle hub
   -------------------------------------------------------------------------- */

body.vehicle-hub-page .vehicle-hub-main,
body.vehicle-hub-page .vhPage {
  background: var(--mev-bg) !important;
  font-family: inherit !important;
}

body.vehicle-hub-page .vhHero {
  width: min(var(--mev-container), calc(100% - 32px)) !important;
  margin: 20px auto 0 !important;
  border: 1px solid var(--mev-line) !important;
  border-radius: 24px !important;
  background:
    radial-gradient(circle at 84% 16%, rgba(7, 143, 114, .13), transparent 30%),
    #fff !important;
}

body.vehicle-hub-page .vhHero::after {
  display: none !important;
}

body.vehicle-hub-page .vhHeroInner {
  width: 100% !important;
  grid-template-columns: 1fr 380px !important;
  min-height: 350px !important;
  padding: 34px 40px !important;
  gap: 30px !important;
}

body.vehicle-hub-page .vhKicker {
  padding: 6px 10px !important;
  border: 0 !important;
  background: var(--mev-brand-soft) !important;
  color: var(--mev-brand-dark) !important;
  box-shadow: none !important;
  font-size: 10px !important;
}

body.vehicle-hub-page .vhTitle {
  margin-top: 12px !important;
  color: var(--mev-ink) !important;
  font-size: clamp(35px, 5vw, 56px) !important;
  line-height: 1.17 !important;
  letter-spacing: -.04em !important;
  font-weight: 760 !important;
}

html[dir="rtl"] body.vehicle-hub-page .vhTitle {
  letter-spacing: 0 !important;
  line-height: 1.34 !important;
}

body.vehicle-hub-page .vhSub {
  max-width: 680px !important;
  margin-top: 12px !important;
  color: var(--mev-muted) !important;
  font-size: 14px !important;
  line-height: 1.72 !important;
}

body.vehicle-hub-page .vhImage {
  height: 270px !important;
  border: 0 !important;
  border-radius: 20px !important;
  background: #f0f5f3 !important;
  box-shadow: none !important;
}

body.vehicle-hub-page .vhImage img {
  object-fit: contain !important;
  padding: 14px !important;
}

body.vehicle-hub-page .vhWrap {
  display: flex !important;
  width: min(var(--mev-container), calc(100% - 32px)) !important;
  flex-direction: column !important;
}

body.vehicle-hub-page .vhSpecs {
  order: 1 !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 8px !important;
  margin-top: 14px !important;
}

body.vehicle-hub-page .vhSpec {
  min-height: 78px !important;
  padding: 12px !important;
  border: 1px solid var(--mev-line) !important;
  border-radius: 14px !important;
  background: #fff !important;
  box-shadow: none !important;
}

body.vehicle-hub-page .vhSpec b {
  color: var(--mev-muted) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
}

body.vehicle-hub-page .vhSpec span {
  margin-top: 6px !important;
  color: var(--mev-ink) !important;
  font-size: 12px !important;
  font-weight: 750 !important;
}

body.vehicle-hub-page .vhVerifyBox {
  order: 2 !important;
  margin-top: 10px !important;
  padding: 12px 14px !important;
  border-radius: 14px !important;
  box-shadow: none !important;
}

body.vehicle-hub-page .vhVerifyBox p {
  margin-top: 3px !important;
  font-size: 11px !important;
  line-height: 1.5 !important;
}

body.vehicle-hub-page .vhMiniNav,
body.vehicle-hub-page .vhSection--selection,
body.vehicle-hub-page .vhSection--readiness,
body.vehicle-hub-page .vhSection--related {
  display: none !important;
}

body.vehicle-hub-page .vhSection {
  margin-top: 34px !important;
  padding: 0 !important;
}

body.vehicle-hub-page .vhSection--info {
  order: 3 !important;
}

body.vehicle-hub-page #compatible-chargers {
  order: 4 !important;
}

body.vehicle-hub-page .vhSection--articles {
  order: 5 !important;
}

body.vehicle-hub-page .vhSection--sources {
  order: 6 !important;
}

body.vehicle-hub-page .vhSection--install {
  order: 7 !important;
}

body.vehicle-hub-page .vhSection--faq {
  order: 8 !important;
}

body.vehicle-hub-page .vhCTA {
  order: 9 !important;
}

body.vehicle-hub-page .vhSection h2,
body.vehicle-hub-page .vhCTA h2 {
  color: var(--mev-ink) !important;
  font-size: clamp(24px, 3vw, 34px) !important;
  line-height: 1.25 !important;
  letter-spacing: -.025em !important;
  font-weight: 750 !important;
}

html[dir="rtl"] body.vehicle-hub-page .vhSection h2,
html[dir="rtl"] body.vehicle-hub-page .vhCTA h2 {
  letter-spacing: 0 !important;
}

body.vehicle-hub-page .vhInfo {
  max-width: 900px !important;
  padding: 18px !important;
  border: 1px solid var(--mev-line) !important;
  border-radius: 16px !important;
  background: #fff !important;
  color: var(--mev-text) !important;
  font-size: 14px !important;
  line-height: 1.8 !important;
}

body.vehicle-hub-page .vhSectionIntro {
  margin: -5px 0 12px !important;
  color: var(--mev-muted) !important;
  font-size: 11px !important;
  line-height: 1.55 !important;
}

body.vehicle-hub-page .vhGrid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

body.vehicle-hub-page .vhCard {
  border: 1px solid var(--mev-line) !important;
  border-radius: 16px !important;
  background: #fff !important;
  box-shadow: none !important;
}

body.vehicle-hub-page .vhImg {
  height: 145px !important;
  background: #f1f5f3 !important;
}

body.vehicle-hub-page .vhImg img {
  object-fit: contain !important;
  padding: 9px !important;
}

body.vehicle-hub-page .vhSection--articles .vhImg img {
  object-fit: cover !important;
  padding: 0 !important;
}

body.vehicle-hub-page .vhBody {
  padding: 11px !important;
}

body.vehicle-hub-page .vhBody h3 {
  color: var(--mev-ink) !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  font-weight: 750 !important;
}

body.vehicle-hub-page .vhBody p {
  margin-top: 6px !important;
  color: var(--mev-muted) !important;
  font-size: 10px !important;
  line-height: 1.45 !important;
}

body.vehicle-hub-page .vhCompatNote {
  display: none !important;
}

body.vehicle-hub-page .vhCompatBadge {
  margin-bottom: 7px !important;
  padding: 4px 6px !important;
  font-size: 10px !important;
}

body.vehicle-hub-page .vhSourceGrid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
}

body.vehicle-hub-page .vhSourceCard {
  padding: 13px !important;
  border: 1px solid var(--mev-line) !important;
  border-radius: 14px !important;
  background: #fff !important;
  box-shadow: none !important;
}

body.vehicle-hub-page .vhSourceCard strong {
  font-size: 12px !important;
}

body.vehicle-hub-page .vhSourceOpen {
  min-height: 34px !important;
  border-radius: 9px !important;
  background: var(--mev-brand-soft) !important;
  color: var(--mev-brand-dark) !important;
  font-size: 10px !important;
}

body.vehicle-hub-page .vhInstallBox {
  grid-template-columns: 1fr auto !important;
  padding: 20px !important;
  border: 1px solid var(--mev-line) !important;
  border-radius: 18px !important;
  background: #fff !important;
  box-shadow: none !important;
}

body.vehicle-hub-page .vhInstallBox p {
  max-width: 680px !important;
  color: var(--mev-muted) !important;
  font-size: 12px !important;
  line-height: 1.6 !important;
}

body.vehicle-hub-page .vhInstallFacts {
  grid-template-columns: repeat(2, 130px) !important;
}

body.vehicle-hub-page .vhFaq {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 9px !important;
}

body.vehicle-hub-page .vhFaqItem {
  padding: 14px !important;
  border: 1px solid var(--mev-line) !important;
  border-radius: 14px !important;
  background: #fff !important;
  box-shadow: none !important;
}

body.vehicle-hub-page .vhFaqItem summary {
  cursor: pointer !important;
  color: var(--mev-ink) !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
  font-weight: 750 !important;
}

body.vehicle-hub-page .vhFaqItem p {
  margin: 8px 0 0 !important;
  color: var(--mev-muted) !important;
  font-size: 11px !important;
  line-height: 1.65 !important;
}

body.vehicle-hub-page .vhCTA {
  margin: 36px 0 56px !important;
  padding: 22px !important;
  border-radius: 20px !important;
  background: var(--mev-navy) !important;
  box-shadow: none !important;
}

body.vehicle-hub-page .vhCTA h2 {
  color: #fff !important;
}

body.vehicle-hub-page .vhCTA p {
  color: rgba(255, 255, 255, .66) !important;
  font-size: 12px !important;
}

body.vehicle-hub-page .vhCTA > div:last-child {
  display: flex !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
}

body.vehicle-hub-page .vhCTA a {
  min-height: 42px !important;
  border-radius: 11px !important;
  background: var(--mev-brand) !important;
  color: #fff !important;
  font-size: 12px !important;
}

body.vehicle-hub-page .vhCTA a.secondary {
  border: 1px solid rgba(255, 255, 255, .2) !important;
  background: rgba(255, 255, 255, .08) !important;
}

/* --------------------------------------------------------------------------
   Product
   -------------------------------------------------------------------------- */

body.product-page .product-main-clean,
body.product-page .mevA-wrap {
  background: var(--mev-bg) !important;
}

body.product-page .mevA-wrap {
  padding: 20px 0 92px !important;
}

body.product-page .mevA-container {
  max-width: var(--mev-container) !important;
  padding: 0 16px !important;
  color: var(--mev-ink) !important;
}

body.product-page .mevA-bc {
  margin-bottom: 14px !important;
  color: var(--mev-muted) !important;
  font-size: 11px !important;
}

body.product-page .mevA-top {
  margin-bottom: 14px !important;
  padding: 0 !important;
}

body.product-page .mevA-title {
  color: var(--mev-ink) !important;
  font-size: clamp(30px, 4vw, 45px) !important;
  line-height: 1.24 !important;
  letter-spacing: -.03em !important;
  font-weight: 760 !important;
}

html[dir="rtl"] body.product-page .mevA-title {
  letter-spacing: 0 !important;
  line-height: 1.42 !important;
}

body.product-page .mevA-sub {
  margin-top: 7px !important;
  color: var(--mev-muted) !important;
  font-size: 12px !important;
}

body.product-page .mevA-rightMeta .mevA-chip:not(.blue) {
  display: none !important;
}

body.product-page .mevA-chip {
  padding: 6px 9px !important;
  border-radius: 8px !important;
  background: var(--mev-brand-soft) !important;
  color: var(--mev-brand-dark) !important;
  font-size: 10px !important;
}

body.product-page .mevA-grid {
  grid-template-columns: 1.08fr .92fr !important;
  gap: 14px !important;
}

body.product-page .mevA-card {
  border: 1px solid var(--mev-line) !important;
  border-radius: 20px !important;
  background: #fff !important;
  box-shadow: none !important;
}

body.product-page .mevA-media {
  padding: 14px !important;
}

body.product-page .mevA-mainImg {
  min-height: 455px !important;
  border-radius: 16px !important;
  background: #f1f5f3 !important;
}

body.product-page .mevA-mainImg img {
  object-fit: contain !important;
  padding: 14px !important;
}

body.product-page .mevA-thumb {
  border-color: var(--mev-line) !important;
  border-radius: 10px !important;
}

body.product-page .mevA-thumb.is-active {
  border-color: var(--mev-brand) !important;
}

body.product-page .mevA-buy {
  position: sticky !important;
  top: 88px !important;
  padding: 20px !important;
}

body.product-page .mevA-price {
  color: var(--mev-ink) !important;
  font-size: 34px !important;
  font-weight: 800 !important;
}

body.product-page .mevA-smallNote {
  display: none !important;
}

body.product-page .mevA-qtyBox input {
  min-height: 42px !important;
  border: 1px solid var(--mev-line) !important;
  border-radius: 10px !important;
  background: #fff !important;
}

body.product-page .mevA-btn {
  min-height: 45px !important;
  border-radius: 11px !important;
  box-shadow: none !important;
  font-size: 12px !important;
  font-weight: 750 !important;
}

body.product-page .mevA-btn.primary {
  border-color: var(--mev-brand) !important;
  background: var(--mev-brand) !important;
  color: #fff !important;
}

body.product-page .mevA-btn.wa {
  background: #fff !important;
  color: var(--mev-brand-dark) !important;
  border: 1px solid rgba(7, 143, 114, .25) !important;
}

body.product-page .mevA-btn.cartLink,
body.product-page .mevA-btn.pdf {
  background: #f6f9f8 !important;
  color: var(--mev-text) !important;
  border: 1px solid var(--mev-line) !important;
}

body.product-page .mevA-meta {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 7px !important;
  margin-top: 14px !important;
}

body.product-page .mevA-kv {
  padding: 10px !important;
  border: 1px solid var(--mev-line) !important;
  border-radius: 11px !important;
  background: #f8faf9 !important;
}

body.product-page .mevA-kv .k {
  color: var(--mev-muted) !important;
  font-size: 10px !important;
}

body.product-page .mevA-kv .v {
  margin-top: 4px !important;
  color: var(--mev-ink) !important;
  font-size: 11px !important;
  font-weight: 750 !important;
}

body.product-page .mevA-content {
  grid-column: 1 / -1 !important;
  margin-top: 0 !important;
  padding: 18px !important;
}

body.product-page .mevA-tabs {
  gap: 5px !important;
  padding: 4px !important;
  border: 1px solid var(--mev-line) !important;
  border-radius: 12px !important;
  background: #f5f8f7 !important;
}

body.product-page .mevA-tab {
  min-height: 38px !important;
  border-radius: 9px !important;
  color: var(--mev-muted) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
}

body.product-page .mevA-tab[aria-selected="true"] {
  background: #fff !important;
  color: var(--mev-brand-dark) !important;
  box-shadow: var(--mev-shadow-sm) !important;
}

body.product-page .mevA-desc,
body.product-page .mevA-acc .ans {
  color: var(--mev-text) !important;
  font-size: 14px !important;
  line-height: 1.85 !important;
}

body.product-page .mevA-acc details {
  padding: 13px !important;
  border: 1px solid var(--mev-line) !important;
  border-radius: 12px !important;
  background: #fff !important;
}

body.product-page .mevA-acc summary {
  color: var(--mev-ink) !important;
  font-size: 13px !important;
  font-weight: 750 !important;
}

body.product-page .mevA-sticky {
  border-top: 1px solid var(--mev-line) !important;
  background: rgba(255, 255, 255, .96) !important;
  box-shadow: 0 -8px 30px rgba(16, 38, 32, .07) !important;
  backdrop-filter: blur(14px) !important;
}

/* --------------------------------------------------------------------------
   Search
   -------------------------------------------------------------------------- */

body.knowledge-search-page .knowledge-search-main,
body.knowledge-search-page .ksPage {
  background: var(--mev-bg) !important;
  font-family: inherit !important;
}

body.knowledge-search-page .ksHero {
  width: min(var(--mev-container), calc(100% - 32px)) !important;
  margin: 20px auto 0 !important;
  border: 1px solid var(--mev-line) !important;
  border-radius: 24px !important;
  background:
    radial-gradient(circle at 86% 12%, rgba(7, 143, 114, .14), transparent 28%),
    #fff !important;
}

body.knowledge-search-page .ksHero::after {
  display: none !important;
}

body.knowledge-search-page .ksHeroInner {
  width: 100% !important;
  max-width: 820px !important;
  padding: 38px !important;
}

body.knowledge-search-page .ksKicker {
  padding: 6px 9px !important;
  border: 0 !important;
  background: var(--mev-brand-soft) !important;
  color: var(--mev-brand-dark) !important;
  font-size: 10px !important;
}

body.knowledge-search-page .ksTitle {
  margin-top: 12px !important;
  color: var(--mev-ink) !important;
  font-size: clamp(32px, 4vw, 46px) !important;
  line-height: 1.22 !important;
  font-weight: 760 !important;
}

body.knowledge-search-page .ksSub {
  margin-top: 8px !important;
  color: var(--mev-muted) !important;
  font-size: 13px !important;
}

body.knowledge-search-page .ksSearch {
  margin-top: 17px !important;
  padding: 5px !important;
  border: 1px solid var(--mev-line) !important;
  border-radius: 14px !important;
  background: #f8faf9 !important;
  box-shadow: none !important;
}

body.knowledge-search-page .ksSearch button {
  border-radius: 10px !important;
  background: var(--mev-brand) !important;
  font-weight: 750 !important;
}

body.knowledge-search-page .ksSuggestions a {
  border: 1px solid var(--mev-line) !important;
  background: #fff !important;
  color: var(--mev-muted) !important;
}

body.knowledge-search-page .ksWrap {
  width: min(var(--mev-container), calc(100% - 32px)) !important;
}

body.knowledge-search-page .ksContent {
  padding: 28px 0 56px !important;
}

body.knowledge-search-page .ksSummary h2,
body.knowledge-search-page .ksSectionTitle h3 {
  color: var(--mev-ink) !important;
  font-weight: 750 !important;
}

body.knowledge-search-page .ksQuick a,
body.knowledge-search-page .ksSection,
body.knowledge-search-page .ksCard,
body.knowledge-search-page .ksEmpty {
  border: 1px solid var(--mev-line) !important;
  background: #fff !important;
  box-shadow: none !important;
}

body.knowledge-search-page .ksSection {
  border-radius: 18px !important;
}

body.knowledge-search-page .ksCard {
  border-radius: 14px !important;
}

body.knowledge-search-page .ksThumb {
  background: #f1f5f3 !important;
}

body.knowledge-search-page .ksThumb.product img,
body.knowledge-search-page .ksThumb.vehicle img,
body.knowledge-search-page .ksThumb.brand img {
  object-fit: contain !important;
}

body.knowledge-search-page .ksName {
  color: var(--mev-ink) !important;
  font-weight: 750 !important;
}

body.knowledge-search-page .ksExcerpt,
body.knowledge-search-page .ksSummary p,
body.knowledge-search-page .ksSectionHint {
  color: var(--mev-muted) !important;
}

body.knowledge-search-page .ksRead,
body.knowledge-search-page .ksPrice {
  color: var(--mev-brand-dark) !important;
}

body.knowledge-search-page .ksTab {
  border-color: var(--mev-line) !important;
  background: #fff !important;
  color: var(--mev-text) !important;
}

body.knowledge-search-page .ksMiniCta {
  border-radius: 18px !important;
  background: var(--mev-navy) !important;
  box-shadow: none !important;
}

body.knowledge-search-page .ksMiniCta a {
  border-radius: 11px !important;
  background: var(--mev-brand) !important;
}

/* --------------------------------------------------------------------------
   Knowledge home
   -------------------------------------------------------------------------- */

body.kp-blog-home .kp-blog-main,
body.kp-blog-home .kpPage {
  background: var(--mev-bg) !important;
  font-family: inherit !important;
}

body.kp-blog-home .kpHero {
  width: min(var(--mev-container), calc(100% - 32px)) !important;
  margin: 20px auto 0 !important;
  border: 1px solid var(--mev-line) !important;
  border-radius: 24px !important;
  background:
    radial-gradient(circle at 86% 12%, rgba(7, 143, 114, .14), transparent 29%),
    #fff !important;
}

body.kp-blog-home .kpHero::before {
  display: none !important;
}

body.kp-blog-home .kpHeroGrid {
  width: 100% !important;
  grid-template-columns: 1fr !important;
  padding: 40px !important;
}

body.kp-blog-home .kpHeroPanel {
  display: none !important;
}

body.kp-blog-home .kpKicker {
  padding: 6px 10px !important;
  border: 0 !important;
  background: var(--mev-brand-soft) !important;
  color: var(--mev-brand-dark) !important;
  font-size: 10px !important;
}

body.kp-blog-home .kpTitle {
  margin-top: 12px !important;
  color: var(--mev-ink) !important;
  font-size: clamp(34px, 5vw, 54px) !important;
  line-height: 1.18 !important;
  letter-spacing: -.035em !important;
  font-weight: 760 !important;
}

html[dir="rtl"] body.kp-blog-home .kpTitle {
  letter-spacing: 0 !important;
  line-height: 1.34 !important;
}

body.kp-blog-home .kpSub {
  max-width: 700px !important;
  margin-top: 10px !important;
  color: var(--mev-muted) !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
}

body.kp-blog-home .kpSearch {
  max-width: 700px !important;
  margin-top: 18px !important;
  padding: 5px !important;
  border: 1px solid var(--mev-line) !important;
  border-radius: 14px !important;
  background: #f8faf9 !important;
  box-shadow: none !important;
}

body.kp-blog-home .kpSearch button,
body.kp-blog-home .kpSearch a {
  border-radius: 10px !important;
  background: var(--mev-brand) !important;
  font-weight: 750 !important;
}

body.kp-blog-home .kpWrap {
  width: min(var(--mev-container), calc(100% - 32px)) !important;
}

body.kp-blog-home .kpSection {
  padding: 42px 0 0 !important;
}

body.kp-blog-home .kpFeaturedSection,
body.kp-blog-home .kpBrandSection {
  display: none !important;
}

body.kp-blog-home .kpHead {
  margin-bottom: 14px !important;
}

body.kp-blog-home .kpHead h2 {
  color: var(--mev-ink) !important;
  font-size: clamp(25px, 3vw, 36px) !important;
  line-height: 1.25 !important;
  letter-spacing: -.025em !important;
  font-weight: 750 !important;
}

html[dir="rtl"] body.kp-blog-home .kpHead h2 {
  letter-spacing: 0 !important;
}

body.kp-blog-home .kpHead p {
  margin-top: 5px !important;
  color: var(--mev-muted) !important;
  font-size: 12px !important;
}

body.kp-blog-home .kpVehicleGrid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

body.kp-blog-home .kpVehicle {
  min-height: 150px !important;
  padding: 14px !important;
  border: 1px solid var(--mev-line) !important;
  border-radius: 16px !important;
  background: #fff !important;
  box-shadow: none !important;
}

body.kp-blog-home .kpVehicle b {
  font-size: 16px !important;
  font-weight: 750 !important;
}

body.kp-blog-home .kpVehicle span {
  color: var(--mev-muted) !important;
  font-size: 10px !important;
}

body.kp-blog-home .kpTopicPills {
  gap: 8px !important;
}

body.kp-blog-home .kpTopicPill {
  padding: 8px 11px !important;
  border: 1px solid var(--mev-line) !important;
  border-radius: 10px !important;
  background: #fff !important;
  box-shadow: none !important;
}

body.kp-blog-home .kpPostGrid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

body.kp-blog-home .kpPost {
  grid-template-rows: 170px 1fr !important;
  min-height: 345px !important;
  border: 1px solid var(--mev-line) !important;
  border-radius: 17px !important;
  background: #fff !important;
  box-shadow: none !important;
}

body.kp-blog-home .kpPostBody {
  padding: 13px !important;
}

body.kp-blog-home .kpPost h3 {
  color: var(--mev-ink) !important;
  font-size: 18px !important;
  line-height: 1.35 !important;
  font-weight: 750 !important;
}

body.kp-blog-home .kpPost p {
  color: var(--mev-muted) !important;
  font-size: 11px !important;
  line-height: 1.5 !important;
}

body.kp-blog-home .kpCta {
  margin: 0 0 56px !important;
  padding: 22px !important;
  border-radius: 20px !important;
  background: var(--mev-navy) !important;
  box-shadow: none !important;
}

body.kp-blog-home .kpCta h2 {
  color: #fff !important;
  font-size: 27px !important;
  font-weight: 750 !important;
}

body.kp-blog-home .kpCta p {
  color: rgba(255, 255, 255, .65) !important;
  font-size: 12px !important;
}

body.kp-blog-home .kpCta a {
  border-radius: 11px !important;
  background: var(--mev-brand) !important;
}

/* --------------------------------------------------------------------------
   Knowledge article
   -------------------------------------------------------------------------- */

body.content-post-page .content-post-main,
body.content-post-page .kpPage {
  background: var(--mev-bg) !important;
  font-family: inherit !important;
}

body.content-post-page .kpHero {
  width: min(var(--mev-container), calc(100% - 32px)) !important;
  margin: 20px auto 0 !important;
  border: 1px solid var(--mev-line) !important;
  border-radius: 24px !important;
  background:
    radial-gradient(circle at 86% 12%, rgba(7, 143, 114, .13), transparent 28%),
    #fff !important;
}

body.content-post-page .kpHero::after {
  display: none !important;
}

body.content-post-page .kpHeroInner {
  width: 100% !important;
  padding: 34px 40px !important;
}

body.content-post-page .kpBreadcrumb {
  margin-bottom: 12px !important;
  color: var(--mev-muted) !important;
  font-size: 11px !important;
}

body.content-post-page .kpKicker {
  gap: 5px !important;
  margin-bottom: 11px !important;
}

body.content-post-page .kpKicker span {
  padding: 5px 8px !important;
  border: 0 !important;
  background: var(--mev-brand-soft) !important;
  color: var(--mev-brand-dark) !important;
  font-size: 10px !important;
}

body.content-post-page .kpTitle {
  max-width: 900px !important;
  color: var(--mev-ink) !important;
  font-size: clamp(32px, 5vw, 54px) !important;
  line-height: 1.22 !important;
  letter-spacing: -.035em !important;
  font-weight: 760 !important;
}

html[dir="rtl"] body.content-post-page .kpTitle {
  letter-spacing: 0 !important;
  line-height: 1.42 !important;
}

body.content-post-page .kpExcerpt {
  max-width: 820px !important;
  margin-top: 12px !important;
  color: var(--mev-muted) !important;
  font-size: 15px !important;
  line-height: 1.75 !important;
}

body.content-post-page .kpFeatured {
  margin-top: 18px !important;
  border: 0 !important;
  border-radius: 18px !important;
  box-shadow: none !important;
}

body.content-post-page .kpFeatured img {
  height: min(460px, 52vw) !important;
}

body.content-post-page .kpWrap {
  width: min(1080px, calc(100% - 32px)) !important;
}

body.content-post-page .kpGrid {
  grid-template-columns: minmax(0, 1fr) 260px !important;
  gap: 34px !important;
  padding: 34px 0 66px !important;
}

body.content-post-page .kpContent {
  color: var(--mev-text) !important;
  font-size: 17px !important;
  line-height: 1.92 !important;
}

body.content-post-page .kpContent h2 {
  margin-top: 38px !important;
  color: var(--mev-ink) !important;
  font-size: 28px !important;
  line-height: 1.35 !important;
  font-weight: 750 !important;
}

body.content-post-page .kpContent h3 {
  margin-top: 28px !important;
  color: var(--mev-ink) !important;
  font-size: 22px !important;
  line-height: 1.4 !important;
  font-weight: 750 !important;
}

body.content-post-page .kpContent img {
  border-radius: 16px !important;
  box-shadow: none !important;
}

body.content-post-page .kpBox,
body.content-post-page .kpCompareBox,
body.content-post-page .kpFAQ details,
body.content-post-page .kpCard {
  border: 1px solid var(--mev-line) !important;
  background: #fff !important;
  box-shadow: none !important;
}

body.content-post-page .kpBox {
  border-radius: 16px !important;
  padding: 14px !important;
}

body.content-post-page .kpBox h3 {
  font-size: 14px !important;
  font-weight: 750 !important;
}

body.content-post-page .kpToc a,
body.content-post-page .kpSpec {
  color: var(--mev-muted) !important;
  font-size: 11px !important;
}

body.content-post-page .kpCompatCheck,
body.content-post-page .kpSide > .kpBox:last-child {
  display: none !important;
}

body.content-post-page .kpMidCTA {
  margin: 30px 0 !important;
  padding: 18px !important;
  border: 1px solid var(--mev-line) !important;
  border-radius: 16px !important;
  background: var(--mev-brand-soft) !important;
}

body.content-post-page .kpMidCTA h2 {
  color: var(--mev-ink) !important;
  font-size: 22px !important;
  font-weight: 750 !important;
}

body.content-post-page .kpMidCTA p {
  color: var(--mev-muted) !important;
  font-size: 12px !important;
}

body.content-post-page .kpSection {
  margin-top: 34px !important;
}

body.content-post-page .kpSection h2 {
  color: var(--mev-ink) !important;
  font-size: 26px !important;
  font-weight: 750 !important;
}

body.content-post-page .kpCards {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

body.content-post-page .kpCard {
  border-radius: 14px !important;
}

body.content-post-page .kpCardImg {
  height: 120px !important;
  background: #f1f5f3 !important;
}

body.content-post-page .kpCardImg img {
  object-fit: contain !important;
  padding: 7px !important;
}

body.content-post-page .kpCardBody {
  padding: 10px !important;
}

body.content-post-page .kpCardBody h3 {
  color: var(--mev-ink) !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  font-weight: 750 !important;
}

body.content-post-page .kpCardBody p {
  color: var(--mev-muted) !important;
  font-size: 10px !important;
}

body.content-post-page .kpFAQ summary {
  color: var(--mev-ink) !important;
  font-size: 13px !important;
  font-weight: 750 !important;
}

body.content-post-page .kpFAQ div {
  color: var(--mev-muted) !important;
  font-size: 12px !important;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1100px) {
  body .h2h-header {
    width: calc(100% - 24px) !important;
  }

  body .h2h-nav {
    display: none !important;
  }

  body .h2h-menu {
    display: grid !important;
  }

  body .h2h-action.account,
  body .h2h-action.whatsapp {
    display: none !important;
  }

  body .f31Main {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  body.page-home .luxHeroGrid {
    grid-template-columns: 1fr !important;
  }

  body.page-home .luxGallery {
    display: none !important;
  }

  body.page-home .luxShopPath {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  body.page-home .luxShopIntro {
    grid-column: 1 / -1 !important;
    min-height: auto !important;
  }

  body.vehicle-directory-page .vdGrid,
  body.vehicle-directory-page .vdGridSmall,
  body.vehicle-hub-page .vhGrid,
  body.kp-blog-home .kpVehicleGrid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  body.vehicle-hub-page .vhHeroInner {
    grid-template-columns: 1fr 320px !important;
  }

  body.product-page .mevA-grid {
    grid-template-columns: 1fr !important;
  }

  body.product-page .mevA-buy {
    position: static !important;
  }

  body.content-post-page .kpGrid {
    grid-template-columns: 1fr !important;
  }

  body.content-post-page .kpSide {
    display: none !important;
  }
}

@media (max-width: 760px) {
  body .h2h-header {
    width: 100% !important;
    height: 62px !important;
    min-height: 62px !important;
    padding: 0 10px !important;
    gap: 7px !important;
  }

  body .h2h-spacer {
    height: 62px !important;
  }

  body .h2h-mark {
    width: 48px !important;
    height: 36px !important;
    padding: 4px 3px !important;
    border-radius: 11px !important;
  }

  body .h2h-name strong {
    font-size: 13px !important;
  }

  body .h2h-actions {
    gap: 5px !important;
  }

  body .h2h-action.search,
  body .h2h-action.cart,
  body .h2h-menu {
    width: 36px !important;
    min-width: 36px !important;
    height: 36px !important;
    min-height: 36px !important;
  }

  body .h2h-action.lang {
    min-height: 36px !important;
    padding: 7px 9px !important;
    font-size: 10px !important;
  }

  body .h2h-action.cart .h2h-action-text {
    display: none !important;
  }

  body .h2h-card {
    border-radius: 0 !important;
  }

  body .f31Footer {
    padding-top: 34px !important;
  }

  body .f31Wrap {
    width: calc(100% - 24px) !important;
  }

  body .f31Cta {
    display: block !important;
    margin-bottom: 30px !important;
    padding: 19px !important;
    border-radius: 17px !important;
  }

  body .f31Cta h2 {
    font-size: 22px !important;
  }

  body .f31Actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 7px !important;
    margin-top: 15px !important;
  }

  body .f31Cols {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 28px 18px !important;
  }

  body .f31Bottom {
    display: block !important;
    line-height: 1.7 !important;
  }

  body .f31BottomLinks {
    margin-top: 7px !important;
    flex-wrap: wrap !important;
  }

  body.page-home .luxWrap {
    width: calc(100% - 20px) !important;
  }

  body.page-home .luxHero {
    padding-top: 10px !important;
  }

  body.page-home .luxHeroShell {
    min-height: 0 !important;
    height: auto !important;
    border-radius: 20px !important;
  }

  body.page-home .luxHeroGrid {
    min-height: 0 !important;
    padding: 27px 19px !important;
  }

  body.page-home .luxHero h1 {
    font-size: 38px !important;
  }

  html[dir="rtl"] body.page-home .luxHero h1 {
    font-size: 35px !important;
  }

  body.page-home .luxLead {
    font-size: 13px !important;
    line-height: 1.7 !important;
  }

  body.page-home .luxHeroActions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
  }

  body.page-home .luxBtn {
    width: 100% !important;
    min-height: 42px !important;
    padding: 9px !important;
    font-size: 11px !important;
  }

  body.page-home .luxSignal span:nth-child(n+4) {
    display: none !important;
  }

  body.page-home .luxSection {
    padding-top: 30px !important;
  }

  body.page-home .luxSearchPanel {
    display: block !important;
    padding: 17px !important;
    border-radius: 17px !important;
  }

  body.page-home .luxSearch {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    margin-top: 13px !important;
  }

  body.page-home .luxSearchHead h2,
  body.page-home .luxHead h2,
  body.page-home .luxShopIntro h2,
  body.page-home .luxService h2 {
    font-size: 25px !important;
  }

  body.page-home .luxShopPath {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  body.page-home .luxShopIntro {
    min-height: auto !important;
    padding: 17px !important;
  }

  body.page-home .luxShopCard {
    min-height: 154px !important;
    padding: 14px !important;
    border-radius: 16px !important;
  }

  body.page-home .luxShopCard:last-child {
    grid-column: 1 / -1 !important;
    min-height: 126px !important;
  }

  body.page-home .luxShopCard h3 {
    margin-top: 12px !important;
    font-size: 15px !important;
  }

  body.page-home .luxShopCard p {
    display: none !important;
  }

  body.page-home .luxGrid4,
  body.page-home .luxGrid3 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  body.page-home .luxMedia {
    height: 112px !important;
  }

  body.page-home .luxBody {
    padding: 10px !important;
  }

  body.page-home .luxBody h3 {
    font-size: 13px !important;
  }

  body.page-home .luxBody p {
    display: none !important;
  }

  body.page-home .luxService {
    display: block !important;
    padding: 18px !important;
    border-radius: 18px !important;
  }

  body.page-home .luxServicePhoto {
    height: 160px !important;
    margin-top: 15px !important;
  }

  body.page-home .luxFAQ {
    grid-template-columns: 1fr !important;
    padding-bottom: 38px !important;
  }

  body.vehicle-directory-page .vdHero,
  body.vehicle-hub-page .vhHero,
  body.knowledge-search-page .ksHero,
  body.kp-blog-home .kpHero,
  body.content-post-page .kpHero {
    width: calc(100% - 20px) !important;
    margin-top: 10px !important;
    border-radius: 19px !important;
  }

  body.vehicle-directory-page .vdHeroInner,
  body.vehicle-hub-page .vhHeroInner,
  body.knowledge-search-page .ksHeroInner,
  body.kp-blog-home .kpHeroGrid,
  body.content-post-page .kpHeroInner {
    width: 100% !important;
    padding: 24px 17px !important;
  }

  body.vehicle-directory-page .vdTitle,
  body.vehicle-hub-page .vhTitle,
  body.knowledge-search-page .ksTitle,
  body.kp-blog-home .kpTitle,
  body.content-post-page .kpTitle {
    font-size: 30px !important;
  }

  html[dir="rtl"] body.vehicle-directory-page .vdTitle,
  html[dir="rtl"] body.vehicle-hub-page .vhTitle,
  html[dir="rtl"] body.knowledge-search-page .ksTitle,
  html[dir="rtl"] body.kp-blog-home .kpTitle,
  html[dir="rtl"] body.content-post-page .kpTitle {
    line-height: 1.42 !important;
  }

  body.vehicle-directory-page .vdSub,
  body.vehicle-hub-page .vhSub,
  body.knowledge-search-page .ksSub,
  body.kp-blog-home .kpSub,
  body.content-post-page .kpExcerpt {
    font-size: 12px !important;
    line-height: 1.65 !important;
  }

  body.vehicle-directory-page .vdWrap,
  body.vehicle-hub-page .vhWrap,
  body.knowledge-search-page .ksWrap,
  body.kp-blog-home .kpWrap,
  body.content-post-page .kpWrap {
    width: 100% !important;
    padding-inline: 10px !important;
    box-sizing: border-box !important;
  }

  body.vehicle-directory-page .vdTools {
    top: 70px !important;
    grid-template-columns: 1fr !important;
    gap: 6px !important;
  }

  body.vehicle-directory-page .vdBrandFeatured {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 7px !important;
  }

  body.vehicle-directory-page .vdBrandLogo {
    height: 46px !important;
  }

  body.vehicle-directory-page .vdGrid,
  body.vehicle-directory-page .vdGridSmall,
  body.vehicle-hub-page .vhGrid,
  body.vehicle-hub-page .vhGrid.articles,
  body.kp-blog-home .kpVehicleGrid,
  body.kp-blog-home .kpPostGrid,
  body.content-post-page .kpCards {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 7px !important;
  }

  body.vehicle-directory-page .vdBrandBlock > .vdGrid {
    padding: 0 8px 8px !important;
  }

  body.vehicle-directory-page .vdImg {
    height: 100px !important;
  }

  body.vehicle-directory-page .vdBody {
    padding: 8px !important;
  }

  body.vehicle-directory-page .vdBody h4 {
    font-size: 12px !important;
  }

  body.vehicle-directory-page .vdMeta span:nth-child(n+3) {
    display: none !important;
  }

  body.vehicle-directory-page .vdVerify {
    display: none !important;
  }

  body.vehicle-hub-page .vhHeroInner {
    display: block !important;
  }

  body.vehicle-hub-page .vhImage {
    height: 190px !important;
    margin-top: 17px !important;
  }

  body.vehicle-hub-page .vhSpecs {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 7px !important;
  }

  body.vehicle-hub-page .vhSpec,
  body.vehicle-hub-page .vhSpec.wide {
    grid-column: auto !important;
  }

  body.vehicle-hub-page .vhSection {
    margin-top: 28px !important;
  }

  body.vehicle-hub-page .vhSection h2,
  body.vehicle-hub-page .vhCTA h2 {
    font-size: 23px !important;
  }

  body.vehicle-hub-page .vhImg {
    height: 98px !important;
  }

  body.vehicle-hub-page .vhSourceGrid,
  body.vehicle-hub-page .vhFaq {
    grid-template-columns: 1fr !important;
  }

  body.vehicle-hub-page .vhInstallBox {
    display: block !important;
  }

  body.vehicle-hub-page .vhInstallFacts {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    margin-top: 13px !important;
  }

  body.vehicle-hub-page .vhCTA {
    display: block !important;
  }

  body.vehicle-hub-page .vhCTA > div:last-child {
    margin-top: 14px !important;
  }

  body.product-page .mevA-wrap {
    padding-top: 12px !important;
  }

  body.product-page .mevA-container {
    padding: 0 9px !important;
  }

  body.product-page .mevA-title {
    font-size: 27px !important;
  }

  body.product-page .mevA-rightMeta {
    margin-top: 9px !important;
  }

  body.product-page .mevA-mainImg {
    min-height: 255px !important;
  }

  body.product-page .mevA-media,
  body.product-page .mevA-buy,
  body.product-page .mevA-content {
    padding: 12px !important;
    border-radius: 16px !important;
  }

  body.product-page .mevA-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  body.product-page .mevA-sticky .name {
    display: none !important;
  }

  body.product-page .mevA-sticky .bar {
    padding-inline: 9px !important;
  }

  body.knowledge-search-page .ksHeroInner {
    max-width: none !important;
  }

  body.knowledge-search-page .ksContent {
    padding-top: 16px !important;
  }

  body.knowledge-search-page .ksGrid,
  body.knowledge-search-page .ksGrid.small,
  body.knowledge-search-page .ksGrid.ksCols-1,
  body.knowledge-search-page .ksGrid.ksCols-2,
  body.knowledge-search-page .ksGrid.ksCols-3,
  body.knowledge-search-page .ksGrid.ksCols-4,
  body.knowledge-search-page .ksQuick {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.knowledge-search-page .ksCard {
    grid-template-rows: 94px 1fr !important;
  }

  body.kp-blog-home .kpSection {
    padding-top: 30px !important;
  }

  body.kp-blog-home .kpHead h2 {
    font-size: 24px !important;
  }

  body.kp-blog-home .kpVehicle {
    min-height: 132px !important;
    padding: 11px !important;
  }

  body.kp-blog-home .kpPost {
    grid-template-rows: 112px 1fr !important;
    min-height: 270px !important;
  }

  body.kp-blog-home .kpPost h3 {
    font-size: 14px !important;
  }

  body.kp-blog-home .kpPost p,
  body.kp-blog-home .kpDate {
    display: none !important;
  }

  body.kp-blog-home .kpCta {
    display: block !important;
    margin-bottom: 38px !important;
  }

  body.kp-blog-home .kpCtaActions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    margin-top: 14px !important;
  }

  body.content-post-page .kpHeroInner {
    padding-bottom: 17px !important;
  }

  body.content-post-page .kpFeatured {
    margin-inline: -7px !important;
    border-radius: 14px !important;
  }

  body.content-post-page .kpFeatured img {
    height: 230px !important;
  }

  body.content-post-page .kpGrid {
    padding: 24px 0 48px !important;
  }

  body.content-post-page .kpContent {
    font-size: 15px !important;
    line-height: 1.9 !important;
  }

  body.content-post-page .kpContent h2 {
    font-size: 23px !important;
  }

  body.content-post-page .kpContent h3 {
    font-size: 19px !important;
  }

  body.content-post-page .kpCardImg {
    height: 88px !important;
  }

  body.content-post-page .kpCardBody h3 {
    font-size: 12px !important;
  }
}

@media (max-width: 380px) {
  body .h2h-mark {
    width: 44px !important;
    height: 34px !important;
  }

  body .h2h-name strong {
    font-size: 12px !important;
  }

  body.page-home .luxHero h1 {
    font-size: 33px !important;
  }

  body.vehicle-directory-page .vdBrandFeatured {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.vehicle-directory-page .vdGrid,
  body.vehicle-hub-page .vhGrid,
  body.kp-blog-home .kpVehicleGrid,
  body.kp-blog-home .kpPostGrid,
  body.content-post-page .kpCards {
    gap: 6px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
