/* Motorenn recreation — loaded last so it wins over legacy Gavino chrome */

:root {
    --mn-black: #232323;
    --mn-text: #232323;
    --mn-muted: #747474;
    --mn-blue: #256fe5;
    --mn-blue-soft: rgba(47, 128, 237, 0.1);
    --mn-sold: #d31834;
    --font-mn: "Montserrat", arial, sans-serif;
    --font-pt: "PT Sans", arial, sans-serif;
    --font-roboto: "Roboto", arial, sans-serif;
    --font-body: "PT Sans", arial, sans-serif;
    --font-display: "Montserrat", arial, sans-serif;
    --red: #256fe5;
    --gold: #256fe5;
}

body {
    font-family: var(--font-pt) !important;
    color: var(--mn-text);
    background: #fff !important;
    letter-spacing: 0 !important;
}

.site-header {
    min-height: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
}

/* —— Header: overlay on home, solid elsewhere —— */
.mn-header {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 202;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}
body:not(.page-home) .mn-header {
    position: sticky !important;
    background: #fff !important;
    border-bottom: 0.5px solid #000 !important;
}
.mn-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
    padding: 0 64px;
    width: 100%;
    max-width: 1900px;
    margin: 0 auto;
}
.mn-header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.mn-header__logo-img {
    width: 119px;
    height: 25px;
    object-fit: contain;
}
.page-home .mn-header__logo-img--dark { display: none; }
.page-home .mn-header__logo-img--light { display: block; }
body:not(.page-home) .mn-header__logo-img--light { display: none; }
body:not(.page-home) .mn-header__logo-img--dark { display: block; }

.mn-nav,
.mn-header .site-nav.mn-nav {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 0 1 auto;
    justify-content: center;
    border-bottom: 0.5px solid #fff;
    height: 75px;
    min-width: 0;
}
body:not(.page-home) .mn-nav {
    border-bottom-color: transparent;
}
.mn-nav__list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.mn-nav__link {
    display: inline-block;
    margin: 0 16px;
    padding: 28px 0 24px;
    font: 600 15px/18px var(--font-mn) !important;
    color: #fff !important;
    white-space: nowrap;
    letter-spacing: 0 !important;
    text-transform: none !important;
    position: relative;
}
body:not(.page-home) .mn-nav__link { color: #000 !important; }
.mn-nav__link.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 4px solid #fff;
}
body:not(.page-home) .mn-nav__link.is-active::after {
    border-bottom-color: #000;
}
.mn-header__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 38px;
}
.mn-header__signin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 16px;
    margin: 0;
    border-radius: 3px;
    font: 400 15px/18px var(--font-roboto) !important;
    background: rgba(255,255,255,0.3) !important;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    color: #fff !important;
    text-align: center;
    white-space: nowrap;
    border: 0 !important;
    box-sizing: border-box;
}
.mn-header__signin span {
    display: block;
    text-align: center;
    line-height: 18px;
}
.mn-header__signin--menu {
    display: none;
}
body:not(.page-home) .mn-header__signin {
    background: rgba(0,0,0,0.08) !important;
    color: #000 !important;
}

.nav-toggle span { background: #fff; }
body:not(.page-home) .nav-toggle span { background: #000; }

.mn-header__actions {
    display: none;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    flex-shrink: 0;
    z-index: 1102;
    position: relative;
}
.mn-header__icon,
.mn-header .nav-toggle {
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 3px;
    color: #fff;
    background: rgba(255,255,255,0.3) !important;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    box-sizing: border-box;
}
.mn-header__icon {
    display: flex;
}
.mn-header__icon svg {
    width: 20px;
    height: 20px;
}
.mn-header__icon--phone svg {
    transform: scaleX(-1);
}
body:not(.page-home) .mn-header__icon { color: #000; }
body:not(.page-home) .mn-header__icon,
body:not(.page-home) .mn-header .nav-toggle,
body.nav-open .mn-header__icon,
body.nav-open .mn-header .nav-toggle {
    background: rgba(0,0,0,0.08) !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
body.nav-open .mn-header {
    background: #fff !important;
    border-bottom: 0.5px solid #000 !important;
}
.page-home.nav-open .mn-header__logo-img--light { display: none; }
.page-home.nav-open .mn-header__logo-img--dark { display: block; }
body.nav-open .mn-header__icon { color: #000; }
body.nav-open .nav-toggle span,
.page-home.nav-open .nav-toggle span { background: #000 !important; }

/* —— Hero —— */
.mn-hero {
    position: relative;
    overflow: hidden;
    background-color: #5a6059;
    height: 801px;
}
.mn-hero__img,
.mn-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
    max-width: none;
}
.mn-hero__video {
    z-index: 1;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    margin-top: -10%;
    object-fit: cover;
}
.mn-hero::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    background: linear-gradient(180deg, rgba(40,47,56,0.65), rgba(34,40,54,0) 50.52%);
}
.mn-hero__content {
    position: absolute;
    left: 64px;
    right: 64px;
    top: 217px;
    z-index: 4;
    text-align: center;
    color: #fff;
}
.mn-hero__content h1 {
    margin: 0;
    font: 600 35px/46px var(--font-mn) !important;
    color: #fff !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    text-shadow: none !important;
}
.mn-hero__content p {
    margin: 17px 0 0;
    font: 400 24px/30px var(--font-pt) !important;
    color: #fff !important;
    text-shadow: none !important;
}
.mn-hero__search {
    display: flex;
    justify-content: center;
    max-width: 750px;
    margin: 70px auto 0;
    height: 70px;
}
.mn-hero__search-select {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    margin-right: 2px;
    background: rgba(255,255,255,0.3) !important;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    color: #fff;
    font: 500 15px/18px var(--font-roboto);
    border-radius: 3px 0 0 3px;
    flex-shrink: 0;
}
.mn-hero__search input {
    flex: 1;
    border: 0;
    border-radius: 0;
    padding: 0 20px;
    height: 70px;
    font: 400 15px/18px var(--font-roboto);
    appearance: none;
    -webkit-appearance: none;
    background: rgba(255,255,255,0.3) !important;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    color: #fff !important;
    outline: none;
    min-width: 0;
}
.mn-hero__search input::placeholder { color: rgba(255,255,255,0.6); }
.mn-hero__search-btn {
    flex-shrink: 0;
    height: 70px;
    border: 0;
    border-radius: 0 3px 3px 0;
    padding: 0 22px;
    background: #fff !important;
    color: #000 !important;
    font: 500 15px/18px var(--font-roboto);
    cursor: pointer;
}
.mn-hero__search-btn:hover {
    background: #f2f2f2 !important;
}
.mn-hero__badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 20px;
    max-height: 100px;
}
.mn-hero__badge {
    position: relative;
    width: 150px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mn-hero__badge--forbes {
    width: 200px;
    height: 75px;
}
.mn-hero__badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    padding: 0;
}
.mn-hero__badge--forbes img {
    object-fit: cover;
}
.mn-hero__badge-sep {
    font-weight: 700;
    color: #fff;
    font-size: 18px;
    line-height: 1;
}

/* —— Shop cards —— */
.mn-shop {
    padding: 74px 0 24px;
    background: #fff;
}
.mn-shop--page { padding-top: 24px; }
.mn-shop__inner {
    width: min(1600px, calc(100% - 200px));
    margin: 0 auto;
}
.mn-shop__title {
    margin: 0 0 30px;
    font: 600 24px/29px var(--font-mn) !important;
    color: #000 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}
.mn-shop__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0 24px;
}
.mn-shop .vehicle-card--sold,
.mn-shop .vehicle-card--sold.vehicle-card--ca,
.vehicle-card--sold {
    cursor: default !important;
    pointer-events: auto !important;
}
.vehicle-card--sold a,
.mn-shop .vehicle-card--sold a {
    pointer-events: none !important;
    cursor: default !important;
}
.mn-shop .vehicle-card,
.mn-shop .vehicle-card--ca {
    width: calc(25% - 18px);
    max-width: 400px;
    margin: 0 0 32px;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: hidden;
    cursor: pointer;
    height: auto !important;
}
.mn-shop .vehicle-card--sold,
.mn-shop .vehicle-card--sold.vehicle-card--ca {
    cursor: default !important;
}
.mn-shop .vehicle-card:hover,
.mn-shop .vehicle-card--ca:hover {
    transform: none !important;
    box-shadow: none !important;
}
.mn-shop .vehicle-card__media {
    aspect-ratio: unset !important;
    padding-top: 60% !important;
    height: 0 !important;
    position: relative;
    background: #ddd;
    display: block;
    overflow: hidden;
}
.mn-shop .vehicle-card__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none;
    z-index: 1;
}
.mn-shop .vehicle-card:hover .vehicle-card__media img { transform: none !important; }
.mn-shop .vehicle-card__body {
    padding: 16px 0 !important;
    display: block;
}
.mn-shop .vehicle-card__row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}
.mn-shop .vehicle-card__body h3,
.mn-shop .vehicle-card__body h3 a {
    margin: 0 !important;
    font: 600 18px/22px var(--font-mn) !important;
    color: #232323 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}
.mn-shop .vehicle-card__meta {
    margin: 10px 0 0 !important;
    font: 400 14px/16px var(--font-pt) !important;
    color: #747474 !important;
}
.mn-shop .vehicle-card__price {
    font: 500 18px/22px var(--font-mn) !important;
    color: #232323 !important;
    text-align: right;
    white-space: nowrap;
    margin: 0 !important;
}
.mn-shop__all {
    text-align: center;
    margin: 28px 0 24px;
}
.mn-shop__all a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 50px;
    padding: 0 22px;
    background: #d31834;
    color: #fff !important;
    font: 400 14px/18px var(--font-mn) !important;
    text-decoration: none !important;
    border-radius: 3px;
    border: 0;
}

.page-home .mn-shop__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 30px;
}
.page-home .mn-shop__head .mn-shop__title { margin: 0; }
.page-home .mn-shop__controls {
    display: flex;
    gap: 8px;
}
.page-home .mn-shop__nav {
    width: 36px;
    height: 36px;
    border: 1px solid #000;
    background: #fff;
    color: #000;
    font-size: 28px;
    line-height: 1;
    border-radius: 3px;
    cursor: pointer;
    padding: 0 0 4px;
}
.page-home .mn-shop__nav:disabled {
    opacity: 0.28;
    cursor: default;
}
.page-home .mn-shop__nav[hidden] { display: none; }
.page-home .mn-shop__viewport {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    container-type: inline-size;
}
.page-home .mn-shop__viewport::-webkit-scrollbar { display: none; }
.page-home .mn-shop__grid {
    flex-wrap: nowrap !important;
    gap: 24px !important;
    width: max-content;
}
.page-home .mn-shop .vehicle-card,
.page-home .mn-shop .vehicle-card--ca {
    flex: 0 0 calc((100cqi - 72px) / 4);
    width: calc((100cqi - 72px) / 4) !important;
    max-width: none !important;
    margin: 0 !important;
    scroll-snap-align: start;
}
.mn-shop .vehicle-card__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.mn-shop .listing-badge--hold,
.listing-badge--hold {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    bottom: 0 !important;
    z-index: 5 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 32px;
    min-height: 32px;
    padding: 0 !important;
    background: #000 !important;
    color: #fff !important;
    text-transform: uppercase !important;
    font: 700 16px/1 var(--font-pt) !important;
    letter-spacing: 0.04em !important;
    text-align: center;
    pointer-events: none;
}
.listing-badge--hold strong,
.listing-badge--hold span { display: none; }
.listing-ribbon--sold span {
    position: absolute !important;
    top: 40% !important;
    left: 50% !important;
    width: 125%;
    transform: translate(-50%, -50%) rotate(-30deg) !important;
    background: rgba(255,0,0,0.5) !important;
    color: #fff !important;
    font: 700 24px/1 var(--font-mn) !important;
    padding: 10px 20px !important;
    letter-spacing: 0 !important;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    box-shadow: none !important;
}

