/**
 * ==========================================================
 * MSTJapan
 * Vehicle Detail V4
 * Phase 18.14
 * Version: 2.0.0
 * ==========================================================
 */


/* ==========================================================
   PAGE
========================================================== */

.vehicle-detail-page {
    padding: 12px 0 42px;
    background: #f5f7fa;
    color: #12243a;
}

.vehicle-detail-shell {
    width: min(1440px, calc(100% - 28px));
    margin: 0 auto;
}

.vehicle-kicker {
    display: inline-block;
    margin-bottom: 4px;
    color: #f36f21;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}


/* ==========================================================
   BREADCRUMB
========================================================== */

.vehicle-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    min-height: 26px;
    margin-bottom: 9px;
    padding: 0 2px;
    color: #8190a2;
    font-size: 10px;
}

.vehicle-breadcrumb a {
    color: #506176;
    text-decoration: none;
}

.vehicle-breadcrumb a:hover {
    color: #f36f21;
}

.vehicle-breadcrumb strong {
    color: #12243a;
}


/* ==========================================================
   TOP TWO-COLUMN LAYOUT
========================================================== */

.vehicle-top-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        340px;
    gap: 16px;
    align-items: start;
}

.vehicle-main-card,
.vehicle-inquiry-card,
.vehicle-support-card,
.vehicle-similar-section,
.vehicle-unavailable {
    border: 1px solid #dde3ea;
    border-radius: 12px;
    background: #ffffff;
    box-shadow:
        0 5px 18px
        rgba(7, 29, 58, .045);
}

.vehicle-main-card {
    padding: 16px;
}

.vehicle-main-grid {
    display: grid;
    grid-template-columns:
        minmax(390px, .94fr)
        minmax(0, 1.08fr);
    gap: 18px;
    align-items: start;
}


/* ==========================================================
   GALLERY
========================================================== */

.vehicle-gallery-column {
    position: relative;
    min-width: 0;
}

.vehicle-gallery-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 390px;

    overflow: hidden;

    border: 1px solid #e0e5eb;
    border-radius: 16px;

    background: #eef2f5;
}

.vehicle-gallery-image {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    background: #eef2f5;

    cursor: zoom-in;
    user-select: none;
}

.vehicle-gallery-empty {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    color: #7c8a9b;
    font-size: 12px;
    font-weight: 800;
}

.vehicle-category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 7;

    display: inline-flex;
    align-items: center;
    min-height: 27px;

    padding: 0 10px;

    border-radius: 999px;

    background: #071d3a;

    color: #ffffff;

    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
}

.vehicle-gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 7;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    padding: 0;

    border: 1px solid rgba(255,255,255,.7);
    border-radius: 50%;

    background: rgba(255,255,255,.9);

    box-shadow:
        0 4px 12px
        rgba(7,29,58,.13);

    color: #071d3a;

    font-size: 27px;
    line-height: 1;

    cursor: pointer;

    transform: translateY(-50%);
}

.vehicle-gallery-arrow:hover {
    background: #f36f21;
    color: #ffffff;
}

.vehicle-gallery-prev {
    left: 12px;
}

.vehicle-gallery-next {
    right: 12px;
}

.vehicle-gallery-expand {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 7;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    padding: 0;

    border: 0;
    border-radius: 7px;

    background: rgba(7,29,58,.88);

    color: #ffffff;

    cursor: pointer;
}

.vehicle-gallery-counter {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 7;

    display: inline-flex;
    align-items: center;

    min-height: 24px;
    padding: 0 8px;

    border-radius: 5px;

    background: rgba(7,29,58,.86);

    color: #ffffff;

    font-size: 9px;
    font-weight: 900;
}


/* ==========================================================
   GALLERY THUMBNAILS
========================================================== */

.vehicle-gallery-thumbs {
    display: flex;
    gap: 8px;

    margin-top: 10px;

    overflow-x: auto;
    padding: 1px 1px 4px;

    scrollbar-width: thin;
}