/* —— Dream-car banner —— */
.mn-dream {
    margin-top: 50px;
    height: 515px;
    color: #fff;
    display: flex;
    align-items: center;
    background: url('/assets/images/banner-buy-sell.webp') center/cover no-repeat;
    filter: drop-shadow(0 4px 4px rgba(0,0,0,0.25));
}
.mn-dream p {
    margin: 0;
    padding-left: 100px;
    max-width: 560px;
    font: 700 30px/40px var(--font-mn);
    color: #fff;
    text-shadow: 0 4px 4px rgba(0,0,0,0.4);
}

/* —— The Motorenn Way —— */
.mn-way {
    padding: 80px 24px 75px;
    text-align: center;
    background: var(--mn-blue-soft);
}
.mn-way h2 {
    margin: 0 0 55px;
    font: 700 34px/27px var(--font-mn) !important;
    color: #000 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}
.mn-way__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto 28px;
    padding: 0 80px;
}
.mn-way__grid article {
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
}
.mn-way__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    margin-bottom: 8px;
}
.mn-way__grid img {
    height: 60px;
    width: auto;
    object-fit: contain;
}
.mn-way__grid strong {
    display: block;
    font: 700 24px/29px var(--font-mn) !important;
    letter-spacing: 0 !important;
    text-transform: none;
    margin-bottom: 8px;
}
.mn-way__grid span {
    font: 400 16px/22px var(--font-pt);
    color: #000;
    text-transform: uppercase;
}
.mn-way__tag {
    margin: 25px 0 0;
    font: italic 14px/20px var(--font-mn);
    color: #232323;
}

/* —— Split enthusiasts —— */
.mn-split,
.mn-sell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0 48px;
    padding: 50px 100px;
    background: #fff;
}
.mn-split__photo,
.mn-sell__photo {
    overflow: hidden;
}
    .mn-split__photo img,
    .mn-sell__photo img {
        width: 100%;
        height: 100%;
        min-height: 460px;
        max-width: none;
        object-fit: cover;
    }
.mn-split__text,
.mn-sell__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 8px 24px 24px;
}
.mn-split__text h2,
.mn-sell__text h2 {
    margin: 0 0 40px;
    font: 700 30px/30px var(--font-pt) !important;
    color: #000 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}
.mn-split__text p,
.mn-sell__text p {
    margin: 0 0 40px;
    font: 400 30px/30px var(--font-pt) !important;
    color: #000;
    max-width: none;
}
.mn-split__text p:last-child,
.mn-sell__text p:last-of-type {
    margin-bottom: 0;
}
.mn-sell__text p {
    margin-bottom: 40px;
}
.mn-sell__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 28px;
    margin-top: 8px;
    width: max-content;
    background: #000;
    color: #fff !important;
    font: 400 14px/16px var(--font-pt);
    border-radius: 3px;
}

/* —— Reviews —— */
.mn-reviews {
    width: 100%;
    height: 733px;
    background-color: rgba(47, 128, 237, 0.1);
    padding: 40px 100px;
    box-sizing: border-box;
}
.mn-reviews h2 {
    margin: 0 0 32px;
    color: #000 !important;
    font: 700 24px/29px var(--font-mn) !important;
    letter-spacing: -0.03em;
    text-transform: none !important;
}
.mn-reviews__swiper {
    position: relative;
}
.mn-reviews__viewport {
    height: 575px;
    overflow-x: auto;
    overflow-y: hidden;
    container-type: inline-size;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
    scrollbar-width: none;
}
.mn-reviews__viewport::-webkit-scrollbar {
    display: none;
}
.mn-reviews__track {
    display: flex;
    height: 100%;
}
.mn-reviews__slide {
    flex: 0 0 100cqi;
    width: 100cqi;
    max-width: 100cqi;
    height: 575px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 250px;
    align-content: start;
    justify-items: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}