.vehicle-gallery-thumb {
    flex: 0 0 92px;

    height: 66px;

    padding: 3px;

    overflow: hidden;

    border: 2px solid transparent;
    border-radius: 8px;

    background: #edf0f3;

    cursor: pointer;
}

.vehicle-gallery-thumb:hover,
.vehicle-gallery-thumb.is-active {
    border-color: #f36f21;
}

.vehicle-gallery-thumb img {
    display: block;

    width: 100%;
    height: 100%;

    border-radius: 5px;

    object-fit: cover;
}


/* ==========================================================
   MAGNIFIER
========================================================== */

.vehicle-gallery-lens {
    position: absolute;
    z-index: 6;

    display: none;

    width: 140px;
    height: 140px;

    border: 2px solid rgba(255,255,255,.94);
    border-radius: 9px;

    background: rgba(255,255,255,.12);

    box-shadow:
        0 0 0 1px rgba(7,29,58,.3),
        0 6px 18px rgba(7,29,58,.16);

    pointer-events: none;
}

.vehicle-gallery-lens.is-visible {
    display: block;
}

.vehicle-gallery-zoom-preview {
    position: absolute;
    top: 0;
    left: calc(100% + 15px);
    z-index: 50;

    display: none;

    width: 390px;
    height: 390px;

    border: 1px solid #d8e1eb;
    border-radius: 12px;

    background-color: #ffffff;
    background-repeat: no-repeat;
    background-size: 245%;

    box-shadow:
        0 16px 40px
        rgba(7,29,58,.24);

    pointer-events: none;
}

.vehicle-gallery-zoom-preview.is-visible {
    display: block;
}


/* ==========================================================
   INFORMATION COLUMN
========================================================== */

.vehicle-information-column {
    min-width: 0;
}

.vehicle-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 14px;

    padding-bottom: 11px;

    border-bottom: 1px solid #e4e8ed;
}

.vehicle-title-row > div {
    min-width: 0;
}

.vehicle-title-row h1 {
    margin: 0;

    color: #101f33;

    font-size: 25px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -.02em;
}

.vehicle-package {
    margin: 5px 0 0;

    color: #68788c;

    font-size: 10px;
    font-weight: 700;
}

.vehicle-status {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;

    min-height: 25px;

    padding: 0 10px;

    border:
        1px solid
        var(
            --vehicle-status-color,
            #138642
        );

    border-radius: 999px;

    color:
        var(
            --vehicle-status-color,
            #138642
        );

    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
}


/* ==========================================================
   PRICE
========================================================== */

.vehicle-price-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    padding: 12px 0;

    border-bottom: 1px solid #e4e8ed;
}

.vehicle-price-row > div > span,
.vehicle-stock-country span {
    display: block;

    margin-bottom: 2px;

    color: #f36f21;

    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.vehicle-price-row > div > strong {
    display: block;

    color: #f36f21;

    font-size: 25px;
    font-weight: 900;
    line-height: 1;
}

.vehicle-stock-country {
    text-align: right;
}

.vehicle-stock-country span {
    color: #778698;
    font-size: 9px;
}

.vehicle-stock-country strong {
    color: #12243a;
    font-size: 11px;
}


/* ==========================================================
   QUICK SPECS
========================================================== */

.vehicle-quick-specs {
    display: grid;
    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    margin: 10px 0;

    overflow: hidden;

    border: 1px solid #e1e5ea;
    border-radius: 7px;
}

.vehicle-quick-spec {
    min-width: 0;

    padding: 8px 6px;

    border-right: 1px solid #e1e5ea;

    text-align: center;
}

.vehicle-quick-spec:last-child {
    border-right: 0;
}

.vehicle-quick-spec strong,
.vehicle-quick-spec span {
    display: block;
}

.vehicle-quick-spec strong {
    overflow: hidden;

    color: #14263c;

    font-size: 9px;
    font-weight: 900;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.vehicle-quick-spec span {
    margin-top: 3px;

    color: #7b8796;

    font-size: 8px;
}


/* ==========================================================
   DATA SECTIONS
========================================================== */

.vehicle-data-section + .vehicle-data-section {
    margin-top: 10px;
}

.vehicle-data-section h2,
.vehicle-description-box h2,
.vehicle-markets-box h2 {
    margin: 0 0 7px;

    color: #12243a;

    font-size: 15px;
    font-weight: 900;
}


/* ==========================================================
   COMPACT SPECS TABLE
========================================================== */

.vehicle-spec-table {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    overflow: hidden;

    border:
        1px solid
        #dfe4ea;

    border-radius: 7px;
}

.vehicle-spec-cell {
    display: grid;
    grid-template-columns:
        46% minmax(0, 1fr);

    min-width: 0;
    min-height: 34px;

    border-right: 1px solid #dfe4ea;
    border-bottom: 1px solid #dfe4ea;
}

.vehicle-spec-cell:nth-child(2n) {
    border-right: 0;
}

.vehicle-spec-cell > span,
.vehicle-spec-cell > strong {
    display: flex;
    align-items: center;

    min-width: 0;

    padding: 6px 7px;

    font-size: 8px;
}

.vehicle-spec-cell > span {
    border-right: 1px solid #dfe4ea;

    background: #f5f6f8;

    color: #68778b;

    font-weight: 700;
}

.vehicle-spec-cell > strong {
    color: #12243a;

    font-weight: 900;

    overflow-wrap: anywhere;
}


/* ==========================================================
   FEATURES
========================================================== */

.vehicle-feature-table {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    overflow: hidden;

    border: 1px solid #dfe4ea;
    border-radius: 7px;
}

.vehicle-feature-item {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 5px;

    min-width: 0;
    min-height: 31px;

    padding: 6px 7px;

    border-right: 1px solid #dfe4ea;
    border-bottom: 1px solid #dfe4ea;
}

.vehicle-feature-item:nth-child(4n) {
    border-right: 0;
}

.vehicle-feature-item span {
    min-width: 0;

    overflow: hidden;

    color: #17283d;

    font-size: 8px;
    font-weight: 800;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.vehicle-feature-item strong {
    flex: 0 0 auto;

    color: #16a34a;

    font-size: 10px;
}


/* ==========================================================
   DESCRIPTION + MARKETS
========================================================== */

.vehicle-secondary-content {
    display: grid;
    grid-template-columns:
        minmax(0, 1.3fr)
        minmax(260px, .7fr);

    gap: 12px;

    margin-top: 13px;
    padding-top: 13px;

    border-top: 1px solid #e4e8ed;
}

.vehicle-description-box p {
    margin: 0;

    color: #627287;

    font-size: 9px;
    line-height: 1.65;
}

.vehicle-market-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.vehicle-market {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    min-height: 29px;

    padding: 0 8px;

    border: 1px solid #dfe4ea;
    border-radius: 5px;

    background: #ffffff;
}

.vehicle-market img {
    width: 22px;
    height: auto;
}

.vehicle-market strong {
    color: #24364b;

    font-size: 8px;
}


/* ==========================================================
   INQUIRY COLUMN
========================================================== */

.vehicle-inquiry-column {
    position: sticky;
    top: 14px;

    display: flex;
    flex-direction: column;
    gap: 13px;
}

.vehicle-inquiry-card {
    padding: 17px;
}

.vehicle-inquiry-card h2 {
    margin: 0;

    color: #102238;

    font-size: 20px;
    font-weight: 900;
}

.vehicle-account-state {
    margin-top: 10px;
    padding: 9px 10px;

    border: 1px solid #f3cfac;
    border-radius: 6px;

    background: #fff9f4;
}

.vehicle-account-state.is-registered {
    border-color: #b9e4c9;

    background: #f3fcf6;
}

.vehicle-account-state strong,
.vehicle-account-state span {
    display: block;
}

.vehicle-account-state strong {
    color: #bd5d09;

    font-size: 9px;
}

.vehicle-account-state.is-registered strong {
    color: #168746;
}

.vehicle-account-state span {
    margin-top: 3px;

    color: #6d7988;

    font-size: 8px;
    line-height: 1.45;
}


/* ==========================================================
   INQUIRY FORM
========================================================== */

.vehicle-inquiry-form {
    margin-top: 12px;
}

.vehicle-form-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 9px;

    margin-top: 9px;
}

.vehicle-field {
    min-width: 0;
}

.vehicle-field-full {
    width: 100%;
}

.vehicle-field + .vehicle-field-full,
.vehicle-form-grid + .vehicle-field-full {
    margin-top: 9px;
}

.vehicle-field label {
    display: block;

    margin-bottom: 4px;

    color: #536276;

    font-size: 8px;
    font-weight: 800;
}

.vehicle-field input,
.vehicle-field select,
.vehicle-field textarea {
    display: block;

    width: 100%;

    box-sizing: border-box;

    border: 1px solid #dce2e8;
    border-radius: 6px;

    background: #ffffff;

    color: #17283d;

    font-family: inherit;
    font-size: 9px;

    outline: none;

    transition:
        border-color .18s ease,
        box-shadow .18s ease;
}

.vehicle-field input,
.vehicle-field select {
    height: 38px;

    padding: 0 10px;
}

.vehicle-field textarea {
    min-height: 105px;

    padding: 10px;

    resize: vertical;
}

.vehicle-field input:focus,
.vehicle-field select:focus,
.vehicle-field textarea:focus {
    border-color: #f36f21;

    box-shadow:
        0 0 0 2px
        rgba(243,111,33,.1);
}

.vehicle-field input[readonly] {
    background: #f7f8fa;
}

.vehicle-inquiry-note {
    margin: 10px 0;

    color: #7b8796;

    font-size: 8px;
    line-height: 1.45;
}

.vehicle-form-status {
    display: none;

    margin: 8px 0 0;

    color: #67768a;

    font-size: 8px;
    line-height: 1.45;
    text-align: center;
}

.vehicle-form-status.is-visible {
    display: block;
}


/* ==========================================================
   BUTTONS
========================================================== */

.vehicle-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 39px;

    padding: 0 15px;

    border: 0;
    border-radius: 6px;

    font-family: inherit;
    font-size: 9px;
    font-weight: 900;

    text-decoration: none;

    cursor: pointer;
}

.vehicle-button-full {
    width: 100%;

    box-sizing: border-box;
}

.vehicle-button-primary {
    background: #f36f21;
    color: #ffffff;
}

.vehicle-button-primary:hover {
    background: #071d3a;
}

.vehicle-button-whatsapp {
    background: #16a855;
    color: #ffffff;
}

.vehicle-button-whatsapp:hover {
    background: #128543;
}

.vehicle-inquiry-divider {
    display: flex;
    align-items: center;

    gap: 8px;

    margin: 11px 0;
}

.vehicle-inquiry-divider::before,
.vehicle-inquiry-divider::after {
    content: "";

    flex: 1;

    height: 1px;

    background: #e0e4e9;
}

.vehicle-inquiry-divider span {
    color: #8995a3;

    font-size: 8px;
}


/* ==========================================================
   SUPPORT
========================================================== */

.vehicle-support-card {
    padding: 14px 16px;
}

.vehicle-support-card span,
.vehicle-support-card strong,
.vehicle-support-card small {
    display: block;
}

.vehicle-support-card span {
    color: #7b8796;

    font-size: 8px;
}

.vehicle-support-card strong {
    margin-top: 3px;

    color: #102238;

    font-size: 14px;
    font-weight: 900;
}

.vehicle-support-card small {
    margin-top: 3px;

    color: #7b8796;

    font-size: 8px;
}


/* ==========================================================
   SIMILAR VEHICLES
========================================================== */

.vehicle-similar-section {
    margin-top: 15px;
    padding: 15px;
}

.vehicle-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 14px;

    margin-bottom: 11px;
    padding-bottom: 9px;

    border-bottom: 1px solid #e5e9ee;
}