.mn-reviews__card {
    width: 95%;
    height: 210px;
    margin: 0;
    background: #fff;
    border-radius: 7px;
    box-shadow: none;
    padding: 18px 20px;
    box-sizing: border-box;
    color: #000;
}
.mn-reviews__card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.mn-reviews__name {
    text-transform: capitalize;
    font: 700 16px/20px var(--font-pt);
    color: #000;
}
.mn-reviews__stars {
    display: flex;
    gap: 1px;
    margin-top: 4px;
}
.mn-reviews__stars svg {
    width: 14px;
    height: 14px;
    fill: #fbbd08;
}
.mn-reviews__avatar {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
    background: none;
    border-radius: 0;
}
.mn-reviews__card p {
    margin: 0;
    font: 400 16px/22px var(--font-pt);
    color: #000;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
}
.mn-reviews__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}
.mn-reviews__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #000;
    opacity: 0.25;
    border: 0;
    padding: 0;
    cursor: pointer;
}
.mn-reviews__dot.is-active {
    opacity: 1;
}

/* —— News —— */
.mn-news {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 733px;
    height: 733px;
    padding: 0;
    max-width: none;
    text-align: left;
    color: #fff;
}
.mn-news__bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 733px;
    min-width: 1000px;
    object-fit: cover;
    max-width: none;
}
.mn-news__inner {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    min-height: 733px;
    padding: 100px 150px 0 100px;
    background: none;
    box-sizing: border-box;
}
.mn-news h2 {
    margin: 0 0 32px;
    color: #fff !important;
    font: 600 24px/29px var(--font-mn) !important;
    letter-spacing: -0.03em;
    text-transform: none !important;
}
.mn-news__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
    align-items: stretch;
}
.mn-news__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 0;
    row-gap: 32px;
    justify-items: center;
    align-items: stretch;
}
.mn-news__card {
    width: 100%;
    max-width: 300px;
    height: 100%;
    max-height: 300px;
    background: rgba(255,255,255,0.3) !important;
    backdrop-filter: blur(80px);
    -webkit-backdrop-filter: blur(80px);
    box-shadow: none !important;
    border: 0 !important;
    border-radius: 0.28571429rem;
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1em 8px 20px;
    box-sizing: border-box;
}
.mn-news__logo {
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.mn-news__logo img {
    max-height: 58px;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    background: none !important;
}
.mn-news__logo--fox img {
    max-width: 80px;
    max-height: 34px;
}
.mn-news__logo--nbc img {
    max-width: 80px;
    max-height: 60px;
}
.mn-news__card p {
    margin: 0;
    font: 400 16px/22px var(--font-pt);
    text-align: center;
    color: #000;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mn-news__card--forbes {
    max-width: 520px !important;
    max-height: 375px !important;
    height: calc(100% - 32px);
    width: 100%;
    padding-top: 25px;
    align-self: start;
    margin: 0 auto;
}
.mn-news__forbes-text {
    font: 400 21px/27px var(--font-pt) !important;
    text-align: center;
    display: block !important;
    flex: 1 1 auto;
    padding: 0 12px;
}
.mn-news__more {
    margin-top: auto !important;
    width: 100%;
    font: italic 18px/27px var(--font-pt) !important;
    text-align: right !important;
    display: block !important;
    padding: 0 20px 20px 0 !important;
    flex: 0 0 auto;
}
.mn-news__more a {
    text-decoration: underline;
    color: #000;
}

/* —— Inquiry / lead form —— */
.mn-inquiry {
    background: #1a1a1a;
    padding: 56px 100px 72px;
    color: #fff;
}
.mn-inquiry__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: start;
}
.mn-inquiry__copy h2 {
    margin: 0 0 12px;
    font: 600 28px/34px var(--font-mn) !important;
    color: #fff !important;
}
.mn-inquiry__copy p {
    margin: 0 0 16px;
    font: 400 16px/24px var(--font-pt);
    color: rgba(255,255,255,0.72);
}
.mn-inquiry__copy a {
    display: block;
    font: 400 16px/28px var(--font-pt);
    color: #fff;
}
.mn-inquiry .lead-form-section,
.mn-inquiry .lead-form-card {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}
.mn-inquiry .lead-form-card h2 {
    font: 600 20px/26px var(--font-mn) !important;
    color: #fff !important;
}
.mn-inquiry .lead-form-card__subtitle,
.mn-inquiry .lead-form-card p {
    color: rgba(255,255,255,0.7);
}
.mn-inquiry .field input {
    background: rgba(255,255,255,0.12);
    border: 0;
    color: #fff;
    border-radius: 3px;
    height: 52px;
}
.mn-inquiry .field input::placeholder { color: rgba(255,255,255,0.55); }
.mn-inquiry .btn--primary,
.mn-inquiry .btn.btn--primary {
    background: #fff !important;
    border-color: #fff !important;
    color: #000 !important;
    text-transform: none !important;
    font: 500 15px/18px var(--font-roboto) !important;
    border-radius: 3px !important;
}

/* —— Buttons —— */
.btn--primary {
    background: #000 !important;
    border-color: #000 !important;
    color: #fff !important;
    text-transform: none !important;
    border-radius: 3px !important;
    font-family: var(--font-roboto) !important;
    letter-spacing: 0 !important;
}
.btn--outline-dark {
    border-color: #000 !important;
    color: #000 !important;
    background: #fff !important;
    border-radius: 3px !important;
    text-transform: none !important;
}
.btn--outline-dark:hover,
.btn--outline-dark:focus-visible {
    background: #000 !important;
    border-color: #000 !important;
    color: #fff !important;
}
.btn--outline-dark:hover svg,
.btn--outline-dark:hover .btn__icon,
.btn--outline-dark:focus-visible svg,
.btn--outline-dark:focus-visible .btn__icon {
    color: #fff !important;
    stroke: currentColor !important;
}

/* —— About —— */
.mn-about-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 600px;
    min-height: 600px;
    overflow: hidden;
    background-color: #3a3333;
    background-image:
        linear-gradient(212.17deg, rgba(91,67,67,.3) 45.27%, hsla(45,11%,79%,0) 123.43%),
        url("/assets/images/about-hero-photo.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.mn-about-hero h1 {
    position: relative;
    z-index: 1;
    margin: 0;
    font: 600 24px/29px var(--font-mn) !important;
    color: #fff !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    text-shadow: none !important;
}
.mn-about-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 48px;
    width: min(1200px, calc(100% - 80px));
    margin: 48px auto 0;
}
.mn-about-copy__col p {
    margin: 0 0 16px;
    font: 400 16px/30px var(--font-pt);
    color: #232323;
    white-space: pre-line;
}
.mn-about-quote {
    position: relative;
    width: 100%;
    max-width: 1038px;
    margin: 93px auto 80px;
    padding: 0 25px;
    font: italic 700 33px/49px var(--font-pt);
    color: #232323;
}
.mn-about-quote p { margin: 0; position: relative; z-index: 1; }
.mn-about-quote__mark {
    position: absolute;
    top: -29px;
    left: 14px;
    z-index: 0;
    opacity: 0.08;
    width: 90px;
    height: auto;
}
.mn-about-quote__author {
    margin-top: 9px !important;
    font: italic 400 20px/40px var(--font-pt) !important;
}
.page-about .mn-news { margin-top: 40px; }
.page-about .mn-reviews { margin: 150px 0 40px; }

/* —— Contact —— */
.mn-contact {
    padding: 80px 10vw 72px;
    background: #fff;
}
.mn-contact h1 {
    margin: 0 0 48px;
    font: 500 24px/30px var(--font-mn) !important;
    color: #000 !important;
    text-align: center;
    text-transform: none !important;
    letter-spacing: 0 !important;
}
.mn-contact__grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
    gap: 48px 64px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}