.vehicle-section-heading h2 {
    margin: 0;

    color: #102238;

    font-size: 18px;
    font-weight: 900;
}

.vehicle-similar-heading-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.vehicle-view-all {
    margin-right: 4px;

    color: #f36f21;

    font-size: 9px;
    font-weight: 900;

    text-decoration: none;
}

.vehicle-carousel-button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    padding: 0;

    border: 1px solid #dce2e9;
    border-radius: 5px;

    background: #ffffff;

    color: #071d3a;

    font-size: 19px;

    cursor: pointer;
}

.vehicle-carousel-button:hover {
    background: #f36f21;
    color: #ffffff;
}

.vehicle-similar-track {
    display: flex;
    gap: 10px;

    overflow-x: auto;

    padding-bottom: 4px;

    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
}

.vehicle-similar-card {
    flex:
        0 0
        calc((100% - 40px) / 5);

    min-width: 0;

    overflow: hidden;

    border: 1px solid #dce2e8;
    border-radius: 8px;

    background: #ffffff;

    scroll-snap-align: start;
}

.vehicle-similar-image {
    position: relative;

    display: block;

    height: 145px;

    overflow: hidden;

    background: #edf1f4;
}

.vehicle-similar-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.vehicle-similar-image > span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    color: #7e8a99;

    font-size: 9px;
}

.vehicle-card-year,
.vehicle-card-engine {
    position: absolute;

    bottom: 7px;

    min-height: 20px;
    padding: 0 6px;

    border-radius: 4px;

    background: rgba(7,29,58,.78);

    color: #ffffff;

    font-size: 8px;
    line-height: 20px;
}

.vehicle-card-year {
    left: 7px;
}

.vehicle-card-engine {
    right: 7px;
}

.vehicle-similar-body {
    padding: 9px;
}

.vehicle-similar-title {
    display: block;

    min-height: 32px;

    overflow: hidden;

    color: #102238;

    font-size: 10px;
    font-weight: 900;
    line-height: 1.4;

    text-decoration: none;
}

.vehicle-similar-title:hover {
    color: #f36f21;
}

.vehicle-similar-meta {
    margin: 7px 0 0;
}

.vehicle-similar-meta > div {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 7px;

    padding: 5px 0;

    border-bottom: 1px solid #e8ebef;
}

.vehicle-similar-meta dt {
    color: #788596;

    font-size: 8px;
}

.vehicle-similar-meta dd {
    margin: 0;

    color: #15263b;

    font-size: 9px;
    font-weight: 900;

    text-align: right;
}

.vehicle-similar-meta > div:last-child dd {
    color: #f36f21;
}

.vehicle-similar-actions {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr)
        auto;

    gap: 4px;

    margin-top: 7px;
}

.vehicle-card-button,
.vehicle-card-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 30px;

    border-radius: 5px;

    font-size: 8px;
    font-weight: 900;

    text-decoration: none;
}

.vehicle-card-button-outline {
    border: 1px solid #14263c;

    color: #14263c;
}

.vehicle-card-button-primary {
    background: #f36f21;

    color: #ffffff;
}

.vehicle-card-whatsapp {
    width: 30px;

    background: #16a855;

    color: #ffffff;
}


/* ==========================================================
   LIGHTBOX
========================================================== */

body.vehicle-lightbox-open {
    overflow: hidden;
}

.vehicle-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: none;
}

.vehicle-lightbox.is-open {
    display: block;
}

.vehicle-lightbox-backdrop {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    padding: 0;
    border: 0;

    background: rgba(2,10,20,.94);

    cursor: zoom-out;
}

.vehicle-lightbox-dialog {
    position: absolute;
    inset: 4vh 4vw;

    display: flex;
    align-items: center;
    justify-content: center;

    pointer-events: none;
}

.vehicle-lightbox-dialog > img {
    display: block;

    max-width: 88vw;
    max-height: 88vh;

    object-fit: contain;

    pointer-events: auto;
}