.mn-contact__info h2 {
    margin: 0 0 20px;
    font: 700 22px/28px var(--font-pt) !important;
    color: #000 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}
.mn-contact__row,
.mn-contact__hours {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    font: 400 18px/27px var(--font-pt);
    color: #000;
}
.mn-contact__row svg,
.mn-contact__hours svg {
    width: 20px;
    height: 20px;
    fill: #000;
    flex-shrink: 0;
    margin-top: 4px;
}
.mn-contact__row a { color: #000; text-decoration: none; }
.mn-contact__hours { margin-top: 8px; }
.mn-contact__hours > div { display: flex; flex-direction: column; gap: 6px; }
.mn-contact__hours > div > div {
    display: flex;
    gap: 16px;
}
.mn-contact__hours > div > div span:first-child {
    width: 150px;
    font-weight: 700;
}
.mn-contact__form .lead-form-section--boxed,
.mn-contact__form .lead-form-section--boxed .lead-form-card {
    background: #fff !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.lead-form-section--boxed .lead-form-card {
    padding: 50px !important;
    border: 2px solid #000 !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
}
.lead-form-section--boxed .lead-form-card h2 {
    margin: 0 0 24px;
    font: 600 22px/28px var(--font-mn) !important;
    color: #000 !important;
}
.lead-form-section--boxed .field { margin-bottom: 20px; }
.lead-form-section--boxed .field input,
.lead-form-section--boxed .field textarea {
    background: transparent !important;
    border: 0 !important;
    border-bottom: 1px solid #000 !important;
    border-radius: 0 !important;
    padding: 10px 0 !important;
    height: auto !important;
    color: #000 !important;
    font: 400 16px/22px var(--font-pt) !important;
    box-shadow: none !important;
}
.lead-form-section--boxed .field textarea {
    border: 1px solid #000 !important;
    border-radius: 3px !important;
    padding: 10px 12px !important;
    margin-top: 12px;
    resize: none;
    min-height: 110px;
}
.lead-form-section--boxed .field input::placeholder,
.lead-form-section--boxed .field textarea::placeholder { color: #000 !important; }
.lead-form-section--boxed .btn--primary {
    margin-top: 10px;
    background: #000 !important;
    border-color: #000 !important;
}

/* —— How It Works / Shipping —— */
.mn-hiw { background: #fff; }
.mn-hiw__hero {
    position: relative;
    min-height: 1100px;
    padding: 90px 8vw 80px;
    color: #fff;
    background:
        linear-gradient(212.17deg, rgba(91,67,67,.28) 45.27%, hsla(45,11%,79%,0) 123.43%),
        url("/assets/images/hiw-hero-motorenn.webp") center / cover no-repeat;
}
.mn-hiw__hero h1 {
    margin: 0 0 56px;
    text-align: center;
    font: 600 38px/46px var(--font-mn) !important;
    color: #fff !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}
.mn-hiw__block { max-width: 720px; margin: 0 0 56px; }
.mn-hiw__block h2 {
    margin: 0 0 28px;
    font: 500 22px/27px var(--font-mn) !important;
    color: #fff !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}
.mn-hiw__steps {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mn-hiw__steps li {
    position: relative;
    margin: 0 0 36px;
    padding-left: 48px;
    font: 400 17px/27px var(--font-pt);
    color: #fff;
    max-width: 510px;
}
.mn-hiw__steps li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 3px #fff;
}
.mn-hiw__steps li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 10px;
    top: 28px;
    bottom: -36px;
    width: 1px;
    background: rgba(255,255,255,0.4);
}
.mn-hiw__steps a {
    color: #fff !important;
    text-decoration: underline !important;
}
.mn-hiw-cta {
    height: 448px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(212.17deg, rgba(91,67,67,.3) 45.27%, hsla(45,11%,79%,0) 123.43%),
        url("/assets/images/hiw-car-motorenn.webp") center / cover no-repeat;
}
.mn-hiw-cta__card {
    width: 700px;
    max-width: calc(100% - 40px);
    height: 248px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-align: center;
    padding: 24px;
}
.mn-hiw-cta__card h2 {
    margin: 0 0 12px;
    font: 500 28px/27px var(--font-mn) !important;
    color: #fff !important;
    text-transform: none !important;
}
.mn-hiw-cta__card p {
    margin: 0;
    max-width: 520px;
    font: 400 16px/27px var(--font-pt);
    color: #fff;
}
.mn-hiw-cta__card a {
    color: #fff;
    text-decoration: underline;
}

/* —— Inventory search hero —— */
.mn-search-hero {
    position: relative;
    min-height: 280px;
    margin-bottom: 48px;
    padding: 100px 100px 48px;
    background: url("/assets/images/search-hero-motorenn.webp") center -70px / cover no-repeat;
}
.mn-search-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(213.53deg, rgba(63,61,68,.5) 32.01%, rgba(63,61,68,0) 76.41%);
}
.mn-search-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 750px;
}
.mn-search-hero__form {
    display: flex;
    height: 70px;
}
.mn-search-hero__form input {
    flex: 1;
    border: 0;
    border-radius: 3px 0 0 3px;
    padding: 0 20px;
    height: 70px;
    font: 400 15px/18px var(--font-roboto);
    background: rgba(255,255,255,0.3);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    color: #fff;
    outline: none;
}
.mn-search-hero__form input::placeholder { color: rgba(255,255,255,0.7); }
.mn-search-hero__form button {
    width: 140px;
    border: 1px solid #fff;
    border-radius: 0 3px 3px 0;
    background: transparent;
    color: #fff;
    font: 500 15px/18px var(--font-roboto);
    cursor: pointer;
}
.page-inventory .empty-state {
    padding: 40px 0 80px;
    text-align: left;
}
.page-inventory .empty-state h2 {
    font: 600 24px/29px var(--font-mn) !important;
    text-transform: none !important;
}
.page-inventory .empty-state p,
.page-inventory .empty-state a {
    font: 400 16px/24px var(--font-pt);
    color: #232323;
}

/* —— Vehicle detail —— */
.page-vehicle .vehicle-breadcrumb {
    display: flex !important;
    margin: 0 0 16px;
    font: 400 13px/18px var(--font-pt);
    color: #747474;
}
.page-vehicle .vehicle-breadcrumb a { color: #747474 !important; }
.page-vehicle .vehicle-breadcrumb span:last-child { color: #232323; font-weight: 600; }
.page-vehicle .vehicle-hold-header {
    width: 100%;
    padding: 32px 24px 28px !important;
    background: #000 !important;
    color: #fff !important;
    text-align: center;
    box-sizing: border-box;
}
.page-vehicle .vehicle-hold-header strong {
    display: block;
    font: 700 32px/38px var(--font-mn) !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff !important;
}
.page-vehicle .vehicle-hold-header p {
    margin: 10px auto 0;
    max-width: 740px;
    font: 400 16px/22px var(--font-pt) !important;
    color: #fff !important;
}
.page-vehicle .vehicle-hold-chrome {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 48px;
    padding: 10px 16px;
    background: #000 !important;
    overflow: hidden;
    pointer-events: none;
}
.page-vehicle .vehicle-hold-chrome__logo {
    width: 119px !important;
    height: 25px !important;
    object-fit: contain !important;
    flex-shrink: 0;
}
.page-vehicle .vehicle-hold-chrome__features {
    flex: 1;
    min-width: 0;
    margin: 0;
    color: #fff !important;
    font: 600 12px/16px var(--font-mn) !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: right;
}
.page-vehicle .vehicle-gallery__main:has(.vehicle-hold-chrome) .vehicle-gallery__counter {
    display: none;
}
.page-vehicle .vehicle-detail {
    padding: 40px 0 24px !important;
    background: #fff !important;
}
.page-vehicle .vehicle-detail h1,
.page-vehicle .vehicle-detail h2 {
    font-family: var(--font-mn) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}
.page-vehicle .vehicle-detail__heading h1 {
    font: 600 24px/29px var(--font-mn) !important;
    color: #000 !important;
}
.page-vehicle .vehicle-detail__price-label {
    font: 400 14px/18px var(--font-pt) !important;
    color: #747474 !important;
}
.page-vehicle .vehicle-detail__price {
    font: 600 24px/29px var(--font-mn) !important;
    color: #000 !important;
}
.page-vehicle .vehicle-trust {
    background: #fff !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    margin: 28px 0 36px !important;
    padding: 8px 0 4px;
    gap: 0;
}
.page-vehicle .vehicle-trust__item {
    padding: 12px 8px 16px !important;
    gap: 10px !important;
}
.page-vehicle .vehicle-trust__item + .vehicle-trust__item {
    border-left: 0.5px dashed #000 !important;
}
.page-vehicle .vehicle-trust__icon {
    width: 52px !important;
    height: 52px !important;
    border-radius: 50%;
    background-color: var(--mn-blue) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 26px 26px !important;
    filter: none !important;
    opacity: 1 !important;
}
.page-vehicle .vehicle-trust__icon--title {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23fff' stroke-width='1.8'%3E%3Cpath d='M12 3l7 3v6c0 4.2-3 7.4-7 9-4-1.6-7-4.8-7-9V6l7-3z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E") !important;
}
.page-vehicle .vehicle-trust__icon--history {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23fff' stroke-width='1.8'%3E%3Crect x='6' y='3' width='12' height='18' rx='1.5'/%3E%3Cpath d='M9 8h6M9 12h6M9 16h3'/%3E%3C/svg%3E") !important;
}
.page-vehicle .vehicle-trust__icon--delivery {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23fff' stroke-width='1.8'%3E%3Cpath d='M3 7h11v8H3z'/%3E%3Cpath d='M14 10h4l3 3v2h-7v-5z'/%3E%3Ccircle cx='7' cy='17' r='1.6'/%3E%3Ccircle cx='17' cy='17' r='1.6'/%3E%3C/svg%3E") !important;
}
.page-vehicle .vehicle-trust__copy strong {
    font: 700 11px/14px var(--font-mn) !important;
    color: #000 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.02em !important;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.page-vehicle .vehicle-trust__copy span {
    font: 400 13px/16px var(--font-pt) !important;
    color: #747474 !important;
}
.page-vehicle .vehicle-overview h2 {
    margin: 8px 0 20px;
    font: 600 24px/29px var(--font-mn) !important;
    color: #000 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}
.page-vehicle .vehicle-detail__specs-list {
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    overflow: visible !important;
    padding: 0 !important;
    margin: 0 0 8px !important;
}
.page-vehicle .vehicle-spec-row {
    display: flex !important;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    grid-template-columns: none !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid #e6e6e6 !important;
    background: transparent !important;
}
.page-vehicle .vehicle-spec-row__icon {
    display: none !important;
}
.page-vehicle .vehicle-spec-row__label {
    font: 700 15px/22px var(--font-pt) !important;
    color: #000 !important;
}
.page-vehicle .vehicle-spec-row__value {
    font: 400 15px/22px var(--font-pt) !important;
    color: #747474 !important;
    font-weight: 400 !important;
    text-align: right !important;
}
.page-vehicle .vehicle-detail__main--bottom {
    margin-top: 28px !important;
    padding-top: 8px !important;
}
.page-vehicle .vehicle-description {
    margin-top: 12px !important;
    margin-bottom: 2rem;
}
.page-vehicle .vehicle-description h2 {
    margin: 0 0 16px !important;
    font: 600 24px/29px var(--font-mn) !important;
}
.page-vehicle .vehicle-description__text {
    font: 400 16px/27px var(--font-pt);
    color: #232323;
}
.page-vehicle .lead-form-card--sidebar {
    border: 2px solid #000 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 28px !important;
}
.page-vehicle .lead-form-card--sidebar h2 {
    font: 600 18px/24px var(--font-mn) !important;
}
.page-vehicle .vehicle-gallery__nav,
.page-vehicle .vehicle-gallery__expand {
    background: rgba(255,255,255,0.85) !important;
    color: #000 !important;
    border-radius: 3px !important;
}

html.lightbox-open,
body.lightbox-open {
    overflow: hidden !important;
    height: 100% !important;
    overscroll-behavior: none !important;
}
body.lightbox-open {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
}
body.lightbox-open .site-shell {
    overflow: hidden !important;
}

/* —— Sell / Consignment —— */
.mn-offer-hero {
    text-align: center;
    padding: 100px 24px 80px;
    background: #fff;
}
.mn-offer-hero h1 {
    margin: 0 0 24px;
    font: 600 38px/46px var(--font-mn) !important;
    color: #000 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}
.mn-offer-hero p {
    margin: 0 auto 32px;
    max-width: 720px;
    font: 400 18px/27px var(--font-pt);
    color: #232323;
}
.mn-offer-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 22px;
    background: #000;
    color: #fff !important;
    border-radius: 3px;
    font: 400 14px/16px var(--font-pt);
    text-decoration: none !important;
}
.mn-consign-hero {
    height: 640px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 90px 24px 0;
    background: url("/assets/images/consignment-hero.jpg") center -240px / cover no-repeat;
}
.mn-consign-hero__box {
    max-width: 700px;
    padding: 35px 30px;
    color: #fff;
    text-align: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(80px);
    -webkit-backdrop-filter: blur(80px);
}
.mn-consign-hero__box h1 {
    margin: 0 0 15px;
    font: 500 38px/46px var(--font-mn) !important;
    color: #fff !important;
    text-transform: none !important;
}
.mn-consign-hero__box p {
    margin: 0 0 6px;
    font: 400 22px/27px var(--font-pt);
    color: #fff;
}
.mn-consign-hero__box p:first-of-type { font-weight: 700; }
.mn-consign-hero__box .mn-offer-hero__btn { margin-top: 25px; }
.mn-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 20px auto 65px;
    padding: 40px 24px;
    text-align: center;
}
.mn-benefits strong {
    display: block;
    margin: 15px 0 8px;
    font: 700 20px/24px var(--font-mn);
}
.mn-benefits span {
    font: 400 20px/26px var(--font-mn);
    color: #232323;
}
.mn-splitrow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 48px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 40px;
}
.mn-splitrow--reverse { direction: rtl; }
.mn-splitrow--reverse > * { direction: ltr; }
.mn-splitrow__text h2 {
    margin: 0 0 28px;
    font: 600 24px/29px var(--font-mn) !important;
    color: #000 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}
.mn-splitrow__text p {
    margin: 0 0 18px;
    font: 400 18px/27px var(--font-pt);
    color: #232323;
}
.mn-splitrow__note {
    font-style: italic;
    color: #747474 !important;
    font-size: 16px !important;
}
.mn-splitrow__link {
    display: inline-block;
    margin-top: 12px;
    color: #256fe5;
    text-decoration: underline;
    font: 400 18px/27px var(--font-pt);
}
.mn-splitrow__photo img {
    width: 100%;
    max-width: 574px;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: cover;
}
.mn-faq {
    background: radial-gradient(72.79% 72.79% at 50% -15.14%, rgba(26,26,26,.91) 0, #1a1a1a 100%);
    color: #fff;
    padding: 48px 100px;
}
.mn-faq h2 {
    margin: 0 0 28px;
    font: 600 28px/34px var(--font-mn) !important;
    color: #fff !important;
    text-transform: none !important;
}
.mn-faq__item {
    border-top: 0.5px solid rgba(255,255,255,0.25);
    padding: 16px 0;
}
.mn-faq__item:last-child { border-bottom: 0.5px solid rgba(255,255,255,0.25); }
.mn-faq__item summary {
    cursor: pointer;
    font: 600 18px/27px var(--font-mn);
    list-style: none;
}
.mn-faq__item summary::-webkit-details-marker { display: none; }
.mn-faq__item p {
    margin: 12px 0 0;
    max-width: 820px;
    font: 400 16px/27px var(--font-pt);
    color: rgba(255,255,255,0.85);
}
.mn-hiw-cta:has(.mn-hiw-cta__card--form) {
    height: auto;
    min-height: 448px;
    padding: 48px 0;
}
.mn-hiw-cta__card--form {
    width: min(700px, calc(100% - 40px));
    height: auto;
    min-height: 262px;
    padding: 36px 28px 40px;
}
.mn-hiw-cta__card--form .lead-form-section--boxed,
.mn-hiw-cta__card--form .lead-form-card {
    width: 100%;
    background: #fff !important;
    border-color: #fff !important;
    text-align: left;
}
.lead-form-section--on-dark {
    width: 100%;
    margin-top: 16px;
}

/* —— Footer: white like Motorenn —— */
.mn-footer {
    background: #fff;
    color: #000;
    max-width: 1900px;
    margin: 48px auto 0;
    padding: 48px 100px 24px;
}
.mn-footer__inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 1.2fr;
    gap: 32px 24px;
    align-items: start;
}
.mn-footer__logo {
    display: inline-flex;
    cursor: pointer;
}
.mn-footer__logo img {
    width: 160px;
    height: auto;
    display: block;
}
.mn-footer__badge {
    width: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
}
.mn-footer__badge img {
    width: 100px;
    height: auto;
    display: block;
}
.mn-footer__col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font: 400 16px/30px var(--font-pt);
}
.mn-footer__col a,
.mn-footer__col span {
    color: #000;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}
.mn-footer__col--brand {
    gap: 0;
}
.mn-footer__contact,
.mn-footer__col a.mn-footer__contact {
    display: flex;
    align-items: flex-start !important;
    gap: 10px;
    color: #000;
    text-decoration: none;
}
.mn-footer__contact svg {
    width: 16px;
    height: 16px;
    fill: #000;
    flex-shrink: 0;
    margin-top: 7px;
}
.mn-footer__contact span {
    display: block !important;
    margin: 0 !important;
    line-height: 30px;
}
.mn-footer__copy {
    margin-top: 71px;
    padding-top: 16px;
    border-top: 0.5px dashed #000;
    font: 400 10px/12px var(--font-roboto);
    color: #000;
}

@media (max-width: 1400px) {
    .mn-shop .vehicle-card,
    .mn-shop .vehicle-card--ca { width: calc(33.33% - 16px); }
    .page-home .mn-shop .vehicle-card,
    .page-home .mn-shop .vehicle-card--ca {
        flex-basis: calc((100cqi - 48px) / 3);
        width: calc((100cqi - 48px) / 3) !important;
    }
}
@media (max-width: 1200px) {
    .mn-shop__inner { width: calc(100% - 50px); }
    .mn-hero__content,
    .mn-header__inner { padding-left: 25px; padding-right: 25px; }
    .mn-hero__content { left: 25px; right: 25px; }
    .mn-search-hero { padding: 80px 25px 40px; background-position: 70% center; }
    .mn-contact { padding: 64px 25px 56px; }
    .mn-reviews { padding: 50px 20px 20px; }
    .mn-dream p,
    .mn-inquiry { padding-left: 25px; padding-right: 25px; }
    .mn-split,
    .mn-sell { padding: 40px 40px; gap: 32px; }
    .mn-way__grid { padding: 0; }
}
.site-header__mobile-bar { display: none !important; }

@media (max-width: 990px) {
    html,
    body,
    .site-shell {
        overflow-x: hidden;
        max-width: 100%;
    }
    body.nav-open::before { display: none !important; }
    .mn-header__inner { padding: 0 25px; height: 64px; }
    .mn-hero { height: 640px; }
    .mn-hero__img,
    .mn-hero__video {
        width: 100% !important;
        height: 100% !important;
        min-width: 100%;
        min-height: 100%;
        margin: 0 !important;
        object-fit: cover;
        object-position: center;
    }
    .mn-hero__content { left: 25px; right: 25px; top: 160px; padding: 0 !important; }
    .mn-hero__content h1 { font-size: 30px !important; line-height: 45px !important; text-align: left; }
    .mn-hero__content p { text-align: left; font-size: 18px !important; }
    .mn-hero__search { margin-top: 36px; height: 70px; max-width: 100%; }
    .mn-hero__search input { height: 70px; }
    .mn-hero__search-select { width: 78px; }
    .mn-hero__search-btn { height: 70px; padding: 0 16px; }
    .mn-hero__badges {
        margin-top: 16px;
        gap: 12px;
        flex-wrap: nowrap;
        justify-content: center;
        max-height: 80px;
        width: 100%;
    }
    .mn-hero__badge { width: 78px; height: 60px; }
    .mn-hero__badge--forbes { width: 103px; height: 80px; }
    .mn-news { height: auto; min-height: 0; }
    .mn-shop { padding-top: 32px; }
    .mn-shop .vehicle-card,
    .mn-shop .vehicle-card--ca { width: calc(50% - 12px); }
    .page-home .mn-shop .vehicle-card,
    .page-home .mn-shop .vehicle-card--ca {
        flex-basis: calc((100cqi - 24px) / 2);
        width: calc((100cqi - 24px) / 2) !important;
    }
    .mn-split,
    .mn-sell {
        grid-template-columns: 1fr;
        padding: 25px 0;
        gap: 0;
    }
    .mn-inquiry__inner,
    .mn-footer__inner,
    .mn-way__grid { grid-template-columns: 1fr; }
    .mn-dream { height: auto; min-height: 280px; }
    .mn-dream p { padding: 40px 20px; font-size: 22px; }
    .mn-footer { padding: 32px 25px 24px; }
    .mn-footer__col--brand {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-bottom: 40px;
    }
    .mn-footer__badge { margin: 0; }
    .mn-header { z-index: 1100; }
    .mn-header__inner { position: relative; z-index: 1102; }
    .mn-header__actions { display: flex !important; }
    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        padding: 0;
        margin-left: 0;
        z-index: 1103;
        background: rgba(255,255,255,0.3) !important;
        backdrop-filter: blur(50px);
        -webkit-backdrop-filter: blur(50px);
        border-radius: 3px;
    }
    .nav-toggle span:not(.sr-only) {
        width: 22px;
        height: 2px;
        margin: 0 !important;
        border-radius: 1px;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }
    .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mn-nav,
    .site-nav.mn-nav,
    .mn-header .site-nav.mn-nav {
        position: fixed !important;
        inset: auto 0 0 0 !important;
        top: 64px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: #fff;
        z-index: 1090;
        flex-direction: column;
        align-items: stretch !important;
        justify-content: flex-start !important;
        padding: 8px 0 24px !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        border: 0;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transition: opacity 0.2s ease, visibility 0.2s ease;
    }
    .mn-nav.is-open,
    .site-nav.mn-nav.is-open {
        display: flex !important;
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }
    .mn-nav__list { flex-direction: column; align-items: stretch; }
    .mn-nav__link,
    body:not(.page-home) .mn-nav__link {
        color: #000 !important;
        font: 700 18px/26px var(--font-pt) !important;
        margin: 0;
        padding: 16px 25px;
        border-top: 1px dashed #000;
        box-shadow: none;
        text-align: left;
    }
    .mn-nav__link.is-active::after { display: none; }
    .mn-nav__list li:last-child .mn-nav__link { border-bottom: 1px dashed #000; }
    .mn-header__cta { display: none !important; }
    .mn-header__signin--menu {
        display: inline-flex !important;
    }
    .mn-header__signin,
    body:not(.page-home) .mn-header__signin {
        margin: 24px 25px 0;
        height: 55px;
        background: #000 !important;
        color: #fff !important;
    }
    .mn-news { height: auto; min-height: 733px; }
    .mn-news__inner { position: relative; padding: 50px 20px 20px; min-height: 0; }
    .mn-news__layout { grid-template-columns: 1fr; row-gap: 24px; }
    .mn-news__card--forbes { height: auto; max-height: 435px !important; }
    .mn-about-copy { grid-template-columns: 1fr; width: calc(100% - 50px); }
    .mn-about-quote { max-width: 700px; font-size: 24px; line-height: 34px; }
    .mn-contact__grid { grid-template-columns: 1fr; }
    .lead-form-section--boxed .lead-form-card { padding: 40px 48px !important; }
    .mn-hiw__hero { min-height: 0; padding: 64px 25px 48px; }
    .mn-hiw__hero h1 { font-size: 30px !important; line-height: 38px !important; }
    .mn-hiw__block h2 { font-size: 22px !important; }
    .mn-search-hero { padding-top: 64px; }
    .mn-splitrow { grid-template-columns: 1fr; padding: 0 25px; margin-bottom: 48px; }
    .mn-splitrow--reverse { direction: ltr; }
    .mn-benefits { grid-template-columns: 1fr; }
    .mn-consign-hero { height: 550px; background-position: center; padding-top: 70px; }
    .mn-offer-hero { padding: 72px 25px 48px; }
    .mn-offer-hero h1 { font-size: 28px !important; line-height: 36px !important; }
    .mn-faq { padding: 40px 25px; }
}
@media (max-width: 767px) {
    html,
    body,
    .site-shell {
        overflow-x: hidden;
        max-width: 100%;
    }
    body.nav-open::before { display: none !important; }

    .mn-header__inner {
        height: 64px;
        padding: 0 16px !important;
    }
    .mn-header__actions { gap: 8px; }
    .nav-toggle { margin-left: 0; z-index: 1103; }
    body.nav-open .nav-toggle span,
    .page-home.nav-open .nav-toggle span { background: #000 !important; }

    .mn-nav,
    .site-nav.mn-nav,
    .mn-header .site-nav.mn-nav {
        top: 64px !important;
        padding-top: 8px !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .mn-nav__list,
    .mn-nav__list li,
    .mn-nav__link {
        width: 100%;
        box-sizing: border-box;
    }
    .mn-nav__link,
    body:not(.page-home) .mn-nav__link {
        padding: 16px 20px;
        border-top: 1px dashed #000;
    }
    .mn-header__signin,
    body:not(.page-home) .mn-header__signin {
        margin: 24px 20px 0;
        width: calc(100% - 40px);
        box-sizing: border-box;
        height: 55px;
        background: #000 !important;
        color: #fff !important;
    }

    .mn-hero { height: 680px; }
    .mn-hero__img,
    .mn-hero__video {
        width: 100% !important;
        height: 100% !important;
        min-width: 100%;
        min-height: 100%;
        margin: 0 !important;
        object-fit: cover;
        object-position: center;
        max-width: none;
    }
    .mn-hero__content {
        left: 25px !important;
        right: 25px !important;
        top: 150px !important;
        padding: 0 !important;
        text-align: left !important;
        width: auto;
    }
    .mn-hero__content h1 {
        font-size: 30px !important;
        line-height: 45px !important;
        max-width: none;
    }
    .mn-hero__content p {
        font-size: 16px !important;
        line-height: 22px !important;
        margin-top: 12px !important;
        max-width: none;
    }
    .mn-hero__search {
        display: flex !important;
        align-items: stretch;
        margin-top: 80px;
        height: 56px;
        max-width: 100%;
        width: 100%;
    }
    .mn-hero__search-select {
        width: 72px;
        height: 56px !important;
        min-height: 56px;
        font-size: 14px;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    .mn-hero__search input[type="search"],
    .mn-hero__search input:not([type="hidden"]) {
        display: block !important;
        flex: 1 1 auto !important;
        width: auto !important;
        min-width: 0 !important;
        height: 56px !important;
        padding: 0 14px !important;
        font-size: 14px !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    .mn-hero__search-btn {
        height: 56px !important;
        padding: 0 12px !important;
        font-size: 13px !important;
    }
    .mn-hero__badges {
        display: flex;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        align-items: center;
        gap: 8px;
        margin-top: 16px;
        max-height: 80px;
        width: 100%;
        overflow: hidden;
    }
    .mn-hero__badge { width: 78px !important; height: 56px !important; flex: 0 0 78px; }
    .mn-hero__badge--forbes { width: 108px !important; height: 72px !important; flex: 0 0 108px; }
    .mn-hero__badge img { padding: 0; }

    .mn-shop { padding: 28px 0 8px; }
    .mn-shop__inner { width: calc(100% - 50px) !important; }
    .mn-shop__title { margin-bottom: 20px; }
    .mn-shop__grid { gap: 0; }
    .mn-shop .vehicle-card,
    .mn-shop .vehicle-card--ca {
        width: 100% !important;
        max-width: none !important;
        margin: 0 0 28px;
    }
    .page-home .mn-shop__grid { gap: 16px !important; }
    .page-home .mn-shop .vehicle-card,
    .page-home .mn-shop .vehicle-card--ca {
        flex-basis: 100cqi;
        width: 100cqi !important;
        margin: 0 !important;
    }
    .mn-shop .vehicle-card__body h3,
    .mn-shop .vehicle-card__body h3 a,
    .mn-shop .vehicle-card__price {
        font-size: 16px !important;
        line-height: 20px !important;
    }

    .mn-dream { min-height: 200px; height: auto; margin-top: 8px; }
    .mn-dream p {
        padding: 36px 25px;
        font-size: 20px !important;
        line-height: 28px !important;
        max-width: none;
    }

    .mn-way { padding: 40px 25px 32px; }
    .mn-way h2 { font-size: 22px !important; line-height: 28px !important; margin-bottom: 24px; }
    .mn-way__grid { gap: 24px; }

    .mn-split,
    .mn-sell { padding: 0; gap: 0; }
    .mn-split__photo img,
    .mn-sell__photo img { min-height: 220px; max-height: 280px; }
    .mn-split__text,
    .mn-sell__text { padding: 28px 25px 32px; }
    .mn-split__text h2,
    .mn-sell__text h2 {
        font-size: 22px !important;
        line-height: 28px !important;
        margin-bottom: 12px !important;
    }
    .mn-split__text p,
    .mn-sell__text p {
        font-size: 16px !important;
        line-height: 24px !important;
    }

    .mn-reviews {
        height: auto !important;
        padding: 32px 16px 24px;
    }
    .mn-reviews h2 { font-size: 22px !important; margin-bottom: 16px; }
    .mn-reviews__viewport {
        height: auto !important;
        min-height: 0 !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
    }
    .mn-reviews__track {
        height: auto !important;
    }
    .mn-reviews__slide {
        height: auto !important;
        min-height: 0 !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: none !important;
        gap: 12px;
        padding-right: 0;
    }
    .mn-reviews__card {
        width: 100% !important;
        height: auto !important;
        min-height: 160px;
    }
    .mn-reviews__card:nth-child(n+3) { display: none; }
    .mn-reviews__dots {
        margin-top: 16px;
        gap: 12px;
    }
    .mn-reviews__dot {
        width: 10px;
        height: 10px;
    }

    .mn-news {
        height: auto !important;
        min-height: 0 !important;
    }
    .mn-news__bg {
        position: absolute !important;
        inset: 0;
        width: 100% !important;
        height: 100% !important;
        min-width: 0 !important;
        min-height: 100% !important;
        object-fit: cover !important;
    }
    .mn-news__inner {
        position: relative !important;
        padding: 36px 16px 40px !important;
        min-height: 0 !important;
        width: 100%;
    }
    .mn-news__layout { grid-template-columns: 1fr !important; gap: 12px; }
    .mn-news__grid {
        grid-template-columns: 1fr 1fr !important;
        column-gap: 10px !important;
        row-gap: 10px !important;
    }
    .mn-news__card {
        max-width: none !important;
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        min-height: 140px;
        padding: 12px 8px 16px;
    }
    .mn-news__logo { height: 40px; margin-bottom: 10px; }
    .mn-news__logo img { max-height: 38px; max-width: 110px; }
    .mn-news__card p { font: 400 13px/18px var(--font-pt) !important; }
    .mn-news__card--forbes {
        max-width: none !important;
        max-height: none !important;
        height: auto !important;
        padding: 16px 12px 20px;
    }
    .mn-news__forbes-text { font: 400 14px/20px var(--font-pt) !important; }
    .mn-news__more { font-size: 14px !important; }

    .mn-inquiry { padding: 32px 16px 40px; }
    .mn-inquiry__inner { grid-template-columns: 1fr; gap: 20px; }

    .mn-footer {
        margin-top: 16px;
        padding: 28px 20px 16px !important;
    }
    .mn-footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 12px 16px;
        row-gap: 0;
    }
    .mn-footer__col--brand { grid-column: 1 / -1; }
    .mn-footer__col--brand {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 14px;
        width: 100%;
        margin-bottom: 44px;
        padding-bottom: 8px;
    }
    .mn-footer__logo { flex: 0 0 auto; }
    .mn-footer__logo img { width: 96px !important; height: auto; }
    .mn-footer__badge {
        width: auto !important;
        margin: 0 !important;
        flex: 0 0 auto;
    }
    .mn-footer__badge img {
        width: auto;
        height: 36px;
        max-width: 88px;
        object-fit: contain;
    }
    .mn-footer__col a,
    .mn-footer__col span { margin-bottom: 10px; font-size: 15px; line-height: 22px; }
    .mn-footer__contact svg { margin-top: 3px; }
    .mn-footer__contact span { line-height: 22px !important; }
    .mn-footer__copy { margin-top: 20px; }

    .mn-about-hero { height: 260px; min-height: 260px; background-position: center; }
    .mn-about-copy {
        grid-template-columns: 1fr !important;
        width: calc(100% - 50px) !important;
        gap: 12px;
        margin-top: 28px;
    }
    .mn-about-copy__col p { font-size: 16px; line-height: 26px; }
    .mn-about-quote {
        margin: 36px auto 40px;
        padding: 0 25px 0 52px;
        font: italic 700 20px/26px var(--font-pt);
    }
    .mn-about-quote__mark { left: 16px; }
    .page-about .mn-reviews { margin: 32px 0 0; }
    .page-about .mn-news { margin-top: 24px; }

    .mn-contact { padding: 36px 20px 40px !important; }
    .mn-contact h1 { text-align: left; margin-bottom: 24px; }
    .mn-contact__hours > div > div { gap: 8px 12px; }
    .mn-contact__hours > div > div span:first-child {
        width: 88px !important;
        min-width: 88px;
        flex-shrink: 0;
    }
    .lead-form-section--boxed .lead-form-card { padding: 24px 0 !important; }
    .lead-form-section--boxed .field { margin-bottom: 16px; }

    .mn-hiw__hero {
        padding: 48px 20px 36px !important;
        background-position: center;
    }
    .mn-hiw__hero h1 {
        font-size: 26px !important;
        line-height: 32px !important;
        margin-bottom: 28px;
    }
    .mn-hiw__block { margin-bottom: 28px; padding-right: 4px; }
    .mn-hiw__steps li { padding-right: 0; }
    .mn-hiw-cta { height: auto; min-height: 220px; }
    .mn-hiw-cta:has(.mn-hiw-cta__card--form) { padding: 20px 0; min-height: 0; }
    .mn-hiw-cta__card { height: auto; }
    .mn-hiw-cta__card--form {
        width: calc(100% - 32px);
        padding: 24px 16px;
    }

    .mn-search-hero {
        min-height: 180px;
        padding: 40px 20px 28px !important;
        margin-bottom: 8px;
        background-size: cover;
        background-position: center;
    }
    .mn-search-hero__form { height: 52px; width: 100%; max-width: 100%; }
    .mn-search-hero__form input,
    .mn-search-hero__form button { height: 52px; }
    .mn-search-hero__form button { width: 96px; }

    .mn-offer-hero { padding: 48px 20px 32px; }
    .mn-offer-hero h1 { font-size: 22px !important; line-height: 28px !important; }
    .mn-consign-hero { height: 380px; padding: 72px 16px 0; background-position: center; }
    .mn-consign-hero__box { padding: 16px 18px; max-width: 310px; }
    .mn-consign-hero__box h1 { font-size: 22px !important; line-height: 28px !important; }
    .mn-consign-hero__box p { font-size: 14px !important; }
    .mn-benefits { margin-bottom: 20px; padding: 20px 16px; gap: 16px; }
    .mn-splitrow { padding: 0 20px; margin-bottom: 28px; gap: 16px; }
    .mn-faq { padding: 28px 20px; }

    .page-vehicle .vehicle-detail { padding: 12px 0 32px !important; }
    .page-vehicle .vehicle-breadcrumb {
        padding: 0 16px;
    }
    .page-vehicle .vehicle-hold-header {
        padding: 28px 20px 24px !important;
    }
    .page-vehicle .vehicle-hold-header strong {
        font: 700 32px/38px var(--font-mn) !important;
    }
    .page-vehicle .vehicle-hold-header p {
        font-size: 16px !important;
        line-height: 22px !important;
    }
    .page-vehicle .vehicle-detail__gallery {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        max-width: none;
    }
    .page-vehicle .vehicle-gallery__main {
        border-radius: 0 !important;
        border-left: 0 !important;
        border-right: 0 !important;
    }
    .page-vehicle .vehicle-trust {
        margin: 24px 0 40px !important;
    }
    .page-vehicle .vehicle-trust__item { padding: 8px 4px 12px !important; }
    .page-vehicle .container { width: calc(100% - 32px) !important; }
    .page-vehicle .vehicle-detail__heading,
    .page-vehicle .vehicle-detail__heading h1,
    .page-vehicle .vehicle-detail__price-row,
    .page-vehicle .vehicle-detail__price-label,
    .page-vehicle .vehicle-detail__price {
        text-align: left !important;
        justify-content: flex-start !important;
    }
    .page-vehicle .vehicle-detail__heading h1 {
        font-size: 22px !important;
        line-height: 28px !important;
        margin: 12px 0 8px !important;
    }
    .page-vehicle .vehicle-detail__form-inline { display: block !important; }
    .page-vehicle .vehicle-detail__form-inline .lead-form-card--sidebar {
        padding: 20px !important;
        border: 2px solid #000 !important;
        border-radius: 0 !important;
        text-align: left !important;
    }
    .page-vehicle .vehicle-detail__form-inline .lead-form-card--sidebar h2 {
        text-align: left !important;
        font: 600 18px/24px var(--font-mn) !important;
    }
    .page-vehicle .vehicle-detail__sidebar .lead-form-section { display: none !important; }
    .page-vehicle .vehicle-detail__sidebar .vehicle-detail__btn,
    .page-vehicle .vehicle-detail__sidebar .carfax-btn { display: none !important; }
    .page-vehicle .vehicle-mobile-bar { display: none !important; }
    .page-vehicle .site-main { padding-bottom: 0 !important; }
    .page-vehicle .vehicle-gallery__thumbs--desktop { display: none !important; }
    .page-vehicle .vehicle-gallery__thumbs--mobile {
        display: flex !important;
        overflow-x: auto;
        gap: 8px;
        padding: 10px 0 4px;
        -webkit-overflow-scrolling: touch;
    }
    .page-vehicle .vehicle-gallery__thumbs--mobile .vehicle-gallery__thumb {
        flex: 0 0 72px;
        width: 72px;
        height: 54px;
    }
    .page-vehicle .vehicle-hold-chrome {
        flex-wrap: nowrap;
        align-items: center;
        min-height: 44px;
        padding: 8px 12px;
        gap: 10px;
        background: #000 !important;
    }
    .page-vehicle .vehicle-hold-chrome__logo {
        width: 92px !important;
        height: 20px !important;
    }
    .page-vehicle .vehicle-hold-chrome__features {
        width: auto;
        font-size: 10px !important;
        line-height: 13px !important;
        text-align: right;
    }
    .page-vehicle .vehicle-lightbox {
        z-index: 1200;
        padding: 0;
        background: #000;
    }
    .page-vehicle .vehicle-lightbox__close {
        top: 96px !important;
        right: 12px !important;
        width: 52px !important;
        height: 52px !important;
        background: rgba(0, 0, 0, 0.28) !important;
        color: #fff !important;
        border-radius: 50%;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
    .page-vehicle .vehicle-lightbox__close svg {
        width: 28px !important;
        height: 28px !important;
        stroke-width: 2.2;
    }
    .page-vehicle .vehicle-gallery__nav { display: flex !important; }
}