.vehicle-lightbox-close,
.vehicle-lightbox-arrow {
    position: absolute;
    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.45);
    border-radius: 50%;

    background: rgba(7,29,58,.82);

    color: #ffffff;

    pointer-events: auto;
    cursor: pointer;
}

.vehicle-lightbox-close {
    top: 0;
    right: 0;

    width: 42px;
    height: 42px;

    font-size: 26px;
}

.vehicle-lightbox-arrow {
    top: 50%;

    width: 46px;
    height: 46px;

    font-size: 32px;

    transform: translateY(-50%);
}

.vehicle-lightbox-prev {
    left: 0;
}

.vehicle-lightbox-next {
    right: 0;
}

.vehicle-lightbox-counter {
    position: absolute;

    bottom: 0;
    left: 50%;

    min-height: 25px;
    padding: 0 9px;

    border-radius: 999px;

    background: rgba(7,29,58,.82);

    color: #ffffff;

    font-size: 9px;
    font-weight: 900;
    line-height: 25px;

    transform: translateX(-50%);
}


/* ==========================================================
   UNAVAILABLE
========================================================== */

.vehicle-unavailable {
    max-width: 720px;

    margin: 45px auto;
    padding: 40px 25px;

    text-align: center;
}

.vehicle-unavailable h1 {
    margin: 0;

    color: #102238;

    font-size: 28px;
}

.vehicle-unavailable p {
    margin: 10px auto 20px;

    color: #718094;

    font-size: 11px;
    line-height: 1.6;
}

/* ==========================================================
   VEHICLE DETAIL V4
   TYPOGRAPHY READABILITY POLISH
   Phase 18.14
========================================================== */

.vehicle-detail-page {
    font-size: 13px;
    line-height: 1.5;
}

.vehicle-breadcrumb {
    font-size: 11px;
}

.vehicle-kicker {
    font-size: 11px;
}

.vehicle-title-row h1 {
    font-size: 27px;
    line-height: 1.22;
}

.vehicle-package {
    font-size: 12px;
}

.vehicle-status {
    font-size: 10px;
}

.vehicle-price-row > div > span,
.vehicle-stock-country span {
    font-size: 10px;
}

.vehicle-stock-country strong {
    font-size: 12px;
}

.vehicle-quick-spec strong {
    font-size: 11px;
}

.vehicle-quick-spec span {
    font-size: 9px;
}

.vehicle-data-section h2,
.vehicle-description-box h2,
.vehicle-markets-box h2 {
    font-size: 17px;
}

.vehicle-spec-cell > span {
    font-size: 10px;
    line-height: 1.35;
}

.vehicle-spec-cell > strong {
    font-size: 11px;
    line-height: 1.35;
}

.vehicle-feature-item span {
    font-size: 10px;
    line-height: 1.35;
}

.vehicle-description-box p {
    font-size: 11px;
    line-height: 1.7;
}

.vehicle-market strong {
    font-size: 10px;
}

.vehicle-inquiry-card h2 {
    font-size: 21px;
}

.vehicle-account-state strong {
    font-size: 10px;
}

.vehicle-account-state span {
    font-size: 9px;
    line-height: 1.5;
}

.vehicle-field label {
    font-size: 9px;
}

.vehicle-field input,
.vehicle-field select,
.vehicle-field textarea {
    font-size: 11px;
}

.vehicle-inquiry-note,
.vehicle-form-status {
    font-size: 9px;
}

.vehicle-button {
    font-size: 10px;
}

.vehicle-support-card span,
.vehicle-support-card small {
    font-size: 9px;
}

.vehicle-section-heading h2 {
    font-size: 20px;
}

.vehicle-view-all {
    font-size: 10px;
}

.vehicle-similar-title {
    font-size: 11px;
}

.vehicle-similar-meta dt {
    font-size: 9px;
}

.vehicle-similar-meta dd {
    font-size: 10px;
}

.vehicle-card-button,
.vehicle-card-whatsapp {
    font-size: 9px;
}