:root {
    --bg: #f6f8fb;
    --surface: #ffffff;
    --surface-soft: #f5f8fc;
    --text: #172033;
    --muted: #5e6d7e;
    --hint: #98a2b3;
    --line: #dfe6ef;
    --primary: #0561e8;
    --primary-dark: #034dbb;
    --accent: #0870f5;
    --accent-soft: #edf5ff;
    --primary-soft: #eef5ff;
    --primary-soft-strong: #dceaff;
    --primary-border: #b9d2f4;
    --primary-mid: #78aefc;
    --success: #14805f;
    --warning: #f59e0b;
    --shadow: 0 16px 40px rgba(20, 31, 50, 0.08);
    --radius: 8px;
}

html {
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

body.vinfast-home,
body.vinfast-home * {
    font-family: "Inter", Arial, sans-serif !important;
}

body.menu-open {
    overflow: hidden;
}

input,
button,
select,
textarea {
    font: inherit;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

/* ========================================================================== */
/* VinFast frontend rebuild - shared header                                  */
/* ========================================================================== */

.vf-container {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.vf-header {
    position: relative;
    z-index: 1000;
    width: 100%;
    background: #fff;
    color: var(--text);
    font-family: "Inter", Arial, sans-serif;
}

.vf-header *,
.vf-header *::before,
.vf-header *::after {
    box-sizing: border-box;
}

.vf-header svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vf-nav-wrap {
    border-bottom: 1px solid #e8edf4;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 3px 14px rgba(4, 23, 50, .04);
}

.vf-header.is-nav-sticky {
    padding-bottom: var(--vf-sticky-nav-height, 84px);
}

.vf-header.is-nav-sticky .vf-nav-wrap {
    position: fixed;
    z-index: 1200;
    top: 0;
    right: 0;
    left: 0;
    border-bottom-color: var(--primary-border);
    box-shadow: 0 10px 32px rgba(4, 29, 66, .14);
    animation: vf-sticky-menu-enter .2s ease both;
}

@keyframes vf-sticky-menu-enter {
    from { opacity: .92; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.vf-nav {
    display: grid;
    grid-template-columns: 185px minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    min-height: 84px;
}

.vf-logo {
    display: inline-flex;
    align-items: center;
    width: 174px;
    min-width: 0;
}

.vf-logo img {
    display: block;
    width: 100%;
    height: 58px;
    object-fit: contain;
    object-position: left center;
}

.vf-desktop-nav {
    min-width: 0;
}

.vf-header .vf-menu {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.vf-header .vf-menu > li {
    position: relative;
    display: flex;
    align-items: stretch;
}

.vf-header .vf-menu > li > a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    min-height: 84px;
    padding: 0 7px;
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.vf-header .vf-menu > li > a::after {
    content: "";
    position: absolute;
    right: 7px;
    bottom: 20px;
    left: 7px;
    height: 2px;
    border-radius: 999px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}

.vf-header .vf-menu > li:hover > a,
.vf-header .vf-menu > li.is-active > a,
.vf-header .vf-menu > li > a.is-active {
    color: var(--primary);
}

.vf-header .vf-menu > li:hover > a::after,
.vf-header .vf-menu > li.is-active > a::after,
.vf-header .vf-menu > li > a.is-active::after,
.vinfast-home .vf-header .vf-menu > li:first-child > a::after {
    transform: scaleX(1);
}

.vf-header .menu-caret {
    width: 7px;
    height: 7px;
    margin-top: -4px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
}

.vf-header .menu-item-icon {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vf-header .menu-dropdown,
.vf-header .menu-flyout,
.vf-header .product-mega-menu {
    position: absolute;
    z-index: 50;
    top: calc(100% - 10px);
    left: 0;
    min-width: 220px;
    padding: 12px;
    border: 1px solid #e1e8f2;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(2, 23, 54, .14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .18s ease;
}

.vf-header .vf-menu li:hover > .menu-dropdown,
.vf-header .vf-menu li:hover > .menu-flyout,
.vf-header .vf-menu li:hover > .product-mega-menu,
.vf-header .vf-menu li:focus-within > .menu-dropdown,
.vf-header .vf-menu li:focus-within > .menu-flyout,
.vf-header .vf-menu li:focus-within > .product-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.vf-header .menu-dropdown__list {
    display: grid;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.vf-header .menu-dropdown__list li {
    position: relative;
}

.vf-header .menu-dropdown--wide {
    width: min(560px, calc(100vw - 32px));
}

.vf-header .menu-dropdown--wide > .menu-dropdown__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 10px;
}

.vf-header .menu-flyout {
    top: -12px;
    left: calc(100% - 2px);
    min-width: 230px;
}

.vf-header .menu-dropdown__list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 7px;
    color: #25324a;
    font-size: 15px;
    text-decoration: none;
}

.vf-header .menu-dropdown__list .menu-item-icon--sub {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    padding: 6px;
    border-radius: 8px;
    background: var(--primary-soft);
    color: var(--primary);
    stroke-width: 1.65;
}

.vf-header .menu-dropdown__list a:hover {
    background: var(--primary-soft);
    color: var(--primary);
}

.vf-nav__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.vf-search {
    position: relative;
}

.vf-search summary {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 50%;
    color: #071a36;
    cursor: pointer;
    list-style: none;
    transition: background .18s ease;
}

.vf-search summary::-webkit-details-marker {
    display: none;
}

.vf-search summary:hover,
.vf-search[open] summary {
    background: var(--primary-soft);
    color: var(--primary);
}

.vf-search summary svg {
    width: 22px;
    height: 22px;
}

.vf-search__form {
    position: absolute;
    z-index: 70;
    top: calc(100% + 18px);
    right: 0;
    display: grid;
    grid-template-columns: minmax(260px, 360px) auto;
    padding: 10px;
    border: 1px solid #e1e8f2;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(2, 23, 54, .16);
}

.vf-search__form input {
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid #d8e0eb;
    border-radius: 7px 0 0 7px;
    outline: 0;
}

.vf-search__form input:focus {
    border-color: var(--primary);
}

.vf-search__form > button,
.mobile-search > button {
    border: 0;
    border-radius: 0 7px 7px 0;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.vf-header .live-search-panel {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    left: 0;
    overflow: hidden;
    border: 1px solid #e1e8f2;
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(2, 23, 54, .14);
}

.vf-header .live-search-item,
.vf-header .live-search-more,
.vf-header .live-search-status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: var(--text);
    font-size: 14px;
    text-decoration: none;
}

.vf-header .live-search-item + .live-search-item {
    border-top: 1px solid #edf1f6;
}

.vf-header .live-search-item img {
    border-radius: 6px;
    object-fit: contain;
}

.vf-header .live-search-item span {
    display: grid;
    gap: 3px;
}

.vf-header .live-search-item b,
.vf-header .live-search-more {
    color: var(--primary);
}

.vf-drive-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid var(--primary);
    border-radius: 5px;
    background: var(--primary);
    box-shadow: 0 6px 16px color-mix(in srgb, var(--primary) 18%, transparent);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transition: .18s ease;
}

.vf-drive-button:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
}

.vf-menu-toggle {
    display: none;
}

.vf-mobile-menu {
    display: none;
}

@media (max-width: 1120px) {
    .vf-nav {
        grid-template-columns: 155px minmax(0, 1fr) auto;
        gap: 10px;
    }

    .vf-logo {
        width: 150px;
    }

    .vf-header .vf-menu > li > a {
        padding-inline: 8px;
        font-size: 14px;
    }

    .vf-header .vf-menu > li > a::after {
        right: 8px;
        left: 8px;
    }

    .vf-drive-button {
        padding-inline: 14px;
    }
}

@media (max-width: 900px) {
    .vf-header.is-nav-sticky {
        padding-bottom: var(--vf-sticky-nav-height, 70px);
    }

    .vf-nav {
        display: flex;
        min-height: 70px;
        justify-content: space-between;
    }

    .vf-logo {
        width: 145px;
    }

    .vf-logo img {
        height: 52px;
    }

    .vf-desktop-nav,
    .vf-search,
    .vf-nav__actions > .vf-drive-button {
        display: none;
    }

    .vf-menu-toggle {
        display: inline-flex;
        width: 42px;
        height: 42px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border: 0;
        border-radius: 7px;
        background: var(--primary-soft);
        cursor: pointer;
    }

    .vf-menu-toggle span {
        width: 20px;
        height: 2px;
        border-radius: 999px;
        background: #061a38;
    }

    .vf-mobile-menu.mobile-menu {
        position: fixed;
        z-index: 3000;
        inset: 0;
        display: block;
        padding: 0;
        background: rgba(2, 13, 31, .56);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: .2s ease;
    }

    body.menu-open .vf-mobile-menu.mobile-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .vf-mobile-menu .mobile-menu__panel {
        width: min(86vw, 360px);
        height: 100%;
        margin-left: auto;
        padding: 18px;
        background: #fff;
        box-shadow: -20px 0 50px rgba(0, 0, 0, .18);
        transform: translateX(102%);
        transition: transform .24s ease;
    }

    body.menu-open .vf-mobile-menu .mobile-menu__panel {
        transform: translateX(0);
    }

    .vf-mobile-menu .mobile-menu__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 14px;
        border-bottom: 1px solid #e8edf4;
    }

    .vf-logo--mobile {
        width: 140px;
    }

    .vf-mobile-menu .mobile-menu-close {
        display: grid;
        width: 38px;
        height: 38px;
        place-items: center;
        border: 0;
        border-radius: 50%;
        background: #edf3fb;
        color: #061a38;
        font-size: 26px;
        cursor: pointer;
    }

    .vf-mobile-menu .mobile-search {
        position: relative;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 62px;
        margin: 18px 0 12px;
    }

    .vf-mobile-menu .mobile-search input {
        min-width: 0;
        min-height: 42px;
        padding: 0 12px;
        border: 1px solid #d8e0eb;
        border-radius: 7px 0 0 7px;
    }

    .vf-mobile-menu .mobile-nav {
        display: grid;
        max-height: calc(100vh - 280px);
        overflow-y: auto;
    }

    .vf-mobile-menu .mobile-nav-item,
    .vf-mobile-menu .mobile-submenu-toggle {
        display: flex;
        width: 100%;
        min-height: 46px;
        padding: 0;
        align-items: center;
        border: 0;
        border-bottom: 1px solid #edf1f6;
        background: transparent;
        color: var(--text);
        font: 600 16px/1.4 "Inter", sans-serif;
        text-align: left;
        text-decoration: none;
        cursor: pointer;
        gap: 11px;
    }

    .vf-mobile-menu .mobile-nav-item--level-0 {
        text-transform: uppercase;
    }

    .vf-mobile-menu .menu-item-icon {
        width: 20px;
        height: 20px;
        flex: 0 0 20px;
        fill: none;
        stroke: var(--primary);
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .vf-mobile-menu .menu-item-icon--sub {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
        padding: 5px;
        border-radius: 8px;
        background: var(--primary-soft);
    }

    .vf-mobile-menu .mobile-submenu-caret {
        width: 8px;
        height: 8px;
        margin-left: auto;
        margin-right: 4px;
        border-right: 1.5px solid #667085;
        border-bottom: 1.5px solid #667085;
        transform: rotate(45deg);
        transition: transform .18s ease;
    }

    .vf-mobile-menu .mobile-submenu-toggle.is-open .mobile-submenu-caret {
        transform: rotate(225deg);
    }

    .vf-mobile-menu .mobile-submenu {
        display: none;
        padding-left: 14px;
    }

    .vf-mobile-menu .mobile-submenu.is-open {
        display: grid;
    }

    .vf-drive-button--mobile {
        width: 100%;
        margin-top: 18px;
    }

    .vf-mobile-hotline {
        display: block;
        padding: 14px 0 0;
        color: var(--primary);
        font-size: 15px;
        font-weight: 700;
        text-align: center;
        text-decoration: none;
    }
}

@media (max-width: 480px) {
    .vf-container {
        width: min(100% - 24px, 1180px);
    }

    .vf-logo {
        width: 132px;
    }
}

/* VinFast homepage - hero and service benefits */
.vinfast-home {
    background: #fff;
    color: var(--text);
}

.vinfast-home main {
    overflow: hidden;
}

.vinfast-home .vf-hero {
    position: relative;
    height: 540px;
    overflow: hidden;
    background: #071b35;
}

.vinfast-home .vf-hero__track,
.vinfast-home .vf-hero__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.vinfast-home .vf-hero__slide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .75s cubic-bezier(.22, 1, .36, 1), visibility .75s;
}

.vinfast-home .vf-hero__slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.vinfast-home .vf-hero__slide > img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 58%;
    transform: scale(1.025);
    transition: transform 7s ease-out;
}

.vinfast-home .vf-hero__slide.is-active > img {
    transform: scale(1);
}

.vinfast-home .vf-hero__slide::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 19, 41, .92) 0%, rgba(3, 25, 52, .77) 32%, rgba(3, 24, 48, .24) 58%, rgba(3, 20, 40, .05) 100%);
}

.vinfast-home .vf-hero__content-wrap {
    position: relative;
    z-index: 2;
    height: 100%;
}

.vinfast-home .vf-hero__content {
    position: absolute;
    top: 50%;
    left: 0;
    width: min(520px, 52%);
    padding: 0;
    color: #fff;
    opacity: 0;
    transform: translateY(calc(-50% + 18px));
    transition: opacity .55s ease .16s, transform .65s cubic-bezier(.22, 1, .36, 1) .16s;
}

.vinfast-home .vf-hero__slide.is-active .vf-hero__content {
    opacity: 1;
    transform: translateY(-50%);
}

@media (prefers-reduced-motion: reduce) {
    .vinfast-home .vf-hero__slide,
    .vinfast-home .vf-hero__slide > img,
    .vinfast-home .vf-hero__content {
        transition: none;
    }
}

.vinfast-home .vf-hero__eyebrow {
    margin: 0 0 14px;
    color: #8bbcff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.vinfast-home .vf-hero__content h1,
.vinfast-home .vf-hero__content h2 {
    max-width: 500px;
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(40px, 4.3vw, 64px);
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: 1.14;
    text-transform: uppercase;
}

.vinfast-home .vf-hero__content > p:not(.vf-hero__eyebrow) {
    max-width: 465px;
    margin: 0;
    color: rgba(255, 255, 255, .9);
    font-size: 16px;
    line-height: 1.75;
}

.vf-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.vf-button {
    display: inline-flex;
    min-width: 155px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .02em;
    text-decoration: none;
    text-transform: uppercase;
    transition: .2s ease;
}

.vf-button--primary {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.vf-button--outline {
    border-color: rgba(255, 255, 255, .8);
    background: rgba(3, 22, 46, .12);
    color: #fff;
    backdrop-filter: blur(4px);
}

.vf-button:hover {
    transform: translateY(-2px);
}

.vinfast-home .vf-hero .home-slider__dots {
    position: absolute;
    z-index: 10;
    bottom: 58px;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 30px;
    margin: 0;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    background: rgba(3, 22, 46, .3);
    backdrop-filter: blur(8px);
    transform: translateX(-50%);
}

.vinfast-home .vf-hero .home-slider__dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 50%;
    background: rgba(255, 255, 255, .32);
    cursor: pointer;
    transition: width .25s ease, border-radius .25s ease, background .25s ease;
}

.vinfast-home .vf-hero .home-slider__dots button.is-active {
    width: 24px;
    border-color: #fff;
    border-radius: 999px;
    background: #fff;
}

.vf-benefits {
    position: relative;
    z-index: 8;
    margin: -34px 0 48px;
}

.vf-benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid #e3e9f1;
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(3, 27, 61, .11);
}

.vf-benefit {
    position: relative;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: center;
    gap: 13px;
    min-height: 108px;
    padding: 20px 22px;
}

.vf-benefit + .vf-benefit::before {
    content: "";
    position: absolute;
    top: 22px;
    bottom: 22px;
    left: 0;
    width: 1px;
    background: #e3e9f1;
}

.vf-benefit__icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    color: var(--primary);
}

.vf-benefit__icon svg {
    width: 48px;
    height: 48px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vf-benefit h2 {
    margin: 0 0 5px;
    color: var(--text);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -.15px;
    line-height: 1.35;
    text-transform: uppercase;
    white-space: nowrap;
}

.vf-benefit p {
    margin: 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.55;
}

@media (max-width: 900px) {
    .vinfast-home .vf-hero {
        height: 530px;
    }

    .vinfast-home .vf-hero__slide > img {
        object-position: 62% center;
    }

    .vinfast-home .vf-hero__slide::before {
        background: linear-gradient(90deg, rgba(2, 19, 41, .9), rgba(2, 19, 41, .35));
    }

    .vinfast-home .vf-hero__content {
        width: min(520px, 70%);
    }

    .vf-benefits__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vf-benefit:nth-child(3)::before {
        display: none;
    }

    .vf-benefit:nth-child(n + 3) {
        border-top: 1px solid #e3e9f1;
    }
}

@media (max-width: 600px) {
    .vinfast-home .vf-hero {
        height: clamp(500px, 135vw, 520px);
    }

    .vinfast-home .vf-hero__slide > img {
        object-position: 66% center;
    }

    .vinfast-home .vf-hero__slide::before {
        background: linear-gradient(0deg, rgba(2, 19, 41, .94) 0%, rgba(2, 19, 41, .62) 58%, rgba(2, 19, 41, .18) 100%);
    }

    .vinfast-home .vf-hero__content {
        top: 50%;
        bottom: auto;
        width: 100%;
        transform: translateY(calc(-50% + 16px));
    }

    .vinfast-home .vf-hero__slide.is-active .vf-hero__content {
        transform: translateY(-50%);
    }

    .vinfast-home .vf-hero__content h1,
    .vinfast-home .vf-hero__content h2 {
        margin-bottom: 12px;
        font-size: 34px;
    }

    .vinfast-home .vf-hero__content > p:not(.vf-hero__eyebrow) {
        font-size: 16px;
        line-height: 1.65;
    }

    .vf-hero__actions {
        gap: 9px;
        margin-top: 18px;
    }

    .vf-button {
        min-width: 0;
        min-height: 44px;
        flex: 1;
        padding-inline: 12px;
        font-size: 14px;
    }

    .vinfast-home .vf-hero .home-slider__dots {
        bottom: 24px;
    }

    .vf-benefits {
        margin-top: 0;
        padding-top: 12px;
    }

    .vf-benefits__grid {
        grid-template-columns: 1fr;
    }

    .vf-benefit {
        min-height: 90px;
        padding: 15px 17px;
    }

    .vf-benefit + .vf-benefit::before {
        display: none;
    }

    .vf-benefit:nth-child(n + 2) {
        border-top: 1px solid #e3e9f1;
    }
}

/* VinFast homepage - models, promotions and finance */
.vinfast-home > main > .home-categories,
.vinfast-home > main > .home-product-banner,
.vinfast-home > main > .home-featured-products,
.vinfast-home > main > .home-category-products {
    display: none;
}

.vf-models,
.vf-offers,
.vf-why {
    padding: 32px 0 54px;
    background: #fff;
}

.vf-section-heading {
    margin-bottom: 24px;
    text-align: center;
}

.vf-section-heading > p {
    margin: 0 0 8px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.vf-section-heading h2 {
    margin: 0;
    color: var(--text);
    font-size: clamp(32px, 3.4vw, 40px);
    font-weight: 700;
    letter-spacing: -.035em;
    line-height: 1.25;
    text-transform: uppercase;
}

.vf-section-heading > span {
    display: block;
    width: 62px;
    height: 3px;
    margin: 12px auto 0;
    border-radius: 999px;
    background: var(--primary);
}

.vf-section-heading--compact {
    margin-bottom: 18px;
}

.vf-section-heading--compact h2 {
    font-size: 32px;
}

.vf-model-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.vf-model-tabs button {
    min-width: 104px;
    height: 38px;
    padding: 0 18px;
    border: 1px solid #e1e7ef;
    border-radius: 5px;
    background: #f3f5f8;
    color: #344054;
    font: 600 14px/1 "Inter", sans-serif;
    text-transform: uppercase;
    cursor: pointer;
}

.vf-model-tabs button.is-active,
.vf-model-tabs button:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.vf-model-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.vf-model-card {
    position: relative;
    overflow: hidden;
    border: 1px solid #dfe5ed;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 35, 65, .05);
    transition: .2s ease;
}

.vf-model-card:hover {
    border-color: var(--primary-border);
    box-shadow: 0 14px 34px rgba(8, 38, 78, .11);
    transform: translateY(-3px);
}

.vf-model-card__image {
    position: relative;
    display: block;
    height: 245px;
    overflow: hidden;
    background: linear-gradient(145deg, #eef4fb, #fff);
}

.vf-model-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform .35s ease;
}

.vf-model-card:hover .vf-model-card__image img {
    transform: scale(1.025);
}

.vf-model-card__body {
    padding: 18px 18px 16px;
}

.vf-model-card h3 {
    margin: 0 0 4px;
    font-size: 26px;
    line-height: 1.2;
}

.vf-model-card h3 a {
    color: var(--text);
    text-decoration: none;
}

.vf-model-card__type {
    margin: 0;
    color: #667085;
    font-size: 15px;
}

.vf-model-card__specs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin: 18px 0;
}

.vf-model-card__specs span {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    align-items: center;
    column-gap: 5px;
    min-width: 0;
}

.vf-model-card__specs svg,
.vf-offer-grid svg,
.vf-why-grid svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: var(--primary);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vf-model-card__specs b {
    overflow: hidden;
    color: #344054;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vf-model-card__specs small {
    grid-column: 2;
    color: #98a2b3;
    font-size: 12px;
    line-height: 1.3;
}

.vf-model-card__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid #edf1f6;
}

.vf-model-card__bottom > div {
    display: grid;
    gap: 3px;
}

.vf-model-card__bottom span {
    color: #667085;
    font-size: 14px;
}

.vf-model-card__bottom strong {
    color: var(--primary);
    font-size: 20px;
    line-height: 1.2;
}

.vf-model-card__bottom > a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 5px;
    background: var(--primary);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.vf-models__all {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.vf-button--blue-outline {
    border-color: var(--primary);
    background: #fff;
    color: var(--primary);
}

.vf-promotion {
    padding: 0 0 38px;
    background: #fff;
}

.vf-promotion__banner {
    position: relative;
    display: block;
    height: 260px;
    overflow: hidden;
    border: 1px solid rgba(12, 80, 166, .18);
    border-radius: 14px;
    background: #03142f;
    box-shadow: 0 18px 38px rgba(2, 28, 67, .16);
}

.vf-promotion__banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(1, 15, 39, .88) 0%, rgba(2, 27, 65, .64) 37%, rgba(2, 25, 72, 0) 68%);
}

.vf-promotion__banner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vf-promotion__banner > span {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 46px;
    display: grid;
    max-width: 460px;
    gap: 7px;
    color: #fff;
    transform: translateY(-50%);
}

.vf-promotion__banner em {
    width: max-content;
    color: var(--primary-mid);
    font-size: 12px;
    font-weight: 800;
    font-style: normal;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.vf-promotion__banner b {
    font-size: 31px;
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
}

.vf-promotion__banner small {
    color: #ccdaec;
    font-size: 15px;
    line-height: 1.45;
}

.vf-promotion__banner i {
    display: inline-flex;
    width: max-content;
    min-height: 40px;
    margin-top: 6px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 6px;
    background: var(--accent);
    box-shadow: 0 8px 20px rgba(8, 117, 245, .28);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    font-style: normal;
    text-transform: uppercase;
    transition: background .2s ease, transform .2s ease;
}

.vf-promotion__banner:hover i {
    background: #fff;
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.vf-offers {
    padding-top: 0;
}

.vf-offer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid #dfe5ed;
    border-radius: 8px;
}

.vf-offer-grid article {
    position: relative;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 98px;
    padding: 17px;
}

.vf-offer-grid article + article {
    border-left: 1px solid #e5eaf1;
}

.vf-offer-grid svg {
    width: 42px;
    height: 42px;
    stroke-width: 1.45;
}

.vf-offer-grid h3 {
    margin: 0 0 5px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: -.15px;
    text-transform: uppercase;
    white-space: nowrap;
}

.vf-offer-grid p {
    margin: 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.5;
}

.site-html-block__image {
    margin: 0 0 16px;
}

.site-html-block__image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.vf-finance {
    padding: 8px 0 64px;
    background: #fff;
}

.vf-finance__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(340px, .86fr) minmax(0, 1.5fr);
    align-items: center;
    min-height: 310px;
    overflow: hidden;
    border-radius: 16px;
    background:
        radial-gradient(circle at 12% 20%, rgba(22, 115, 255, .28), transparent 36%),
        linear-gradient(115deg, #03162f 0%, var(--primary-dark) 58%, var(--primary-dark) 100%);
    box-shadow: 0 24px 55px rgba(6, 36, 78, .2);
    color: #fff;
}

.vf-finance__inner::after {
    position: absolute;
    right: -90px;
    bottom: -150px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    content: "";
}

.vf-finance__visual {
    position: relative;
    z-index: 1;
    display: flex;
    min-width: 0;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding: 30px 12px 24px 24px;
}

.vf-finance__visual::before {
    position: absolute;
    bottom: 48px;
    width: 78%;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .32);
    filter: blur(15px);
    content: "";
}

.vf-finance__visual img {
    position: relative;
    width: 135%;
    max-width: 480px;
    height: 250px;
    object-fit: contain;
}

.vf-finance__content {
    position: relative;
    z-index: 1;
    padding: 36px 44px 36px 24px;
}

.vf-finance__content > p {
    margin: 0 0 9px;
    color: var(--primary-mid);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.vf-finance__content h2 {
    max-width: 720px;
    margin: 0 0 24px;
    color: #fff;
    font-size: clamp(28px, 2.25vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.vf-finance__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 690px;
}

.vf-finance__stats span {
    display: grid;
    gap: 5px;
    min-width: 0;
    padding: 2px 22px;
    border-left: 1px solid rgba(255, 255, 255, .25);
}

.vf-finance__stats span:first-child {
    padding-left: 0;
    border-left: 0;
}

.vf-finance__stats small {
    color: #b8c9df;
    font-size: 13px;
    line-height: 1.35;
}

.vf-finance__stats b {
    color: #fff;
    font-size: 21px;
    line-height: 1.2;
}

.vf-finance__actions {
    display: flex;
    gap: 12px;
    margin-top: 26px;
}

.vf-finance__actions a {
    display: inline-flex;
    min-width: 176px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 7px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .02em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.vf-finance__actions a:first-child {
    border-color: var(--accent);
    background: var(--accent);
}

.vf-finance__actions a:hover {
    border-color: #fff;
    background: #fff;
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.vf-why {
    padding-top: 0;
}

.vf-why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid #e1e7ef;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(15, 35, 65, .06);
}

.vf-why-grid article {
    padding: 28px 22px;
    text-align: center;
}

.vf-why-grid article + article {
    border-left: 1px solid #e8edf3;
}

.vf-why-grid svg {
    width: 52px;
    height: 52px;
    margin-bottom: 13px;
    stroke-width: 1.45;
}

.vf-why-grid h3 {
    margin: 0 0 8px;
    color: var(--text);
    font-size: 18px;
}

.vf-why-grid p {
    margin: 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.65;
}

@media (max-width: 900px) {
    .vf-model-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vf-offer-grid,
    .vf-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vf-offer-grid article:nth-child(3),
    .vf-why-grid article:nth-child(3) {
        border-left: 0;
    }

    .vf-offer-grid article:nth-child(n + 3),
    .vf-why-grid article:nth-child(n + 3) {
        border-top: 1px solid #e5eaf1;
    }

    .vf-finance__inner {
        grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
    }

    .vf-finance__content {
        padding-right: 26px;
    }

    .vf-finance__actions a {
        min-width: 0;
        flex: 1 1 0;
    }
}

@media (max-width: 600px) {
    .vf-models,
    .vf-offers,
    .vf-why {
        padding-block: 26px 38px;
    }

    .vf-section-heading h2 {
        font-size: 30px;
    }

    .vf-model-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 5px;
    }

    .vf-model-tabs button {
        min-width: 88px;
    }

    .vf-model-grid {
        grid-template-columns: 1fr;
    }

    .vf-model-card__image {
        height: 220px;
    }

    .vf-promotion__banner {
        height: 220px;
    }

    .vf-promotion__banner > span {
        right: auto;
        left: 22px;
        width: 170px;
        max-width: 170px;
    }

    .vf-promotion__banner b {
        font-size: 18px;
    }

    .vf-promotion__banner em {
        font-size: 10px;
    }

    .vf-promotion__banner small {
        max-width: 170px;
        font-size: 12px;
    }

    .vf-promotion__banner i {
        min-height: 36px;
        padding-inline: 16px;
        font-size: 12px;
    }

    .vf-promotion__banner img {
        object-position: 70% center;
    }

    .vf-offer-grid,
    .vf-why-grid {
        grid-template-columns: 1fr;
    }

    .vf-offer-grid article + article,
    .vf-why-grid article + article {
        border-top: 1px solid #e5eaf1;
        border-left: 0;
    }

    .vf-finance__inner {
        grid-template-columns: 1fr;
        border-radius: 12px;
    }

    .vf-finance__visual {
        height: 190px;
        padding: 20px 28px 0;
    }

    .vf-finance__visual img {
        width: 112%;
        height: 180px;
    }

    .vf-finance__content {
        padding: 6px 20px 24px;
        text-align: center;
    }

    .vf-finance__content h2 {
        margin-bottom: 20px;
        font-size: 26px;
    }

    .vf-finance__stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .vf-finance__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-top: 22px;
    }

    .vf-finance__stats span {
        padding-inline: 8px;
    }

    .vf-finance__stats span:first-child {
        padding-left: 8px;
    }

    .vf-finance__stats b {
        font-size: 17px;
    }

    .vf-finance__actions a {
        min-height: 46px;
        padding-inline: 10px;
        font-size: 12px;
    }
}

/* VinFast homepage - news and footer */
.vf-news {
    padding: 0 0 56px;
    background: #fff;
}

.vf-news--global {
    padding: 58px 0 60px;
    border-top: 1px solid #e5ebf3;
    background: linear-gradient(180deg, #f7faff 0, #fff 100%);
}

.vf-news__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.vf-news__heading p {
    margin: 0 0 6px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.vf-news__heading h2 {
    margin: 0;
    color: var(--text);
    font-size: 36px;
    text-transform: uppercase;
}

.vf-news__heading > a {
    padding-bottom: 4px;
    border-bottom: 1px solid var(--primary);
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.vf-news__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.vf-news-card {
    overflow: hidden;
    border: 1px solid #e0e6ee;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 7px 22px rgba(11, 35, 65, .05);
}

.vf-news-card__image {
    display: block;
    height: 200px;
    overflow: hidden;
    background: #edf2f8;
}

.vf-news-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.vf-news-card:hover .vf-news-card__image img {
    transform: scale(1.04);
}

.vf-news-card > div {
    padding: 16px 17px 18px;
}

.vf-news-card > div > span {
    display: inline-flex;
    margin-right: 8px;
    padding: 4px 8px;
    border-radius: 3px;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.vf-news-card time {
    color: #98a2b3;
    font-size: 13px;
}

.vf-news-card h3 {
    min-height: 44px;
    margin: 11px 0 8px;
    font-size: 20px;
    line-height: 1.45;
}

.vf-news-card h3 a {
    color: var(--text);
    text-decoration: none;
}

.vf-news-card p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 10px;
    color: #667085;
    font-size: 15px;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.vf-news-card__more {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.vf-news__empty {
    padding: 28px;
    border: 1px dashed #ccd6e4;
    border-radius: 8px;
    color: #667085;
    text-align: center;
}

.vf-footer {
    padding-bottom: calc(82px + max(16px, env(safe-area-inset-bottom)));
    background: #06182d;
    color: #c7d2e1;
    font-family: "Inter", Arial, sans-serif;
    font-size: 13px;
}

.vf-footer *,
.vf-footer *::before,
.vf-footer *::after {
    box-sizing: border-box;
}

.vf-footer__grid {
    display: grid;
    grid-template-columns: 1.28fr .78fr 1.42fr .9fr 1fr;
    gap: 0;
    padding-top: 44px;
    padding-bottom: 38px;
}

.vf-footer__grid > section {
    min-width: 0;
    padding: 0 22px;
    border-left: 1px solid rgba(255, 255, 255, .14);
}

.vf-footer__grid > section:first-child {
    padding-left: 0;
    border-left: 0;
}

.vf-footer__grid > section:last-child {
    padding-right: 0;
}

.vf-footer h2,
.vf-footer__brand > strong {
    display: block;
    margin: 0 0 16px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.vf-footer__brand > img {
    display: block;
    width: 170px;
    height: 58px;
    margin: -10px 0 10px;
    object-fit: contain;
    object-position: left center;
    filter: brightness(0) invert(1);
}

.vf-footer p,
.vf-footer__rich p {
    margin: 0 0 10px;
    color: #c7d2e1;
    font-size: 13px;
    line-height: 1.65;
}

.vf-footer a {
    color: inherit;
    text-decoration: none;
}

.vf-footer a:hover {
    color: var(--primary-mid);
}

.vf-footer__links {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.vf-footer__links a {
    font-size: 13px;
}

.vf-footer__rich--links ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.vf-footer__rich--links li,
.vf-footer__rich--links a {
    font-size: 13px;
}

.vf-footer__contact > p span {
    color: #90a2b9;
}

.vf-footer__contact > p a {
    color: #fff;
    font-weight: 700;
}

.vf-footer__showroom {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    padding: 0 11px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 4px;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.vf-footer__social p {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.vf-footer__social a {
    display: grid;
    min-width: 30px;
    height: 30px;
    place-items: center;
    padding: 0 7px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 4px;
    color: #fff;
    font-size: 13px;
}

.vf-footer__product-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.vf-footer__product-links a {
    display: block;
    min-width: 0;
    overflow: hidden;
    color: #d9e5f3;
    font-size: 13px;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vf-footer__product-links a::before {
    margin-right: 7px;
    color: var(--primary-mid);
    content: "›";
}

.vf-footer__all-products {
    display: inline-flex;
    margin-top: 18px;
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(120, 174, 252, .55);
    color: var(--primary-mid) !important;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.vf-footer__legal {
    display: grid;
    grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(0, 1fr));
    gap: 18px 28px;
    padding-block: 20px;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.vf-footer__legal > div span,
.vf-footer__legal p span {
    color: #90a2b9;
}

.vf-footer__legal > div span,
.vf-footer__legal > div strong {
    display: block;
}

.vf-footer__legal > div strong {
    margin-top: 5px;
    color: #fff;
    font-size: 14px;
}

.vf-footer__legal p {
    margin: 0;
}

.vf-footer__bottom {
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.vf-footer__bottom p {
    margin: 0;
    font-size: 13px;
}

.vf-footer__bottom nav {
    display: flex;
    gap: 0;
}

.vf-footer__bottom nav a {
    padding: 0 14px;
    border-left: 1px solid rgba(255, 255, 255, .2);
    font-size: 13px;
}

@media (max-width: 1000px) {
    .vf-footer__legal {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vf-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 34px;
    }

    .vf-footer__grid > section,
    .vf-footer__grid > section:first-child,
    .vf-footer__grid > section:last-child {
        padding: 0 22px;
        border-left: 1px solid rgba(255, 255, 255, .14);
    }

    .vf-footer__grid > section:nth-child(odd) {
        padding-left: 0;
        border-left: 0;
    }

    .vf-footer__products {
        grid-column: 1 / -1;
        padding: 28px 0 0 !important;
        border-top: 1px solid rgba(255, 255, 255, .14);
        border-left: 0 !important;
    }

    .vf-footer__product-links {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .vf-news__grid {
        grid-template-columns: 1fr;
    }

    .vf-news-card {
        display: grid;
        grid-template-columns: 130px minmax(0, 1fr);
    }

    .vf-news-card__image {
        height: 100%;
        min-height: 170px;
    }

    .vf-news-card h3 {
        min-height: 0;
    }

    .vf-footer__grid {
        grid-template-columns: 1fr;
    }

    .vf-footer__grid > section,
    .vf-footer__grid > section:first-child,
    .vf-footer__grid > section:last-child,
    .vf-footer__grid > section:nth-child(odd) {
        padding: 0 0 26px;
        border: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .vf-footer__grid > section:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .vf-footer__products {
        grid-column: auto;
        padding: 0 !important;
        border-top: 0;
    }

    .vf-footer__product-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vf-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        padding-block: 18px;
    }

    .vf-footer__bottom nav {
        flex-wrap: wrap;
        gap: 10px;
    }

    .vf-footer__bottom nav a {
        padding: 0;
        border: 0;
    }

    .vf-footer__legal {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .vf-footer {
        padding-bottom: calc(76px + max(9px, env(safe-area-inset-bottom)));
    }
}

@media (max-width: 480px) {
    .vf-news__heading h2 {
        font-size: 30px;
    }

    .vf-news-card {
        display: block;
    }

    .vf-news-card__image {
        height: 190px;
    }

    .vf-footer__product-links {
        grid-template-columns: 1fr;
    }
}

/* ========================================================================== */
/* VinFast inner pages - shared foundation and product catalog                */
/* ========================================================================== */

.vf-inner-page {
    background: #f7f9fc;
    color: var(--text);
}

.vf-inner-page .container {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.vf-inner-hero {
    position: relative;
    overflow: hidden;
    padding: 34px 0 48px;
    background:
        radial-gradient(circle at 86% 10%, rgba(21, 112, 239, .32), transparent 34%),
        linear-gradient(120deg, #03162f, var(--primary-dark));
    color: #fff;
}

.vf-inner-hero::after {
    position: absolute;
    right: -100px;
    bottom: -230px;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    content: "";
}

.vf-inner-hero__inner,
.vf-inner-hero__content {
    position: relative;
    z-index: 1;
}

.vf-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 34px;
    color: #b9cae0;
    font-size: 13px;
}

.vf-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.vf-breadcrumb strong {
    color: #fff;
    font-weight: 600;
}

.vf-inner-hero__content {
    max-width: 760px;
}

.vf-inner-hero .eyebrow {
    margin: 0 0 10px;
    color: var(--primary-mid);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.vf-inner-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.14;
}

.vf-inner-hero__content > p:last-child,
.vf-inner-hero .category-summary {
    max-width: 680px;
    margin: 16px 0 0;
    color: #c9d7e9;
    font-size: 16px;
    line-height: 1.7;
}

.vf-inner-hero .category-summary p {
    margin: 0;
}

.vf-inner-section {
    padding: 48px 0 68px;
}

.notice,
.empty-state {
    margin-bottom: 24px;
    padding: 20px 22px;
    border: 1px solid #dfe7f0;
    border-radius: 10px;
    background: #fff;
}

.notice p,
.empty-state p {
    margin: 0;
}

.notice--error {
    border-color: #fecaca;
    background: #fff7f7;
    color: #b42318;
}

.notice--success {
    border-color: #a6f4c5;
    background: #ecfdf3;
    color: #067647;
}

.vf-subcategory-heading,
.catalog-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.vf-subcategory-heading {
    margin-bottom: 18px;
}

.vf-subcategory-heading p,
.catalog-toolbar > div > span {
    margin: 0 0 5px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.vf-subcategory-heading h2,
.catalog-toolbar h2 {
    margin: 0;
    font-size: 28px;
    line-height: 1.2;
}

.vf-subcategory-heading > span {
    color: #667085;
    font-size: 14px;
}

.vf-subcategory-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 34px;
}

.vf-subcategory-card {
    overflow: hidden;
    border: 1px solid #dfe6ef;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(16, 40, 76, .06);
    text-decoration: none;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.vf-subcategory-card:hover {
    border-color: var(--primary-border);
    box-shadow: 0 18px 34px rgba(16, 63, 125, .13);
    transform: translateY(-4px);
}

.vf-subcategory-card__image {
    display: flex;
    height: 150px;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: linear-gradient(145deg, #f8fbff, #eef4fb);
}

.vf-subcategory-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vf-subcategory-card__body {
    display: grid;
    gap: 5px;
    padding: 16px 18px;
}

.vf-subcategory-card__body strong {
    font-size: 17px;
}

.vf-subcategory-card__body small {
    color: #667085;
    font-size: 13px;
}

.vf-subcategory-card__body b {
    color: var(--primary);
    font-size: 16px;
}

.vf-subcategory-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 38px;
}

.vf-subcategory-link {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    border: 1px solid #d8e2ef;
    border-radius: 7px;
    background: #fff;
    color: #183b67;
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
    transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}

.vf-subcategory-link span {
    color: var(--primary);
}

.vf-subcategory-link:hover {
    border-color: var(--primary);
    background: var(--primary-soft);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.vf-subcategory-link.is-active {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
    box-shadow: 0 9px 22px color-mix(in srgb, var(--primary) 20%, transparent);
}

.vf-subcategory-link.is-active span {
    color: #fff;
}

.vf-subcategory-toggle {
    display: none;
}

.vf-subcategory-toggle [data-subcategory-less] {
    display: none;
}

.vf-subcategory-toggle[aria-expanded="true"] [data-subcategory-more] {
    display: none;
}

.vf-subcategory-toggle[aria-expanded="true"] [data-subcategory-less] {
    display: inline;
}

.vf-subcategory-toggle svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform .2s ease;
}

.vf-subcategory-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

#san-pham {
    scroll-margin-top: 96px;
}

.catalog-mobile-filter-button {
    display: none;
}

.catalog-filter-bar {
    position: relative;
    z-index: 20;
    margin-bottom: 26px;
}

.catalog-filter-sheet {
    padding: 22px;
    border: 1px solid #dfe6ef;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(18, 42, 76, .06);
}

.catalog-filter-bar__head,
.catalog-filter-bar__actions,
.catalog-chip-row,
.catalog-filter-mobile-actions,
.catalog-active-filters,
.catalog-toolbar form {
    display: flex;
    align-items: center;
}

.catalog-filter-bar__head {
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.catalog-filter-bar__head span {
    color: #667085;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.catalog-filter-bar__head h2 {
    margin: 3px 0 0;
    font-size: 20px;
}

.catalog-filter-bar__actions {
    gap: 10px;
}

.catalog-clear-link {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.catalog-filter-close {
    display: none;
}

.catalog-chip-row {
    flex-wrap: wrap;
    gap: 10px;
}

.filter-chip-dropdown {
    position: relative;
}

.filter-chip-dropdown summary,
.filter-sale-chip {
    display: flex;
    min-height: 42px;
    align-items: center;
    gap: 7px;
    padding: 0 14px;
    border: 1px solid #d7e0eb;
    border-radius: 7px;
    background: #fff;
    color: #344054;
    font-size: 13px;
    font-weight: 650;
    cursor: pointer;
    list-style: none;
}

.filter-chip-dropdown summary::-webkit-details-marker {
    display: none;
}

.filter-chip-dropdown summary::after {
    width: 7px;
    height: 7px;
    margin-left: 2px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    content: "";
    transform: rotate(45deg) translateY(-2px);
}

.filter-chip-dropdown.is-selected summary,
.filter-sale-chip.is-selected {
    border-color: var(--primary-mid);
    background: var(--primary-soft);
    color: var(--primary-dark);
}

.filter-chip-dropdown summary b {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.filter-chip-dropdown__panel {
    position: absolute;
    z-index: 50;
    top: calc(100% + 8px);
    left: 0;
    display: grid;
    width: max-content;
    min-width: 230px;
    max-width: 420px;
    max-height: 340px;
    gap: 3px;
    overflow: auto;
    padding: 10px;
    border: 1px solid #dbe4ef;
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(12, 34, 66, .18);
}

.filter-chip-dropdown__panel--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.filter-choice {
    display: flex;
    min-height: 38px;
    align-items: center;
    gap: 9px;
    padding: 7px 9px;
    border-radius: 6px;
    color: #344054;
    font-size: 13px;
    cursor: pointer;
}

.filter-choice:hover {
    background: #f2f6fb;
}

.filter-choice input,
.filter-sale-chip input {
    accent-color: var(--primary);
}

.filter-price-panel {
    min-width: 360px;
}

.filter-price-presets {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.filter-price-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px 8px 4px;
    border-top: 1px solid #edf0f4;
}

.filter-price-inputs label,
.catalog-filter-search label {
    display: grid;
    gap: 6px;
    color: #667085;
    font-size: 12px;
    font-weight: 650;
}

.filter-price-inputs input,
.catalog-filter-search input,
.catalog-toolbar select {
    min-height: 42px;
    border: 1px solid #d7e0eb;
    border-radius: 7px;
    outline: 0;
    background: #fff;
    color: var(--text);
}

.filter-price-inputs input,
.catalog-filter-search input {
    padding: 0 12px;
}

.filter-price-inputs input:focus,
.catalog-filter-search input:focus,
.catalog-toolbar select:focus {
    border-color: var(--primary-border);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 10%, transparent);
}

.catalog-filter-search {
    margin-top: 14px;
}

.catalog-filter-search input {
    width: 100%;
}

.filter-sale-chip input {
    width: 15px;
    height: 15px;
    margin: 0;
}

.catalog-filter-mobile-actions {
    display: none;
}

.catalog-active-filters {
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 22px;
}

.catalog-active-filters strong {
    font-size: 13px;
}

.catalog-active-filters span {
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-size: 12px;
}

.catalog-toolbar {
    margin: 0 0 20px;
}

.catalog-toolbar form {
    gap: 9px;
}

.catalog-toolbar select {
    min-width: 190px;
    padding: 0 36px 0 12px;
}

.catalog-toolbar--simple {
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid #e5ebf3;
}

.catalog-sort-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 7px;
}

.catalog-sort-button {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 0 11px;
    border: 1px solid #d5deea;
    border-radius: 6px;
    background: #fff;
    color: #475467;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.catalog-sort-button:hover,
.catalog-sort-button.is-active {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.catalog-sort-button[aria-disabled="true"] {
    cursor: wait;
    opacity: .72;
}

.catalog-ajax-loader {
    display: flex;
    min-height: 74px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0 0 20px;
    padding: 14px 18px;
    border: 1px solid var(--primary-border);
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-soft), #fff 72%);
    color: #344054;
    box-shadow: 0 10px 30px rgba(15, 57, 112, .07);
}

.catalog-ajax-loader[hidden] {
    display: none;
}

.catalog-ajax-loader > span:last-child {
    display: grid;
    gap: 3px;
}

.catalog-ajax-loader strong {
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 800;
}

.catalog-ajax-loader small {
    color: #667085;
    font-size: 12px;
}

.catalog-ajax-loader__spinner {
    position: relative;
    display: inline-flex;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary-soft);
    border-top-color: var(--primary);
    border-right-color: var(--primary);
    border-radius: 50%;
    animation: catalog-loader-spin .8s linear infinite;
}

.catalog-ajax-loader__spinner i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 5px rgba(5, 97, 232, .1);
}

.catalog-results {
    transition: opacity .2s ease, transform .2s ease, filter .2s ease;
}

.catalog-results.is-loading {
    pointer-events: none;
    opacity: .38;
    filter: saturate(.65);
    transform: translateY(4px);
}

.catalog-results.is-entering .product-card {
    animation: catalog-card-enter .34s ease both;
}

.catalog-results.is-entering .product-card:nth-child(2) { animation-delay: 35ms; }
.catalog-results.is-entering .product-card:nth-child(3) { animation-delay: 70ms; }
.catalog-results.is-entering .product-card:nth-child(4) { animation-delay: 105ms; }
.catalog-results.is-entering .product-card:nth-child(5) { animation-delay: 140ms; }
.catalog-results.is-entering .product-card:nth-child(6) { animation-delay: 175ms; }

@keyframes catalog-loader-spin {
    to { transform: rotate(360deg); }
}

@keyframes catalog-card-enter {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .catalog-ajax-loader__spinner,
    .catalog-results.is-entering .product-card {
        animation: none;
    }
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.product-card {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #dfe6ef;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 9px 28px rgba(15, 39, 73, .06);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.product-card:hover {
    border-color: var(--primary-border);
    box-shadow: 0 18px 38px rgba(15, 57, 112, .13);
    transform: translateY(-4px);
}

.product-card__badge {
    position: absolute;
    z-index: 2;
    top: 14px;
    left: 14px;
    padding: 6px 9px;
    border-radius: 5px;
    background: #e5484d;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.product-card__image {
    display: flex;
    height: 235px;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: linear-gradient(145deg, #fbfdff, #eff4fa);
    text-decoration: none;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .3s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.035);
}

.product-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 19px;
}

.product-card__meta {
    margin: 0 0 7px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.product-card h3 {
    margin: 0 0 9px;
    display: -webkit-box;
    height: 4.05em;
    overflow: hidden;
    font-size: 20px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.product-card h3 a {
    text-decoration: none;
}

.product-card__desc {
    margin: 10px 0 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.55;
}

.product-card__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 9px;
    margin-top: auto;
    padding-top: 16px;
}

.product-card__price-label {
    width: 100%;
    margin-bottom: 3px;
    color: #667085;
    font-size: 12px;
    font-weight: 650;
}

.product-card__price strong {
    color: var(--primary-dark);
    font-size: 20px;
}

.product-card__price span {
    color: #98a2b3;
    font-size: 13px;
    text-decoration: line-through;
}

.rating-row {
    color: #f59e0b;
    font-size: 12px;
}

.product-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 16px;
}

.vf-catalog-page--simple .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.vf-catalog-page--simple .product-card--vehicle {
    border: 1px solid #e1e8f1;
    border-radius: 18px;
    box-shadow: 0 14px 38px rgba(16, 43, 77, .08);
}

.vf-catalog-page--simple .product-card--vehicle:hover {
    border-color: var(--primary-border);
    box-shadow: 0 22px 50px rgba(16, 57, 110, .14);
}

.vf-catalog-page--simple .product-card--vehicle .product-card__badge {
    top: 20px;
    left: 20px;
    padding: 7px 11px;
    border: 1px solid var(--primary-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    color: var(--primary-dark);
    font-size: 10px;
    letter-spacing: .06em;
    backdrop-filter: blur(6px);
}

.vf-catalog-page--simple .product-card--vehicle .product-card__image {
    position: relative;
    height: 245px;
    overflow: hidden;
    padding: 28px 30px 18px;
    background:
        radial-gradient(circle at 50% 88%, rgba(24, 108, 226, .12), transparent 38%),
        linear-gradient(145deg, #fbfdff 12%, #f1f6fc 100%);
}

.vf-catalog-page--simple .product-card--vehicle .product-card__image::after {
    position: absolute;
    right: 8%;
    bottom: 25px;
    left: 8%;
    height: 20px;
    border-radius: 50%;
    background: rgba(21, 48, 78, .12);
    filter: blur(14px);
    content: '';
}

.vf-catalog-page--simple .product-card--vehicle .product-card__image img {
    position: relative;
    z-index: 1;
    object-fit: contain;
}

.vf-catalog-page--simple .product-card--vehicle .product-card__body {
    display: flex;
    gap: 0;
    padding: 22px 22px 24px;
    border-top: 1px solid #edf1f6;
}

.vf-catalog-page--simple .product-card--vehicle h3 {
    margin: 0 0 15px;
    height: 3.75em;
    font-size: 22px;
    line-height: 1.25;
}

.vf-catalog-page--simple .product-card--vehicle .product-card__price {
    margin: auto 0 0;
    padding: 18px 0 0;
    border-top: 1px solid #e8eef5;
}

.vf-catalog-page--simple .product-card--vehicle .product-card__price-label {
    margin-bottom: 2px;
    color: #77859a;
    font-size: 11px;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.vf-catalog-page--simple .product-card--vehicle .product-card__price strong {
    color: var(--primary-dark);
    font-size: 22px;
    line-height: 1.2;
}

.vf-catalog-page--simple .product-card--vehicle .product-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 16px 0 0;
}

.vf-catalog-page--simple .product-card--vehicle .product-card__actions .button {
    min-width: 0;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 8px;
    font-size: 12px;
}

.vf-catalog-page--simple .product-card--vehicle .product-card__specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 18px;
}

.vf-catalog-page--simple .product-card--vehicle .product-card__spec {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 9px;
    padding: 10px;
    border: 1px solid #e3ebf5;
    border-radius: 9px;
    background: #f8fbff;
}

.vf-catalog-page--simple .product-card--vehicle .product-card__spec > .icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    fill: none;
    stroke: var(--primary);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.vf-catalog-page--simple .product-card--vehicle .product-card__spec span {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.vf-catalog-page--simple .product-card--vehicle .product-card__spec small {
    overflow: hidden;
    color: #7b8798;
    font-size: 10px;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vf-catalog-page--simple .product-card--vehicle .product-card__spec strong {
    overflow: hidden;
    color: #1d344f;
    font-size: 12px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vf-catalog-page--simple .product-card--vehicle .button--light {
    border-color: #d3deeb;
    color: #24476f;
}

.button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
    cursor: pointer;
}

.button .icon {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.button--primary {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.button--light,
.button--ghost {
    border-color: #ccd8e7;
    background: #fff;
    color: #183b67;
}

.compare-link--card {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #667085;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.compare-link--card .icon {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
}

.category-seo-content {
    margin-top: 42px;
    padding: 28px;
    border: 1px solid #dfe6ef;
    border-radius: 12px;
    background: #fff;
    color: #475467;
}

@media (max-width: 900px) {
    .vf-subcategory-grid,
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vf-catalog-page--simple .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalog-mobile-filter-button {
        display: flex;
        width: 100%;
        min-height: 48px;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-bottom: 18px;
        border: 1px solid var(--primary);
        border-radius: 8px;
        background: #fff;
        color: var(--primary);
        font-weight: 750;
    }

    .catalog-toolbar--simple {
        align-items: flex-start;
        flex-direction: column;
    }

    .catalog-sort-buttons {
        justify-content: flex-start;
    }

    .catalog-mobile-filter-button .icon {
        width: 18px;
        height: 18px;
        fill: none;
        stroke: currentColor;
    }

    .catalog-filter-bar {
        position: fixed;
        z-index: 2000;
        inset: 0;
        display: none;
        margin: 0;
        background: rgba(2, 16, 38, .52);
    }

    body.catalog-filter-open .catalog-filter-bar {
        display: block;
    }

    .catalog-filter-sheet {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        max-height: 88vh;
        overflow-y: auto;
        border-radius: 16px 16px 0 0;
    }

    .catalog-filter-close {
        display: inline-flex;
        width: 36px;
        height: 36px;
        align-items: center;
        justify-content: center;
        border: 0;
        border-radius: 50%;
        background: #edf2f8;
        font-size: 24px;
    }

    .catalog-chip-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .filter-chip-dropdown summary,
    .filter-sale-chip {
        justify-content: space-between;
    }

    .filter-chip-dropdown__panel {
        position: static;
        width: 100%;
        min-width: 0;
        max-width: none;
        margin-top: 7px;
        box-shadow: none;
    }
}

@media (max-width: 760px) {
    .vf-catalog-page--simple .product-card--vehicle .product-card__body {
        display: flex;
        align-items: stretch;
    }

    .vf-catalog-page--simple .product-card--vehicle .product-card__actions {
        margin-top: 16px;
    }

    .vf-catalog-page--simple .product-card--vehicle .product-card__actions .button {
        flex: 1;
    }
}

@media (max-width: 600px) {
    .vf-catalog-page--simple .product-grid {
        grid-template-columns: 1fr;
    }

    .vf-catalog-page--simple .product-card__image {
        height: 230px;
    }

    .vf-catalog-page--simple .product-card__desc {
        min-height: 0;
    }
}

@media (max-width: 600px) {
    .vf-inner-hero {
        padding: 24px 0 36px;
    }

    .vf-breadcrumb {
        margin-bottom: 26px;
    }

    .vf-inner-hero h1 {
        font-size: 34px;
    }

    .vf-inner-section {
        padding: 34px 0 52px;
    }

    .vf-subcategory-heading h2,
    .catalog-toolbar h2 {
        font-size: 23px;
    }

    .vf-subcategory-heading {
        align-items: flex-end;
        margin-bottom: 12px;
    }

    .vf-subcategory-heading > span {
        font-size: 12px;
    }

    .vf-subcategory-list-wrap {
        margin-bottom: 28px;
    }

    .vf-subcategory-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
        margin: 0;
    }

    .vf-subcategory-link {
        min-width: 0;
        min-height: 40px;
        justify-content: space-between;
        gap: 6px;
        padding: 0 10px;
        overflow: hidden;
        font-size: 13px;
        white-space: nowrap;
    }

    .vf-subcategory-link span {
        flex: 0 0 auto;
    }

    .vf-subcategory-list-wrap:not(.is-expanded) .vf-subcategory-link:nth-child(n+5):not(.is-active) {
        display: none;
    }

    .vf-subcategory-toggle {
        width: 100%;
        min-height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        margin-top: 9px;
        border: 1px solid var(--primary-border);
        border-radius: 8px;
        background: var(--primary-soft);
        color: var(--primary);
        font-size: 14px;
        font-weight: 750;
    }

    #san-pham {
        scroll-margin-top: 76px;
    }

    .vf-subcategory-grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 8px;
    }

    .vf-subcategory-card {
        min-width: 235px;
        scroll-snap-align: start;
    }

    .vf-subcategory-card__image {
        height: 132px;
    }

    .catalog-filter-sheet {
        padding: 18px 14px;
    }

    .catalog-chip-row,
    .filter-chip-dropdown__panel--grid {
        grid-template-columns: 1fr;
    }

    .filter-price-panel {
        min-width: 0;
    }

    .catalog-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .catalog-toolbar form,
    .catalog-toolbar select {
        width: 100%;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card__image {
        height: 220px;
    }
}

/* Professional VinFast about page */
.vf-about-page{background:#fff}
.vf-about-hero{position:relative;overflow:hidden;padding:0 0 76px;background:radial-gradient(circle at 82% 14%,rgba(24,118,245,.3),transparent 30%),linear-gradient(125deg,#04162f 0,#082b59 58%,#064db3 130%);color:#fff}
.vf-about-hero:before,.vf-about-hero:after{position:absolute;border:1px solid rgba(255,255,255,.065);border-radius:50%;pointer-events:none;content:""}
.vf-about-hero:before{top:-280px;right:-190px;width:620px;height:620px;box-shadow:0 0 0 90px rgba(255,255,255,.025),0 0 0 180px rgba(255,255,255,.015)}
.vf-about-hero:after{bottom:-280px;left:-220px;width:520px;height:520px}
.vf-about-breadcrumb{position:relative;z-index:1;display:flex;align-items:center;gap:10px;padding:24px 0 44px;color:#8eabcF;font-size:12px}
.vf-about-breadcrumb a{color:#b8cae1;text-decoration:none}.vf-about-breadcrumb a:hover{color:#fff}.vf-about-breadcrumb strong{color:#fff;font-weight:650}
.vf-about-hero__grid{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,1.04fr) minmax(390px,.96fr);gap:clamp(45px,7vw,88px);align-items:center}
.vf-about-hero__content{min-width:0}
.vf-about-hero__eyebrow{display:flex;align-items:center;gap:10px;margin:0 0 13px;color:#82b9ff;font-size:12px;font-weight:800;letter-spacing:.15em;text-transform:uppercase}
.vf-about-hero__eyebrow>span{width:32px;height:2px;background:#4b9aff}
.vf-about-hero h1{max-width:680px;margin:0;color:#fff;font-size:clamp(46px,5.3vw,72px);line-height:1.04;letter-spacing:-.045em}
.vf-about-hero__lead{max-width:670px;margin:22px 0 0;color:#c3d3e7;font-size:17px;line-height:1.75}
.vf-about-hero__actions{margin-top:29px}.vf-about-hero__actions>p{display:flex;flex-wrap:wrap;gap:11px;margin:0}.vf-about-hero__actions a{display:inline-flex;min-height:49px;align-items:center;justify-content:center;padding:0 23px;border:1px solid rgba(255,255,255,.64);border-radius:7px;color:#fff;font-size:12px;font-weight:800;text-decoration:none;text-transform:uppercase;transition:background .2s,border-color .2s,transform .2s}.vf-about-hero__actions a:first-child{border-color:var(--primary);background:var(--primary);box-shadow:0 14px 30px rgba(0,68,178,.34)}.vf-about-hero__actions a:hover{border-color:#fff;background:#fff;color:#0a3266;transform:translateY(-1px)}
.vf-about-hero__trust{display:flex;flex-wrap:wrap;gap:18px;margin-top:25px;color:#aebfd4;font-size:11px}.vf-about-hero__trust span{display:flex;align-items:center;gap:7px}.vf-about-hero__trust svg{width:18px;height:18px;fill:none;stroke:#64a8ff;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.vf-about-hero__panel{position:relative;min-width:0;padding:29px;border:1px solid rgba(255,255,255,.16);border-radius:22px;background:linear-gradient(145deg,rgba(255,255,255,.12),rgba(255,255,255,.055));box-shadow:0 28px 70px rgba(0,12,34,.24);backdrop-filter:blur(12px);overflow:hidden}
.vf-about-hero__panel>header{position:relative;z-index:1;margin-bottom:20px}.vf-about-hero__panel>header span,.vf-about-hero__panel>header strong{display:block}.vf-about-hero__panel>header span{margin-bottom:7px;color:#82b9ff;font-size:10px;font-weight:800;letter-spacing:.15em;text-transform:uppercase}.vf-about-hero__panel>header strong{max-width:360px;color:#fff;font-size:23px;line-height:1.3}
.vf-about-hero__values{position:relative;z-index:1}.vf-about-hero__values ul{display:grid;gap:9px;margin:0;padding:0;list-style:none;counter-reset:about-value}.vf-about-hero__values li,.vf-about-hero__values>div{position:relative;min-height:70px;padding:15px 15px 14px 58px;border:1px solid rgba(255,255,255,.12);border-radius:12px;background:rgba(3,22,48,.32);color:#b9cce3;font-size:12px;line-height:1.55;counter-increment:about-value}.vf-about-hero__values li:before,.vf-about-hero__values>div:before{position:absolute;top:16px;left:15px;display:grid;width:29px;height:29px;place-items:center;border-radius:8px;background:rgba(58,144,255,.18);color:#82b9ff;font-size:10px;font-weight:900;content:"0" counter(about-value)}.vf-about-hero__values strong,.vf-about-hero__values span{display:block}.vf-about-hero__values strong{margin-bottom:2px;color:#fff;font-size:14px}.vf-about-hero__watermark{position:absolute;right:-12px;bottom:-28px;color:rgba(255,255,255,.025);font-size:78px;font-weight:900;letter-spacing:.05em;pointer-events:none}
.vf-about-main{padding:82px 0 88px;background:linear-gradient(180deg,#f5f8fc 0,#fff 100%)}
.vf-about-main__heading{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.3fr);column-gap:46px;align-items:end;margin-bottom:31px}.vf-about-main__heading>p{grid-column:1/-1;margin:0 0 8px;color:var(--primary);font-size:11px;font-weight:800;letter-spacing:.14em;text-transform:uppercase}.vf-about-main__heading h2{margin:0;color:#102039;font-size:clamp(31px,3.5vw,46px);line-height:1.15;letter-spacing:-.035em}.vf-about-main__heading>span{max-width:470px;padding-bottom:4px;color:#718096;font-size:14px;line-height:1.7}
.vf-about-main__grid{display:grid;grid-template-columns:minmax(0,1fr) 350px;gap:24px;align-items:stretch}
.vf-about-article{min-width:0;padding:40px;border:1px solid #e0e7f0;border-radius:20px;background:#fff;box-shadow:0 18px 52px rgba(20,52,91,.08)}
.vf-about-article__image{display:block;width:100%;height:360px;margin:0 0 32px;padding:0;border:0;border-radius:14px;background:#edf3fa;overflow:hidden;cursor:zoom-in}.vf-about-article__image img{display:block;width:100%;height:100%;object-fit:cover;transition:transform .3s}.vf-about-article__image:hover img{transform:scale(1.025)}
.vf-about-article__content{width:100%;max-width:none;color:#526176;font-size:16px;line-height:1.85}.vf-about-article__content>:first-child{margin-top:0}.vf-about-article__content>p:first-child{padding:0 0 24px;border-bottom:1px solid #e4eaf2;color:#263850;font-size:18px;line-height:1.75}.vf-about-article__content h2,.vf-about-article__content h3{color:#13243b;line-height:1.28;letter-spacing:-.02em}.vf-about-article__content h2{margin:32px 0 14px;font-size:28px}.vf-about-article__content h3{margin:27px 0 12px;font-size:22px}.vf-about-article__content p{margin:0 0 18px}.vf-about-article__content ul,.vf-about-article__content ol{margin:0 0 22px;padding-left:21px}.vf-about-article__content li{margin:8px 0}.vf-about-article__content img{max-width:100%;height:auto;border-radius:13px}
.vf-about-article .vf-about-article__content.product-description--detail{width:100%;max-width:none;margin:0;padding:0;border:0;border-radius:0;background:transparent;box-shadow:none}
.vf-about-sidebar{display:grid;gap:17px}.vf-about-card{position:relative;min-width:0;padding:27px;border:1px solid #dde6f1;border-radius:18px;background:#fff;box-shadow:0 14px 40px rgba(20,52,91,.065);overflow:hidden}.vf-about-card__icon{display:grid;width:45px;height:45px;place-items:center;margin-bottom:20px;border-radius:13px;background:var(--primary-soft);color:var(--primary)}.vf-about-card__icon svg{width:24px;height:24px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}.vf-about-card h2{margin:0 0 17px;color:#14243a;font-size:22px}.vf-about-card p{color:#65748a;font-size:13px;line-height:1.65}.vf-about-card ul{display:grid;gap:12px;margin:0;padding:0;list-style:none}.vf-about-card li{position:relative;padding-left:24px;color:#526176;font-size:13px;line-height:1.55}.vf-about-card li:before{position:absolute;top:2px;left:0;display:grid;width:17px;height:17px;place-items:center;border-radius:50%;background:var(--primary-soft);color:var(--primary);font-size:10px;font-weight:900;content:"✓"}
.vf-about-card--contact{border-color:transparent;background:radial-gradient(circle at 88% 10%,rgba(93,165,255,.32),transparent 34%),linear-gradient(145deg,var(--primary),var(--primary-dark));color:#fff;box-shadow:0 18px 44px rgba(5,76,180,.22)}.vf-about-card--contact .vf-about-card__icon{background:rgba(255,255,255,.13);color:#fff}.vf-about-card--contact p{margin:0 0 7px;color:#c9ddf6;font-size:12px}.vf-about-card--contact strong{display:block;margin:0 0 17px;color:#fff;font-size:23px;line-height:1.25}.vf-about-card--contact a{display:flex;min-height:43px;align-items:center;justify-content:center;padding:0 16px;border:1px solid rgba(255,255,255,.72);border-radius:7px;background:#fff;color:var(--primary-dark);font-size:12px;font-weight:800;text-decoration:none;text-transform:uppercase}.vf-about-card--contact a:hover{background:transparent;color:#fff}
.vf-about-card--legal{display:grid;gap:9px}.vf-about-card--legal>p{margin:0;color:var(--primary-dark);font-size:11px;font-weight:800;letter-spacing:.08em;text-transform:uppercase}.vf-about-card--legal>strong{color:#14243a;font-size:17px;line-height:1.4}.vf-about-card--legal>span{color:#65748a;font-size:13px;line-height:1.55}
@media(max-width:900px){.vf-about-hero{padding-bottom:60px}.vf-about-hero__grid{grid-template-columns:1fr}.vf-about-hero__panel{max-width:none}.vf-about-main__heading{grid-template-columns:1fr;gap:12px}.vf-about-main__heading>span{max-width:680px}.vf-about-main__grid{grid-template-columns:1fr}.vf-about-sidebar{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:600px){.vf-about-breadcrumb{padding:18px 0 30px}.vf-about-hero{padding-bottom:42px}.vf-about-hero__grid{gap:30px}.vf-about-hero h1{font-size:42px}.vf-about-hero__lead{margin-top:16px;font-size:15px}.vf-about-hero__actions>p{display:grid}.vf-about-hero__actions a{width:100%}.vf-about-hero__trust{gap:11px 16px}.vf-about-hero__panel{padding:22px 17px;border-radius:16px}.vf-about-hero__panel>header strong{font-size:20px}.vf-about-main{padding:54px 0 62px}.vf-about-main__heading{margin-bottom:24px}.vf-about-main__heading h2{font-size:32px}.vf-about-main__heading>span{font-size:13px}.vf-about-article{padding:25px 18px;border-radius:15px}.vf-about-article__image{height:230px;margin-bottom:24px}.vf-about-article__content{font-size:15px}.vf-about-article__content>p:first-child{font-size:16px}.vf-about-article__content h2{font-size:24px}.vf-about-sidebar{grid-template-columns:1fr}.vf-about-card{padding:23px 20px}}

/* Static policies and contact */

.static-page-hero .section-heading {
    max-width: 920px;
}

.static-page-intro {
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr);
}

.static-page-article {
    width: min(860px, 100%);
}

.policy-page-grid .post-card {
    min-height: 280px;
}

.contact-hero {
    padding: 32px 0 54px;
    background:
        radial-gradient(circle at 82% 20%, rgba(19, 115, 244, .35), transparent 34%),
        linear-gradient(120deg, #03162f, var(--primary-dark));
    color: #fff;
}

.contact-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 48px;
    align-items: end;
}

.contact-hero .vf-breadcrumb {
    margin-bottom: 30px;
}

.contact-hero .eyebrow {
    margin: 0 0 9px;
    color: var(--primary-mid);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.contact-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.14;
}

.contact-hero__content {
    max-width: 650px;
    margin-top: 14px;
    color: #c8d7e9;
    font-size: 16px;
    line-height: 1.7;
}

.contact-hero__content p {
    margin: 0;
}

.contact-hero__hotline {
    display: grid;
    min-width: 260px;
    gap: 5px;
    padding: 21px 24px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    text-decoration: none;
    backdrop-filter: blur(8px);
}

.contact-hero__hotline span {
    color: #a9c4e5;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-hero__hotline strong {
    font-size: 25px;
}

.contact-page {
    padding: 48px 0 72px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
    gap: 24px;
    align-items: start;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-info-card {
    min-width: 0;
    padding: 20px;
    border: 1px solid #dfe6ef;
    border-radius: 11px;
    background: #fff;
    box-shadow: 0 9px 25px rgba(15, 42, 80, .05);
}

.contact-info-icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 9px;
    background: var(--primary-soft);
    color: var(--primary);
}

.contact-info-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.contact-info-card h2 {
    margin: 0 0 7px;
    font-size: 16px;
}

.contact-info-card p {
    margin: 0;
    color: #667085;
    font-size: 13px;
    line-height: 1.6;
    overflow-wrap: anywhere;
}

.contact-info-card a {
    color: var(--primary-dark);
    font-weight: 700;
    text-decoration: none;
}

.contact-info-card--legal {
    grid-column: 1 / -1;
    background: var(--primary-soft);
}

.contact-info-card--legal p + p {
    margin-top: 7px;
}

.contact-info-card__eyebrow {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-form-panel {
    padding: 28px;
    border: 1px solid #dfe6ef;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(15, 42, 80, .08);
}

.contact-form__head h2 {
    margin: 0;
    font-size: 26px;
}

.contact-form__head p {
    margin: 7px 0 22px;
    color: #667085;
}

.contact-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form label {
    display: grid;
    gap: 7px;
    color: #344054;
    font-size: 13px;
    font-weight: 700;
}

.contact-form > label {
    margin-top: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid #d5dfeb;
    border-radius: 7px;
    outline: 0;
    background: #fff;
    color: var(--text);
    font-size: 14px;
    font-weight: 400;
}

.contact-form input,
.contact-form select {
    min-height: 46px;
    padding: 0 13px;
}

.contact-form textarea {
    min-height: 140px;
    padding: 12px 13px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary-border);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 10%, transparent);
}

.contact-submit {
    min-width: 170px;
    margin-top: 18px;
}

.frontend-honeypot {
    position: absolute !important;
    left: -9999px !important;
}

@media (max-width: 900px) {
    .contact-hero__inner,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-hero__hotline {
        width: max-content;
    }
}

@media (max-width: 600px) {
    .static-page-intro,
    .contact-form__grid,
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero {
        padding: 22px 0 38px;
    }

    .contact-hero h1 {
        font-size: 34px;
    }

    .contact-hero__hotline {
        width: 100%;
        min-width: 0;
    }

    .contact-page {
        padding: 34px 0 52px;
    }

    .contact-form-panel {
        padding: 22px 16px;
    }
}

/* VinFast news listing and editorial detail */

.vf-news-hero {
    padding: 34px 0 54px;
    background:
        radial-gradient(circle at 82% 24%, rgba(18, 112, 238, .34), transparent 32%),
        linear-gradient(120deg, #03162f, var(--primary-dark));
    color: #fff;
}

.vf-news-hero .section-heading {
    max-width: 820px;
}

.vf-news-hero .eyebrow {
    margin: 0 0 10px;
    color: var(--primary-mid);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.vf-news-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 4.2vw, 52px);
    line-height: 1.15;
}

.vf-news-hero .section-heading > p:last-child {
    max-width: 700px;
    margin: 16px 0 0;
    color: #c7d6e9;
    font-size: 16px;
    line-height: 1.7;
}

.vf-news-list-section,
.vf-article-section {
    padding: 44px 0 72px;
}

.post-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    align-items: end;
    margin-bottom: 22px;
    padding: 18px;
    border: 1px solid #dfe6ef;
    border-radius: 11px;
    background: #fff;
}

.post-search-form label {
    display: grid;
    gap: 6px;
    color: #475467;
    font-size: 12px;
    font-weight: 700;
}

.post-search-form input {
    width: 100%;
    min-height: 44px;
    padding: 0 13px;
    border: 1px solid #d6e0eb;
    border-radius: 7px;
    outline: 0;
}

.post-search-form input:focus {
    border-color: var(--primary-border);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 10%, transparent);
}

.post-category-nav {
    display: flex;
    gap: 9px;
    overflow-x: auto;
    margin-bottom: 28px;
    padding-bottom: 4px;
}

.post-category-nav a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    gap: 7px;
    padding: 0 15px;
    border: 1px solid #d7e0eb;
    border-radius: 999px;
    background: #fff;
    color: #344054;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.post-category-nav a.is-active {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.post-category-nav span {
    opacity: .7;
}

.post-search-summary {
    margin: -8px 0 24px;
    color: #667085;
    font-size: 14px;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.post-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #dfe6ef;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 42, 80, .06);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.post-card:hover {
    border-color: var(--primary-border);
    box-shadow: 0 18px 38px rgba(15, 57, 112, .13);
    transform: translateY(-4px);
}

.post-card__image {
    display: block;
    height: 215px;
    overflow: hidden;
    background: #edf3f9;
}

.post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.post-card:hover .post-card__image img {
    transform: scale(1.045);
}

.post-card > .eyebrow,
.post-card > h2,
.post-card > p:not(.eyebrow),
.post-card__footer {
    margin-right: 19px;
    margin-left: 19px;
}

.post-card > .eyebrow {
    margin-top: 18px;
    margin-bottom: 7px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.post-card > h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 19px;
    line-height: 1.42;
}

.post-card > h2 a {
    text-decoration: none;
}

.post-card > p:not(.eyebrow) {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.post-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding: 18px 0 19px;
    border-top: 1px solid #edf1f5;
}

.post-card__footer time {
    color: #98a2b3;
    font-size: 12px;
}

.post-card__footer a {
    color: var(--primary);
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
}

.vf-news-hero--detail {
    padding-bottom: 58px;
}

.vf-post-detail-page .vf-news-hero .section-heading {
    max-width: 980px;
}

.vf-post-detail-page .vf-news-hero h1 {
    max-width: 960px;
    font-size: clamp(32px, 3.7vw, 48px);
}

.post-detail-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    gap: 28px;
    align-items: center;
    margin-top: 28px;
}

.post-detail-intro__image {
    display: block;
    height: 390px;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: #102b50;
    cursor: zoom-in;
}

.post-detail-intro__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-detail-intro > p {
    margin: 0;
    padding: 25px;
    border-left: 3px solid var(--primary-mid);
    background: rgba(255, 255, 255, .08);
    color: #d7e3f2;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.75;
}

.product-description--detail {
    width: min(820px, 100%);
    margin-inline: auto;
    padding: 36px 44px;
    border: 1px solid #dfe6ef;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(15, 42, 80, .07);
    color: #344054;
    font-size: 16px;
    line-height: 1.8;
}

.product-description--detail h2,
.product-description--detail h3,
.product-description--detail h4 {
    margin-top: 1.6em;
    color: var(--text);
    line-height: 1.35;
}

.product-description--detail h2 {
    font-size: 28px;
}

.product-description--detail h3 {
    font-size: 22px;
}

.product-description--detail img {
    width: 100%;
    height: auto;
    border-radius: 9px;
}

/* Keep editorial image captions centered in product and article content. */
:is(.product-description--detail, .vf-detail-article, .rich-content) figure {
    margin: 24px auto;
    text-align: center;
}

:is(.product-description--detail, .vf-detail-article, .rich-content) figure > img {
    display: block;
    margin-inline: auto;
}

:is(.product-description--detail, .vf-detail-article, .rich-content) figcaption {
    display: block;
    width: 100%;
    margin: 8px auto 0;
    color: #627084;
    font-size: 14px;
    line-height: 1.5;
    text-align: center !important;
}

.product-description--detail a {
    color: var(--primary);
}

.product-description--detail blockquote {
    margin: 26px 0;
    padding: 18px 22px;
    border-left: 3px solid var(--primary);
    background: #f2f7fe;
}

.post-image-lightbox {
    position: fixed;
    z-index: 4000;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(1, 9, 22, .88);
}

.post-image-lightbox.is-open {
    display: flex;
}

.post-image-lightbox__figure {
    position: relative;
    max-width: 1100px;
    margin: 0;
}

.post-image-lightbox__figure img {
    max-height: 84vh;
}

.post-image-lightbox__close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    font-size: 25px;
}

@media (max-width: 900px) {
    .post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .post-detail-intro {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .vf-news-hero {
        padding: 24px 0 38px;
    }

    .vf-news-hero h1 {
        font-size: 33px;
    }

    .vf-news-list-section,
    .vf-article-section {
        padding: 32px 0 52px;
    }

    .post-search-form {
        grid-template-columns: 1fr;
    }

    .post-grid {
        grid-template-columns: 1fr;
    }

    .post-card__image {
        height: 205px;
    }

    .post-detail-intro__image {
        height: 220px;
    }

    .post-detail-intro > p {
        padding: 18px;
        font-size: 15px;
    }

    .product-description--detail {
        padding: 24px 18px;
    }
}


/* VinFast product detail */
.vf-detail-hero{background:linear-gradient(180deg,#f7faff 0,#fff 70%);padding:0 0 70px;color:var(--text)}.vf-detail-breadcrumb{display:flex;align-items:center;gap:10px;padding:26px 0 30px;color:#66758d;font-size:14px}.vf-detail-breadcrumb a{color:#44536b;text-decoration:none}.vf-detail-breadcrumb a:hover{color:var(--primary)}.vf-detail-breadcrumb strong{color:#17243a;font-weight:600}.vf-detail-hero__grid{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(390px,.85fr);gap:62px;align-items:center}.vf-detail-gallery__stage{position:relative;min-height:470px;display:flex;align-items:center;justify-content:center;border-radius:24px;background:radial-gradient(circle at 50% 55%,#fff 0,#eef4fb 70%);overflow:hidden}.vf-detail-gallery__stage:after{content:"";position:absolute;left:12%;right:12%;bottom:12%;height:22px;background:rgba(15,42,78,.16);filter:blur(18px);border-radius:50%}.vf-detail-gallery__stage>img{position:relative;z-index:1;width:100%;height:100%;max-height:470px;object-fit:contain;padding:28px}.vf-detail-gallery__badge{position:absolute;z-index:2;left:24px;top:24px;padding:8px 13px;border-radius:7px;background:var(--primary);color:#fff;font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.08em}.vf-detail-gallery__thumbs{display:flex;gap:10px;margin-top:14px}.vf-detail-gallery__thumb{width:90px;height:62px;padding:4px;border:1px solid #d9e2ef;border-radius:10px;background:#fff;cursor:pointer}.vf-detail-gallery__thumb.is-active{border-color:var(--primary);box-shadow:0 0 0 1px var(--primary)}.vf-detail-gallery__thumb img{width:100%;height:100%;object-fit:contain}.vf-detail-summary__eyebrow{margin:0 0 12px;color:var(--primary);font-size:13px;font-weight:800;letter-spacing:.14em;text-transform:uppercase}.vf-detail-summary h1{margin:0;color:var(--text);font-size:clamp(40px,4vw,62px);line-height:1.04;letter-spacing:-.04em}.vf-detail-summary__lead{margin:20px 0 24px;color:#536279;font-size:17px;line-height:1.7}.vf-detail-price{display:grid;grid-template-columns:auto 1fr;align-items:end;column-gap:16px;padding:20px 0;border-top:1px solid #dbe4ef;border-bottom:1px solid #dbe4ef}.vf-detail-price>span{grid-column:1/-1;color:#66758d;font-size:14px}.vf-detail-price strong{color:var(--primary);font-size:31px;line-height:1.25}.vf-detail-price del{align-self:center;color:#8a96a8;font-size:15px}.vf-detail-price small{grid-column:1/-1;margin-top:6px;color:#7a879a;font-size:12px}.vf-detail-quick-specs{display:grid;grid-template-columns:1fr 1fr;gap:1px;margin:22px 0;background:#dce5f0;border:1px solid #dce5f0;border-radius:14px;overflow:hidden}.vf-detail-quick-specs article{display:flex;align-items:center;gap:12px;min-height:78px;padding:13px 14px;background:#fff}.vf-detail-quick-specs__icon{display:grid;place-items:center;flex:0 0 38px;width:38px;height:38px;border-radius:50%;background:var(--primary-soft);color:var(--primary)}.vf-detail-quick-specs__icon svg{width:21px;height:21px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}.vf-detail-quick-specs small,.vf-detail-quick-specs strong{display:block}.vf-detail-quick-specs small{margin-bottom:3px;color:#6c788b;font-size:11px;line-height:1.25}.vf-detail-quick-specs strong{color:#142138;font-size:15px}.vf-detail-actions{display:grid;grid-template-columns:1fr 1fr;gap:12px}.vf-detail-actions .vf-button{display:flex;align-items:center;justify-content:center;min-height:52px;border-radius:7px;font-size:14px;font-weight:800;text-transform:uppercase;text-decoration:none}.vf-detail-actions .vf-button--primary{background:var(--primary);color:#fff;box-shadow:0 12px 24px color-mix(in srgb,var(--primary) 20%,transparent)}.vf-detail-actions .vf-button--outline{border:1px solid var(--primary);background:#fff;color:var(--primary)}.vf-detail-assurance{display:flex;flex-wrap:wrap;gap:7px 12px;margin:17px 0 0;color:#617087;font-size:12px}.vf-detail-assurance span{color:var(--primary);font-weight:900}.vf-detail-placeholder{padding:24px 0 70px;background:#fff}.vf-detail-placeholder p{margin:0;padding:24px;border:1px dashed #ccd8e7;border-radius:14px;color:#738197;text-align:center}.vf-detail-gallery__thumb:focus-visible,.vf-detail-actions a:focus-visible{outline:3px solid color-mix(in srgb,var(--primary) 28%,transparent);outline-offset:3px}
@media(max-width:900px){.vf-detail-hero__grid{grid-template-columns:1fr;gap:30px}.vf-detail-gallery__stage{min-height:390px}.vf-detail-summary h1{font-size:45px}}
@media(max-width:600px){.vf-detail-hero{padding-bottom:45px}.vf-detail-breadcrumb{padding:18px 0 20px;white-space:nowrap;overflow:hidden}.vf-detail-hero__grid{gap:24px}.vf-detail-gallery__stage{min-height:270px;border-radius:16px}.vf-detail-gallery__stage>img{max-height:290px;padding:15px}.vf-detail-gallery__badge{left:14px;top:14px}.vf-detail-gallery__thumbs{overflow:auto;padding-bottom:3px}.vf-detail-gallery__thumb{flex:0 0 74px;height:52px}.vf-detail-summary h1{font-size:38px}.vf-detail-summary__lead{margin:14px 0 20px;font-size:16px}.vf-detail-price strong{font-size:26px}.vf-detail-quick-specs{grid-template-columns:1fr}.vf-detail-actions{grid-template-columns:1fr}.vf-detail-assurance{line-height:1.6}}
.vf-detail-nav{position:relative;z-index:20;top:auto;border-top:1px solid #e1e7ef;border-bottom:1px solid #e1e7ef;background:rgba(255,255,255,.96);backdrop-filter:blur(12px)}.vf-detail-nav .vf-container{display:grid;grid-template-columns:1fr auto auto;align-items:center;gap:34px;min-height:68px}.vf-detail-nav strong{font-size:18px}.vf-detail-nav div{display:flex;gap:26px}.vf-detail-nav a{color:#435169;font-size:13px;font-weight:700;text-decoration:none}.vf-detail-nav div a:hover{color:var(--primary)}.vf-detail-nav .vf-detail-nav__cta{padding:11px 18px;border-radius:6px;background:var(--primary);color:#fff;text-transform:uppercase}.vf-detail-overview{padding:100px 0;background:#fff}.vf-detail-section-heading{max-width:780px;margin-bottom:45px}.vf-detail-section-heading>p{margin:0 0 12px;color:var(--accent);font-size:13px;font-weight:800;letter-spacing:.16em;text-transform:uppercase}.vf-detail-section-heading h2{margin:0;color:var(--text);font-size:clamp(38px,4.5vw,64px);line-height:1.08;letter-spacing:-.04em}.vf-detail-section-heading>span{display:block;max-width:620px;margin-top:16px;color:#aab8cb;line-height:1.7}.vf-detail-overview__grid{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(380px,.85fr);gap:68px;align-items:center}.vf-detail-overview__visual{position:relative;min-height:460px;display:flex;align-items:center;justify-content:center;border-radius:24px;background:linear-gradient(135deg,var(--primary-soft),#f8fbff);overflow:hidden}.vf-detail-overview__visual>span{position:absolute;right:-8px;bottom:-22px;color:rgba(0,73,170,.06);font-size:108px;font-weight:900;letter-spacing:.08em}.vf-detail-overview__visual img{position:relative;z-index:1;width:94%;height:420px;object-fit:contain}.vf-detail-richtext{color:#526178;font-size:16px;line-height:1.8}.vf-detail-richtext h2,.vf-detail-richtext h3{color:#101d31;line-height:1.25}.vf-detail-richtext h2{font-size:30px}.vf-detail-richtext h3{font-size:24px}.vf-detail-richtext img{max-width:100%;height:auto;border-radius:16px}.vf-detail-overview__points{margin-top:28px;border-top:1px solid #e0e7f0}.vf-detail-overview__points article{display:grid;grid-template-columns:48px 1fr;gap:18px;padding:17px 0;border-bottom:1px solid #e0e7f0;color:#1c2b42}.vf-detail-overview__points strong{color:var(--accent);font-size:12px}.vf-detail-overview__points span{font-weight:700}.vf-detail-specifications{padding:100px 0;background:#061a35;color:#fff}.vf-detail-section-heading--light h2{color:#fff}.vf-detail-specifications__grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.vf-detail-spec-group{padding:28px 30px;border:1px solid rgba(255,255,255,.14);border-radius:16px;background:rgba(255,255,255,.045)}.vf-detail-spec-group h3{margin:0 0 18px;color:#fff;font-size:20px}.vf-detail-spec-group dl{margin:0}.vf-detail-spec-group dl>div{display:grid;grid-template-columns:1fr auto;gap:22px;padding:13px 0;border-top:1px solid rgba(255,255,255,.1)}.vf-detail-spec-group dt{color:#aebcd0}.vf-detail-spec-group dd{margin:0;color:#fff;font-weight:700;text-align:right}.vf-detail-specifications__note{margin:24px 0 0;color:#8191a9;font-size:12px}.vf-detail-consult{padding:90px 0;background:linear-gradient(125deg,#eaf4ff 0,#fff 56%,#e7f1ff 100%)}.vf-detail-consult__inner{display:grid;grid-template-columns:1fr 390px;gap:90px;align-items:center}.vf-detail-consult__inner>div>p{margin:0 0 12px;color:var(--accent);font-size:13px;font-weight:800;letter-spacing:.14em;text-transform:uppercase}.vf-detail-consult h2{margin:0;color:var(--text);font-size:46px;line-height:1.12;letter-spacing:-.035em}.vf-detail-consult__inner>div>span,.vf-detail-consult__copy{display:block;max-width:610px;margin-top:20px;color:#58677d;line-height:1.75}.vf-detail-consult__card{display:grid;gap:12px;padding:30px;border-radius:18px;background:#fff;box-shadow:0 20px 55px rgba(15,57,112,.13)}.vf-detail-consult__card>span{margin:0!important;color:#6d7a8d!important;font-size:13px}.vf-detail-consult__card>strong{margin-bottom:8px;color:var(--text);font-size:21px;line-height:1.35}.vf-detail-consult__card .vf-button{display:flex;align-items:center;justify-content:center;min-height:50px;border-radius:6px;font-size:13px;font-weight:800;text-decoration:none;text-transform:uppercase}.vf-detail-consult__card .vf-button--primary{background:var(--primary);color:#fff}.vf-detail-consult__card .vf-button--outline{border:1px solid #b9cce4;color:var(--primary-dark)}.vf-detail-policy{padding:70px 0;background:#fff}.vf-detail-policy .vf-detail-richtext{max-width:900px;margin:auto}
@media(max-width:900px){.vf-detail-nav strong,.vf-detail-nav__cta{display:none}.vf-detail-nav .vf-container{display:flex;justify-content:center;overflow:auto}.vf-detail-overview__grid,.vf-detail-consult__inner{grid-template-columns:1fr;gap:40px}.vf-detail-specifications__grid{grid-template-columns:1fr}.vf-detail-consult__inner{grid-template-columns:1fr 340px;gap:30px}.vf-detail-overview__visual{min-height:380px}.vf-detail-overview__visual img{height:350px}}
@media(max-width:600px){.vf-detail-nav{top:auto}.vf-detail-nav .vf-container{justify-content:flex-start;min-height:56px}.vf-detail-nav div{gap:22px;white-space:nowrap;overflow:auto}.vf-detail-overview,.vf-detail-specifications,.vf-detail-consult{padding:65px 0}.vf-detail-section-heading{margin-bottom:30px}.vf-detail-section-heading h2{font-size:38px}.vf-detail-overview__grid{gap:30px}.vf-detail-overview__visual{min-height:280px;border-radius:16px}.vf-detail-overview__visual img{height:260px}.vf-detail-overview__visual>span{font-size:64px}.vf-detail-spec-group{padding:22px 18px}.vf-detail-spec-group dl>div{grid-template-columns:minmax(0,1fr) auto;font-size:14px}.vf-detail-consult__inner{grid-template-columns:1fr}.vf-detail-consult h2{font-size:36px}.vf-detail-consult__card{padding:24px}}

#tong-quan,
#thong-so,
#video-xe,
#anh-thuc-te {
    scroll-margin-top: 104px;
}

@media (max-width: 900px) {
    #tong-quan,
    #thong-so,
    #video-xe,
    #anh-thuc-te {
        scroll-margin-top: 84px;
    }
}
.vf-detail-media{padding:100px 0;background:#fff}.vf-detail-video{position:relative;width:100%;height:600px;padding:0;border:0;border-radius:22px;background:#061a35;overflow:hidden;cursor:pointer}.vf-detail-video>img{width:100%;height:100%;object-fit:contain;opacity:.58;transform:scale(1.02);transition:.4s}.vf-detail-video:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(2,18,41,.72),rgba(2,18,41,.08))}.vf-detail-video:hover>img{transform:scale(1.05)}.vf-detail-video__play{position:absolute;z-index:2;left:50%;top:50%;display:grid;place-items:center;width:88px;height:88px;border-radius:50%;background:#fff;color:var(--accent);transform:translate(-50%,-50%);box-shadow:0 16px 40px rgba(0,0,0,.25)}.vf-detail-video__play svg{width:34px;height:34px;fill:currentColor}.vf-detail-video__label{position:absolute;z-index:2;left:46px;bottom:42px;color:#fff;text-align:left}.vf-detail-video__label small,.vf-detail-video__label strong{display:block}.vf-detail-video__label small{margin-bottom:7px;color:var(--primary-mid);font-weight:800;text-transform:uppercase;letter-spacing:.12em}.vf-detail-video__label strong{font-size:24px}.vf-detail-media iframe{display:block;width:100%;height:600px;border:0;border-radius:22px;background:#061a35}.vf-detail-actual{padding:100px 0;background:#f2f7fc}.vf-detail-actual__grid{display:grid;grid-template-columns:1fr 1.1fr;gap:80px;align-items:center}.vf-detail-actual__grid>div>p{margin:0 0 12px;color:var(--accent);font-size:13px;font-weight:800;letter-spacing:.15em;text-transform:uppercase}.vf-detail-actual__grid h2{margin:0;color:var(--text);font-size:50px;line-height:1.08;letter-spacing:-.04em}.vf-detail-actual__grid>div>span{display:block;margin-top:20px;color:#5f6e84;line-height:1.75}.vf-detail-actual__trigger{position:relative;display:grid;place-items:center;height:350px;padding:0;border:0;border-radius:20px;background:#071b37;overflow:hidden;cursor:pointer}.vf-detail-actual__trigger>img{display:block;width:auto;height:auto;max-width:100%;max-height:100%;object-fit:contain;opacity:.48;filter:saturate(.65);transition:opacity .4s}.vf-detail-actual__trigger:hover>img{opacity:.58}.vf-detail-actual__trigger>span{position:absolute;inset:auto 24px 22px;display:block;padding:18px 20px;border:1px solid rgba(255,255,255,.24);border-radius:12px;background:rgba(3,19,43,.76);color:#fff;text-align:left;backdrop-filter:blur(8px)}.vf-detail-actual__trigger strong,.vf-detail-actual__trigger small{display:block}.vf-detail-actual__trigger strong{font-size:18px}.vf-detail-actual__trigger small{margin-top:5px;color:#b9c8dc}.vf-actual-modal[hidden]{display:none}.vf-actual-modal{position:fixed;z-index:1000;inset:0;padding:30px}.vf-actual-modal__backdrop{position:absolute;inset:0;background:rgba(0,10,25,.88)}.vf-actual-modal__panel{position:relative;z-index:1;width:min(1180px,100%);max-height:calc(100vh - 60px);margin:auto;padding:58px 22px 22px;border-radius:18px;background:#0c1e37;overflow:auto}.vf-actual-modal__close{position:absolute;right:18px;top:12px;width:38px;height:38px;border:1px solid rgba(255,255,255,.25);border-radius:50%;background:transparent;color:#fff;font-size:26px;cursor:pointer}.vf-actual-modal__status{padding:60px;color:#fff;text-align:center}.vf-actual-modal__grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.vf-actual-modal__grid figure{margin:0;border-radius:12px;background:#fff;overflow:hidden}.vf-actual-modal__grid img{display:block;width:100%;height:auto}.vf-modal-open{overflow:hidden}
@media(max-width:700px){.vf-detail-media,.vf-detail-actual{padding:65px 0}.vf-detail-video,.vf-detail-media iframe{height:360px;border-radius:16px}.vf-detail-video__play{width:66px;height:66px}.vf-detail-video__label{left:20px;bottom:18px}.vf-detail-video__label strong{font-size:17px}.vf-detail-actual__grid{grid-template-columns:1fr;gap:30px}.vf-detail-actual__grid h2{font-size:38px}.vf-detail-actual__trigger{height:260px}.vf-actual-modal{padding:10px}.vf-actual-modal__panel{max-height:calc(100vh - 20px);padding:54px 10px 10px}.vf-actual-modal__grid{grid-template-columns:1fr}}
.vf-detail-media video{display:block;width:100%;height:600px;border:0;border-radius:22px;background:#061a35;object-fit:contain}
@media(max-width:700px){.vf-detail-media video{height:360px;border-radius:16px}}
.vf-detail-model-list{margin-top:18px;padding-top:16px;border-top:1px solid #dbe4ef}.vf-detail-model-list__title{display:block;margin-bottom:9px;color:#66758d;font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.09em}.vf-detail-model-list>div{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:7px}.vf-detail-model-list a{display:flex;align-items:center;justify-content:space-between;gap:8px;min-height:43px;padding:8px 10px;border:1px solid #dce5f0;border-radius:8px;background:#fff;color:#15233a;text-decoration:none}.vf-detail-model-list a:hover,.vf-detail-model-list a.is-current{border-color:var(--accent);background:var(--primary-soft)}.vf-detail-model-list strong{font-size:13px}.vf-detail-model-list small{color:var(--accent);font-size:11px;font-weight:700;white-space:nowrap}.vf-detail-media-row{padding:82px 0;background:#f3f7fc}.vf-detail-media-row__grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px}.vf-detail-media-card{padding:18px;border:1px solid #dce5f0;border-radius:20px;background:#fff;box-shadow:0 15px 42px rgba(17,55,105,.08)}.vf-detail-media-card header{display:flex;align-items:end;justify-content:space-between;gap:16px;padding:2px 2px 15px}.vf-detail-media-card header span{color:var(--accent);font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.12em}.vf-detail-media-card header strong{color:#142138;font-size:17px}.vf-detail-media-card .vf-detail-video,.vf-detail-media-card .vf-detail-actual__trigger{height:330px;border-radius:14px}.vf-detail-media-card .vf-detail-video__play{width:68px;height:68px}.vf-detail-media-card .vf-detail-video__label{left:24px;bottom:22px}.vf-detail-media-card iframe,.vf-detail-media-card video{display:block;width:100%;height:330px;border:0;border-radius:14px;background:#061a35;object-fit:contain}.vf-detail-overview{padding:95px 0}.vf-detail-overview .vf-detail-section-heading{max-width:920px;margin:0 auto 42px}.vf-detail-article{max-width:920px;margin:0 auto;color:#45546a;font-size:17px;line-height:1.85}.vf-detail-article h2,.vf-detail-article h3,.vf-detail-article h4{margin:1.6em 0 .65em;color:var(--text);line-height:1.25}.vf-detail-article h2{font-size:34px}.vf-detail-article h3{font-size:27px}.vf-detail-article h4{font-size:21px}.vf-detail-article p{margin:0 0 1.35em}.vf-detail-article ul,.vf-detail-article ol{margin:0 0 1.5em;padding-left:24px}.vf-detail-article img{display:block;max-width:100%;height:auto;margin:34px auto;border-radius:18px}.vf-detail-article a{color:var(--accent);font-weight:700}.vf-detail-article blockquote{margin:30px 0;padding:20px 24px;border-left:4px solid var(--accent);background:var(--primary-soft);color:#263650}
@media(max-width:800px){.vf-detail-media-row__grid{grid-template-columns:1fr}.vf-detail-model-list>div{grid-template-columns:1fr}.vf-detail-model-list{margin-bottom:4px}.vf-detail-media-card .vf-detail-video,.vf-detail-media-card .vf-detail-actual__trigger,.vf-detail-media-card iframe,.vf-detail-media-card video{height:300px}}
@media(max-width:600px){.vf-detail-media-row{padding:55px 0}.vf-detail-media-card{padding:12px;border-radius:16px}.vf-detail-media-card header{display:block}.vf-detail-media-card header span,.vf-detail-media-card header strong{display:block}.vf-detail-media-card header strong{margin-top:5px}.vf-detail-media-card .vf-detail-video,.vf-detail-media-card .vf-detail-actual__trigger,.vf-detail-media-card iframe,.vf-detail-media-card video{height:240px}.vf-detail-overview{padding:65px 0}.vf-detail-article{font-size:16px;line-height:1.75}.vf-detail-article h2{font-size:29px}.vf-detail-article h3{font-size:24px}}
.vf-detail-summary,.vf-detail-model-list,.vf-detail-actions{min-width:0;width:100%}.vf-detail-model-list>div,.vf-detail-model-list a{min-width:0}.vf-detail-model-list strong{min-width:0;overflow-wrap:anywhere}
.vf-detail-model-list a>img{flex:0 0 56px;width:56px;height:40px;border-radius:6px;background:#f5f8fc;object-fit:contain}.vf-detail-model-list a>span{display:flex;min-width:0;flex:1;align-items:center;justify-content:space-between;gap:8px}.vf-detail-model-list a>span strong{display:block}.vf-detail-model-list a>span small{display:block;margin-left:auto}
@media(max-width:900px){.vf-detail-hero__grid{grid-template-columns:minmax(0,1fr)!important}.vf-detail-hero__grid>.vf-detail-summary{min-width:0!important;width:auto!important;max-width:100%;overflow:hidden}}

/* Product-detail actions and recommendation sections. */
.vf-detail-actions .vf-button,.vf-detail-consult__card .vf-button,.vf-detail-nav__cta{gap:9px}
.vf-detail-actions .icon,.vf-detail-consult__card .icon,.vf-detail-nav__cta .icon{width:18px;height:18px;flex:0 0 18px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.vf-detail-nav .vf-detail-nav__cta{display:inline-flex;align-items:center;justify-content:center}
.vf-detail-products-section{padding:90px 0;background:#f3f7fc}
.vf-detail-products-section--viewed{border-top:1px solid #e2e9f2;background:#fff}
.vf-detail-products-section__heading{display:flex;align-items:end;justify-content:space-between;gap:32px;margin-bottom:34px}
.vf-detail-products-section__heading p{margin:0 0 9px;color:var(--accent);font-size:12px;font-weight:800;letter-spacing:.14em;text-transform:uppercase}
.vf-detail-products-section__heading h2{margin:0;color:var(--text);font-size:clamp(32px,3.4vw,46px);line-height:1.12;letter-spacing:-.035em}
.vf-detail-products-section__heading>a{display:inline-flex;align-items:center;gap:8px;padding-bottom:5px;color:var(--primary);font-size:13px;font-weight:800;text-decoration:none;white-space:nowrap}
.vf-detail-products-section__heading>a span{font-size:20px;transition:transform .2s}
.vf-detail-products-section__heading>a:hover span{transform:translateX(4px)}
.vf-detail-products-grid{gap:22px}
.vf-detail-products-section .product-card--vehicle{border:1px solid #dfe7f1;border-radius:18px;box-shadow:0 14px 40px rgba(16,43,77,.08)}
.vf-detail-products-section .product-card--vehicle:hover{border-color:#b7d1f3;box-shadow:0 22px 52px rgba(16,57,110,.14)}
.vf-detail-products-section .product-card--vehicle .product-card__badge{top:18px;left:18px;padding:7px 11px;border:1px solid var(--primary-border);border-radius:999px;background:rgba(255,255,255,.92);color:var(--primary-dark);font-size:10px;letter-spacing:.06em;backdrop-filter:blur(6px)}
.vf-detail-products-section .product-card--vehicle .product-card__image{position:relative;height:235px;overflow:hidden;padding:26px 28px 18px;background:radial-gradient(circle at 50% 88%,rgba(24,108,226,.12),transparent 38%),linear-gradient(145deg,#fbfdff 12%,#eef4fb 100%)}
.vf-detail-products-section .product-card--vehicle .product-card__image:after{position:absolute;right:9%;bottom:24px;left:9%;height:18px;border-radius:50%;background:rgba(21,48,78,.12);filter:blur(13px);content:""}
.vf-detail-products-section .product-card--vehicle .product-card__image img{position:relative;z-index:1;object-fit:contain}
.vf-detail-products-section .product-card--vehicle .product-card__body{gap:0;padding:22px 22px 24px;border-top:1px solid #edf1f6}
.vf-detail-products-section .product-card--vehicle h3{height:3.75em;margin:0 0 15px;font-size:22px;line-height:1.25}
.vf-detail-products-section .product-card--vehicle .product-card__specs{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;margin-bottom:18px}
.vf-detail-products-section .product-card--vehicle .product-card__spec{display:flex;min-width:0;align-items:center;gap:9px;padding:9px;border:1px solid #e3ebf5;border-radius:9px;background:#f8fbff}
.vf-detail-products-section .product-card--vehicle .product-card__spec>.icon{width:19px;height:19px;flex:0 0 19px;fill:none;stroke:var(--primary);stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.vf-detail-products-section .product-card--vehicle .product-card__spec span{display:flex;min-width:0;flex-direction:column}
.vf-detail-products-section .product-card--vehicle .product-card__spec small,.vf-detail-products-section .product-card--vehicle .product-card__spec strong{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.vf-detail-products-section .product-card--vehicle .product-card__spec small{color:#7b8798;font-size:10px}.vf-detail-products-section .product-card--vehicle .product-card__spec strong{color:#1d344f;font-size:12px}
.vf-detail-products-section .product-card--vehicle .product-card__price{margin:auto 0 0;padding-top:17px;border-top:1px solid #e8eef5}
.vf-detail-products-section .product-card--vehicle .product-card__price-label{font-size:11px;text-transform:uppercase}.vf-detail-products-section .product-card--vehicle .product-card__price strong{font-size:22px}
.vf-detail-products-section .product-card--vehicle .product-card__actions{grid-template-columns:1fr 1fr;margin-top:16px}
.vf-detail-products-section .product-card--vehicle .button{min-width:0;min-height:43px;padding:0 12px;font-size:12px}
@media(max-width:700px){.vf-detail-products-section{padding:62px 0}.vf-detail-products-section__heading{display:block;margin-bottom:26px}.vf-detail-products-section__heading>a{margin-top:16px}.vf-detail-products-section .product-card--vehicle .product-card__image{height:220px}.vf-detail-products-section .product-card--vehicle .product-card__actions{grid-template-columns:1fr 1fr}}

/* Compact model links on product detail: text and price only, stable at every width. */
.vf-detail-model-list>div{grid-template-columns:repeat(3,minmax(0,1fr));gap:7px}
.vf-detail-model-list a{display:flex;min-width:0;min-height:0;align-items:flex-start;justify-content:center;flex-direction:column;gap:4px;padding:9px 10px}
.vf-detail-model-list a>strong{display:-webkit-box;min-width:0;overflow:hidden;font-size:13px;line-height:1.3;overflow-wrap:anywhere;-webkit-box-orient:vertical;-webkit-line-clamp:2}
.vf-detail-model-list a>small{display:block;max-width:100%;margin:0;overflow:hidden;font-size:11px;line-height:1.3;text-overflow:ellipsis;white-space:nowrap}
@media(max-width:800px){.vf-detail-model-list>div{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:420px){.vf-detail-model-list>div{grid-template-columns:repeat(2,minmax(0,1fr))}}

/* Full-width product overview inside the 1180px site container. */
.vf-detail-overview .vf-detail-section-heading,.vf-detail-overview .vf-detail-article{width:100%;max-width:none;margin-right:0;margin-left:0}

/* Shared quote and test-drive lead popup. */
.vf-lead-modal[hidden],.vf-lead-modal [hidden]{display:none!important}
.vf-lead-modal{position:fixed;z-index:1600;inset:0;display:grid;place-items:center;padding:20px;color:var(--text)}
.vf-lead-modal__backdrop{position:absolute;inset:0;background:rgba(2,14,33,.76);backdrop-filter:blur(8px);cursor:pointer}
.vf-lead-modal__dialog{position:relative;z-index:1;display:grid;grid-template-columns:minmax(285px,.74fr) minmax(0,1.35fr);width:min(920px,100%);max-height:calc(100vh - 40px);border:1px solid rgba(255,255,255,.22);border-radius:24px;background:#fff;box-shadow:0 35px 100px rgba(0,18,48,.38);overflow:hidden;animation:vfLeadModalIn .22s ease-out}
@keyframes vfLeadModalIn{from{opacity:0;transform:translateY(18px) scale(.98)}to{opacity:1;transform:translateY(0) scale(1)}}
.vf-lead-modal__close{position:absolute;z-index:3;top:18px;right:18px;display:grid;place-items:center;width:38px;height:38px;padding:0;border:1px solid #dce5f1;border-radius:50%;background:#fff;color:#43546d;box-shadow:0 6px 18px rgba(20,47,80,.08);cursor:pointer;transition:.2s}
.vf-lead-modal__close:hover{border-color:#b9cae0;color:var(--primary);transform:rotate(90deg)}
.vf-lead-modal__close svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round}
.vf-lead-modal__visual{position:relative;display:flex;min-width:0;flex-direction:column;padding:46px 34px 34px;background:radial-gradient(circle at 8% 5%,rgba(47,143,255,.34),transparent 34%),linear-gradient(150deg,var(--primary) 0,var(--primary-dark) 50%,#061e4a 100%);color:#fff;overflow:hidden}
.vf-lead-modal__visual:before,.vf-lead-modal__visual:after{position:absolute;border:1px solid rgba(255,255,255,.09);border-radius:50%;content:""}
.vf-lead-modal__visual:before{right:-92px;bottom:38px;width:250px;height:250px}.vf-lead-modal__visual:after{right:-48px;bottom:82px;width:160px;height:160px}
.vf-lead-modal__eyebrow{position:relative;z-index:1;color:var(--primary-mid);font-size:11px;font-weight:800;letter-spacing:.16em;text-transform:uppercase}
.vf-lead-modal__mark{position:relative;z-index:1;display:grid;place-items:center;width:66px;height:66px;margin:30px 0 22px;border:1px solid rgba(255,255,255,.2);border-radius:18px;background:rgba(255,255,255,.11);box-shadow:inset 0 1px 0 rgba(255,255,255,.16);backdrop-filter:blur(5px)}
.vf-lead-modal__mark svg{width:40px;height:40px;fill:none;stroke:#fff;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.vf-lead-modal__visual h2{position:relative;z-index:1;margin:0;color:#fff;font-size:28px;line-height:1.2;letter-spacing:-.025em}
.vf-lead-modal__visual>p{position:relative;z-index:1;margin:14px 0 24px;color:#bbd2ef;font-size:13px;line-height:1.65}
.vf-lead-modal__visual ul{position:relative;z-index:1;display:grid;gap:12px;margin:0 0 30px;padding:0;list-style:none}
.vf-lead-modal__visual li{display:flex;align-items:flex-start;gap:9px;color:#e1edfb;font-size:12px;line-height:1.45}
.vf-lead-modal__visual li span{display:grid;place-items:center;flex:0 0 18px;width:18px;height:18px;border-radius:50%;background:rgba(83,169,255,.22);color:var(--primary-mid);font-size:11px;font-weight:900}
.vf-lead-modal__hotline{position:relative;z-index:1;display:flex;align-items:center;gap:11px;margin-top:auto;padding:13px 14px;border:1px solid rgba(255,255,255,.16);border-radius:12px;background:rgba(255,255,255,.08);color:#fff;text-decoration:none;transition:.2s}
.vf-lead-modal__hotline:hover{background:rgba(255,255,255,.13)}
.vf-lead-modal__hotline>svg{width:22px;height:22px;fill:none;stroke:var(--primary-mid);stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.vf-lead-modal__hotline small,.vf-lead-modal__hotline strong{display:block}.vf-lead-modal__hotline small{margin-bottom:2px;color:#a9c3e2;font-size:10px}.vf-lead-modal__hotline strong{font-size:16px}
.vf-lead-modal__content{min-width:0;padding:42px 42px 36px;overflow:auto}
.vf-lead-modal__header{padding-right:35px}.vf-lead-modal__header>span{display:block;margin-bottom:8px;color:var(--primary);font-size:11px;font-weight:800;letter-spacing:.13em;text-transform:uppercase}
.vf-lead-modal__header h2{margin:0;color:var(--text);font-size:30px;line-height:1.2;letter-spacing:-.025em}.vf-lead-modal__header p{margin:10px 0 24px;color:#66758a;font-size:13px;line-height:1.6}
.vf-lead-modal__alert{margin:-8px 0 18px;padding:11px 13px;border:1px solid #ffd1d1;border-radius:9px;background:#fff4f4;color:#b42323;font-size:12px;line-height:1.5}
.vf-lead-form__grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px 14px}
.vf-lead-field{display:block;min-width:0}.vf-lead-field>span:first-child{display:block;margin-bottom:7px;color:#33445c;font-size:12px;font-weight:700}.vf-lead-field em{color:#e23333;font-style:normal}
.vf-lead-field__control{display:flex!important;align-items:center;gap:9px;min-width:0;height:47px;margin:0!important;padding:0 13px;border:1px solid #dce4ef;border-radius:9px;background:#f8fafd;transition:.2s}
.vf-lead-field__control:focus-within{border-color:var(--primary);background:#fff;box-shadow:0 0 0 3px color-mix(in srgb,var(--primary) 9%,transparent)}
.vf-lead-field__control svg{width:18px;height:18px;flex:0 0 18px;fill:none;stroke:#6e84a1;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.vf-lead-field__control:focus-within svg{stroke:var(--primary)}
.vf-lead-field input,.vf-lead-field textarea{width:100%;min-width:0;border:0;outline:0;background:transparent;color:#14243a;font:inherit;font-size:13px}
.vf-lead-field input{height:100%;padding:0}.vf-lead-field input::placeholder,.vf-lead-field textarea::placeholder{color:#9aa7b8}
.vf-lead-field--wide{margin-top:16px}.vf-lead-field textarea{display:block;height:76px;padding:12px 13px;border:1px solid #dce4ef;border-radius:9px;background:#f8fafd;line-height:1.5;resize:vertical;transition:.2s}
.vf-lead-field textarea:focus{border-color:var(--primary);background:#fff;box-shadow:0 0 0 3px color-mix(in srgb,var(--primary) 9%,transparent)}
.vf-lead-form__privacy{margin:13px 0 16px;color:#8290a3;font-size:10px;line-height:1.5}
.vf-lead-form__submit{display:flex;align-items:center;justify-content:center;gap:10px;width:100%;min-height:49px;padding:0 22px;border:0;border-radius:9px;background:linear-gradient(100deg,var(--primary),var(--primary-dark));color:#fff;font-size:13px;font-weight:800;box-shadow:0 12px 24px color-mix(in srgb,var(--primary) 22%,transparent);cursor:pointer;transition:.2s}
.vf-lead-form__submit:hover{transform:translateY(-1px);box-shadow:0 15px 28px color-mix(in srgb,var(--primary) 30%,transparent)}.vf-lead-form__submit:disabled{cursor:wait;opacity:.72;transform:none}
.vf-lead-form__submit svg{width:19px;height:19px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}.vf-lead-form__submit.is-loading svg{animation:vfLeadSpin .8s linear infinite}
@keyframes vfLeadSpin{to{transform:rotate(360deg)}}
.vf-lead-form__trap{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;opacity:0!important;pointer-events:none!important}
.vf-lead-success{padding:48px 8px 32px;text-align:center}.vf-lead-success__icon{display:grid;place-items:center;width:70px;height:70px;margin:0 auto 20px;border-radius:50%;background:#eaf8f0;color:#159150}.vf-lead-success__icon svg{width:34px;height:34px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.vf-lead-success h3{margin:0;color:#10223a;font-size:25px}.vf-lead-success p{max-width:420px;margin:12px auto 24px;color:#66758a;font-size:13px;line-height:1.65}.vf-lead-success>div{display:flex;justify-content:center;gap:10px}.vf-lead-success button,.vf-lead-success a{display:inline-flex;align-items:center;justify-content:center;min-height:42px;padding:0 20px;border-radius:8px;font-size:12px;font-weight:800;text-decoration:none;cursor:pointer}.vf-lead-success button{border:1px solid #d5dfec;background:#fff;color:#42536b}.vf-lead-success a{border:1px solid var(--primary);background:var(--primary);color:#fff}
.vf-lead-modal-open{overflow:hidden}
@media(max-width:760px){.vf-lead-modal{display:flex;align-items:center;justify-content:center;padding:10px}.vf-lead-modal__dialog{display:flex;height:calc(100dvh - 20px);max-height:calc(100dvh - 20px);flex-direction:column;border-radius:18px;overflow:hidden}.vf-lead-modal__visual{display:block;flex:0 0 auto;padding:22px 64px 19px 24px}.vf-lead-modal__mark,.vf-lead-modal__visual ul,.vf-lead-modal__hotline{display:none}.vf-lead-modal__visual h2{margin-top:7px;font-size:21px}.vf-lead-modal__visual>p{max-width:500px;margin:6px 0 0;font-size:12px}.vf-lead-modal__close{top:16px;right:17px;border-color:rgba(255,255,255,.25);background:rgba(255,255,255,.1);color:#fff;box-shadow:none}.vf-lead-modal__content{min-height:0;flex:1 1 auto;padding:27px 24px calc(24px + env(safe-area-inset-bottom));overflow-x:hidden;overflow-y:auto;overscroll-behavior:contain;-webkit-overflow-scrolling:touch}.vf-lead-modal__header{padding-right:0}.vf-lead-modal__header h2{font-size:25px}.vf-lead-modal__header p{margin-bottom:20px}}
@media(max-width:520px){.vf-lead-form__grid{grid-template-columns:1fr;gap:13px}.vf-lead-field--wide{margin-top:13px}.vf-lead-modal__content{padding:22px 18px calc(22px + env(safe-area-inset-bottom))}.vf-lead-modal__visual{padding:18px 60px 16px 18px}.vf-lead-modal__visual>p{display:none}.vf-lead-success{padding:35px 0 20px}.vf-lead-success>div{flex-direction:column}.vf-lead-success button,.vf-lead-success a{width:100%}}

/* Product price and Zalo offer card. */
.vf-detail-price{position:relative;display:block;padding:20px 22px 18px;border:1px solid rgba(139,180,236,.22);border-radius:16px;background:linear-gradient(135deg,#101d31 0,#172b49 58%,#123763 100%);box-shadow:0 16px 34px rgba(9,27,53,.22);overflow:hidden}
.vf-detail-price:before{content:"";position:absolute;inset:0 auto 0 0;width:5px;background:#56a8ff}
.vf-detail-price__head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:7px}
.vf-detail-price__head>span{color:#c5d3e8;font-size:13px;font-weight:800;letter-spacing:.06em;text-transform:uppercase}
.vf-detail-price__head>em{padding:5px 9px;border:1px solid rgba(154,201,255,.17);border-radius:999px;background:rgba(86,168,255,.14);color:#cfe7ff;font-size:11px;font-style:normal;font-weight:800;white-space:nowrap}
.vf-detail-price__value{display:flex;align-items:baseline;flex-wrap:wrap;gap:8px 14px}
.vf-detail-price__value strong{color:#fff;font-size:clamp(34px,3.2vw,44px);font-weight:850;line-height:1.12;letter-spacing:-.035em;text-shadow:0 2px 12px rgba(0,0,0,.18)}
.vf-detail-price__value del{color:#aebdd2;font-size:15px}
.vf-detail-price>small{display:block;margin-top:8px;color:#becce0;font-size:12px;line-height:1.5}
.vf-detail-zalo-offer{display:grid;grid-template-columns:auto minmax(0,1fr) auto;align-items:center;gap:13px;margin:14px 0 20px;padding:14px;border:1px solid rgba(8,104,237,.18);border-radius:16px;background:linear-gradient(135deg,#f1f7ff 0,#e7f2ff 100%);box-shadow:0 10px 24px rgba(8,104,237,.09)}
.vf-detail-zalo-offer__icon{display:grid;place-items:center;width:46px;height:46px;border-radius:14px;background:linear-gradient(135deg,#0759d8,#0878f9);box-shadow:0 8px 16px rgba(7,89,216,.2);color:#fff;font-size:12px;font-weight:900;letter-spacing:-.02em}
.vf-detail-zalo-offer__copy strong,.vf-detail-zalo-offer__copy span{display:block}
.vf-detail-zalo-offer__copy strong{color:#142138;font-size:14px;line-height:1.35}
.vf-detail-zalo-offer__copy span{margin-top:3px;color:#617087;font-size:12px;line-height:1.45}
.vf-detail-zalo-offer>a{display:flex;align-items:center;justify-content:center;gap:7px;min-height:44px;padding:0 15px;border-radius:10px;background:linear-gradient(135deg,#0759d8,#0878f9);box-shadow:0 8px 17px rgba(7,89,216,.2);color:#fff;font-size:13px;font-weight:850;text-decoration:none;white-space:nowrap;transition:transform .18s ease,box-shadow .18s ease}
.vf-detail-zalo-offer>a:hover{transform:translateY(-1px);box-shadow:0 11px 22px rgba(7,89,216,.27)}
.vf-detail-zalo-offer>a svg{width:17px;height:17px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.vf-detail-zalo-offer>a:focus-visible{outline:3px solid rgba(8,104,237,.25);outline-offset:3px}
@media(max-width:700px){.vf-detail-price{padding:17px 18px 16px}.vf-detail-price__head{align-items:flex-start}.vf-detail-price__value strong{font-size:32px}.vf-detail-zalo-offer{grid-template-columns:auto minmax(0,1fr);padding:13px}.vf-detail-zalo-offer>a{grid-column:1/-1;min-height:48px;width:100%}}

/* Shared fixed call/Zalo dock. */
.vf-contact-dock{position:fixed;z-index:1450;right:50%;bottom:max(16px,env(safe-area-inset-bottom));display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:7px;width:min(420px,calc(100vw - 28px));padding:6px;border:1px solid rgba(203,216,234,.9);border-radius:19px;background:rgba(255,255,255,.9);box-shadow:0 18px 50px rgba(4,28,64,.2),0 2px 8px rgba(4,28,64,.08);backdrop-filter:blur(14px);transform:translateX(50%)}
.vf-contact-dock__button{display:flex;min-width:0;min-height:52px;align-items:center;gap:10px;padding:7px 13px;border-radius:13px;color:#fff;text-decoration:none;transition:transform .2s ease,box-shadow .2s ease,filter .2s ease}
.vf-contact-dock__button--call{background:linear-gradient(135deg,#08794f,#0b9a65);box-shadow:0 8px 18px rgba(8,121,79,.22)}
.vf-contact-dock__button--zalo{background:linear-gradient(135deg,#0759d8,#0878f9);box-shadow:0 8px 18px rgba(5,97,232,.23)}
.vf-contact-dock__button:hover{filter:brightness(1.04);transform:translateY(-2px)}
.vf-contact-dock__button:focus-visible{outline:3px solid rgba(5,97,232,.3);outline-offset:3px}
.vf-contact-dock__icon{display:grid;width:36px;height:36px;place-items:center;flex:0 0 36px;border:1px solid rgba(255,255,255,.26);border-radius:11px;background:rgba(255,255,255,.14)}
.vf-contact-dock__icon svg{width:20px;height:20px;fill:none;stroke:currentColor;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round}
.vf-contact-dock__copy{display:block;min-width:0;line-height:1.15}.vf-contact-dock__copy strong,.vf-contact-dock__copy small{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vf-contact-dock__copy strong{font-size:14px;font-weight:800}.vf-contact-dock__copy small{margin-top:4px;color:rgba(255,255,255,.83);font-size:10px;font-weight:600}
@media(max-width:600px){.vf-contact-dock{bottom:max(9px,env(safe-area-inset-bottom));gap:5px;width:calc(100vw - 18px);padding:5px;border-radius:16px}.vf-contact-dock__button{min-height:50px;gap:8px;padding:6px 9px;border-radius:11px}.vf-contact-dock__icon{width:34px;height:34px;flex-basis:34px;border-radius:10px}.vf-contact-dock__copy strong{font-size:13px}.vf-contact-dock__copy small{font-size:9px}}

/* Dedicated VinFast 404 page. */
.vf-not-found-page{background:#fff}
.vf-not-found{position:relative;overflow:hidden;padding:clamp(52px,7vw,92px) 0 72px;background:linear-gradient(180deg,#f8fbff 0,#fff 78%)}
.vf-not-found__glow{position:absolute;border-radius:50%;filter:blur(8px);pointer-events:none}
.vf-not-found__glow--one{top:-190px;right:-130px;width:520px;height:520px;background:radial-gradient(circle,rgba(5,97,232,.14),transparent 68%)}
.vf-not-found__glow--two{bottom:40px;left:-180px;width:420px;height:420px;background:radial-gradient(circle,rgba(8,112,245,.09),transparent 68%)}
.vf-not-found__layout{position:relative;display:grid;grid-template-columns:minmax(0,1.04fr) minmax(390px,.96fr);gap:clamp(40px,7vw,90px);align-items:center}
.vf-not-found__content{position:relative;z-index:1}
.vf-not-found__eyebrow{display:inline-flex;align-items:center;gap:9px;margin:0 0 18px;color:var(--primary);font-size:12px;font-weight:800;letter-spacing:.12em;text-transform:uppercase}
.vf-not-found__eyebrow span{display:grid;min-width:46px;height:28px;place-items:center;border:1px solid var(--primary-border);border-radius:999px;background:var(--primary-soft);letter-spacing:.04em}
.vf-not-found h1{max-width:660px;margin:0;color:#0d1c31;font-size:clamp(42px,5.2vw,72px);line-height:1.04;letter-spacing:-.045em}
.vf-not-found__lead{max-width:650px;margin:20px 0 0;color:#5f6e82;font-size:17px;line-height:1.75}
.vf-not-found__search{display:grid;grid-template-columns:auto minmax(0,1fr) auto;align-items:center;gap:10px;max-width:650px;margin-top:30px;padding:7px 7px 7px 16px;border:1px solid #d8e2ef;border-radius:12px;background:#fff;box-shadow:0 16px 42px rgba(12,50,101,.09)}
.vf-not-found__search>svg{width:21px;height:21px;fill:none;stroke:#71829a;stroke-width:1.8;stroke-linecap:round}
.vf-not-found__search input{min-width:0;height:46px;padding:0 4px;border:0;outline:0;background:transparent;color:#14233a;font-size:15px}
.vf-not-found__search button{min-height:46px;padding:0 22px;border:0;border-radius:8px;background:var(--primary);color:#fff;font-size:13px;font-weight:800;cursor:pointer;transition:background .2s,transform .2s}
.vf-not-found__search button:hover{background:var(--primary-dark);transform:translateY(-1px)}
.vf-not-found__actions{display:flex;flex-wrap:wrap;align-items:center;gap:11px;margin-top:22px}
.vf-not-found__contact{margin-left:5px;color:var(--primary);font-size:13px;font-weight:800;text-decoration:none}
.vf-not-found__visual{position:relative;min-height:430px;border:1px solid rgba(255,255,255,.14);border-radius:30px;background:radial-gradient(circle at 70% 15%,rgba(64,150,255,.35),transparent 34%),linear-gradient(145deg,#0a3168 0,#06182f 70%);box-shadow:0 32px 80px rgba(3,28,67,.22);overflow:hidden}
.vf-not-found__visual:before{position:absolute;top:-140px;right:-90px;width:330px;height:330px;border:1px solid rgba(255,255,255,.1);border-radius:50%;box-shadow:0 0 0 54px rgba(255,255,255,.035),0 0 0 108px rgba(255,255,255,.02);content:""}
.vf-not-found__code{position:absolute;top:34px;left:38px;color:rgba(255,255,255,.09);font-size:clamp(110px,13vw,190px);font-weight:900;line-height:.82;letter-spacing:-.08em}
.vf-not-found__route-card{position:absolute;z-index:2;right:32px;bottom:46px;left:32px;display:grid;grid-template-columns:auto 1fr;gap:16px;padding:22px;border:1px solid rgba(255,255,255,.16);border-radius:18px;background:rgba(255,255,255,.11);color:#fff;box-shadow:0 18px 40px rgba(0,0,0,.18);backdrop-filter:blur(12px)}
.vf-not-found__route-icon{display:grid;width:48px;height:48px;place-items:center;border-radius:14px;background:var(--primary);box-shadow:0 10px 26px rgba(5,97,232,.38)}
.vf-not-found__route-icon svg{width:25px;height:25px;fill:none;stroke:#fff;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.vf-not-found__route-card small,.vf-not-found__route-card strong{display:block}.vf-not-found__route-card small{margin-bottom:5px;color:#8fb9ef;font-size:10px;font-weight:800;letter-spacing:.12em}.vf-not-found__route-card strong{font-size:19px}.vf-not-found__route-card p{margin:7px 0 0;color:#bed0e7;font-size:12px;line-height:1.55}
.vf-not-found__road{position:absolute;right:-45px;bottom:-52px;width:260px;height:170px;transform:rotate(-15deg)}
.vf-not-found__road span{position:absolute;top:0;bottom:0;width:2px;background:linear-gradient(180deg,transparent,rgba(255,255,255,.22),transparent)}
.vf-not-found__road span:nth-child(1){left:18%}.vf-not-found__road span:nth-child(2){left:50%}.vf-not-found__road span:nth-child(3){left:82%}
.vf-not-found__models{position:relative;z-index:1;display:grid;grid-template-columns:230px 1fr;gap:28px;align-items:center;margin-top:52px;padding:24px 26px;border:1px solid #dee7f2;border-radius:16px;background:#fff;box-shadow:0 16px 45px rgba(15,49,91,.07)}
.vf-not-found__models>div strong,.vf-not-found__models>div span{display:block}.vf-not-found__models>div strong{color:#14243a;font-size:15px}.vf-not-found__models>div span{margin-top:5px;color:#8390a1;font-size:11px}
.vf-not-found__models ul{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px;margin:0;padding:0;list-style:none}
.vf-not-found__models a{display:flex;min-height:42px;align-items:center;justify-content:space-between;gap:10px;padding:0 12px;border:1px solid #e1e8f1;border-radius:8px;background:#f8fbff;color:#24364f;font-size:12px;font-weight:750;text-decoration:none;transition:border-color .2s,color .2s,transform .2s}
.vf-not-found__models a span{color:var(--primary);font-size:16px}.vf-not-found__models a:hover{border-color:var(--primary-border);color:var(--primary);transform:translateY(-1px)}
@media(max-width:900px){.vf-not-found__layout{grid-template-columns:1fr}.vf-not-found__visual{min-height:330px;order:-1}.vf-not-found__code{font-size:150px}.vf-not-found__models{grid-template-columns:1fr}.vf-not-found__models ul{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:600px){.vf-not-found{padding:34px 0 52px}.vf-not-found__visual{min-height:280px;border-radius:20px}.vf-not-found__code{top:28px;left:24px;font-size:110px}.vf-not-found__route-card{right:18px;bottom:24px;left:18px;padding:17px}.vf-not-found h1{font-size:42px}.vf-not-found__lead{font-size:15px}.vf-not-found__search{grid-template-columns:auto minmax(0,1fr);padding:8px 12px}.vf-not-found__search button{grid-column:1/-1;width:100%}.vf-not-found__actions .button{flex:1 1 calc(50% - 6px)}.vf-not-found__contact{width:100%;margin:4px 0 0;text-align:center}.vf-not-found__models{margin-top:36px;padding:20px}.vf-not-found__models ul{grid-template-columns:repeat(2,minmax(0,1fr))}.vf-not-found__route-card p{display:none}}
@media(max-width:420px){.vf-not-found__models ul{grid-template-columns:1fr}.vf-not-found__actions .button{flex-basis:100%}}
/* Product detail: keep the product name focused in the main H1. */
.vf-detail-summary h1{font-size:clamp(30px,3vw,44px);line-height:1.12;letter-spacing:-.025em}
.vf-detail-overview .vf-detail-section-heading h2{font-size:clamp(28px,3vw,38px);line-height:1.16;letter-spacing:-.025em}
.vf-detail-nav{position:sticky;top:calc(var(--vf-sticky-content-top,100px) - 16px);z-index:900;box-shadow:0 8px 22px rgba(4,29,66,.08)}
.vf-detail-nav .vf-container{grid-template-columns:1fr auto}
#tong-quan,#thong-so,#video-xe,#anh-thuc-te{scroll-margin-top:calc(var(--vf-sticky-content-top,100px) + 60px)}
@media(max-width:900px){.vf-detail-summary h1{font-size:38px}.vf-detail-nav .vf-container{justify-content:flex-start}#tong-quan,#thong-so,#video-xe,#anh-thuc-te{scroll-margin-top:calc(var(--vf-sticky-content-top,86px) + 48px)}}
@media(max-width:600px){.vf-detail-summary h1{font-size:32px}.vf-detail-overview .vf-detail-section-heading h2{font-size:28px}}

/* Desktop search dropdown: keep the submit label balanced on one line. */
.vf-search__form{grid-template-columns:minmax(280px,360px) 108px}
.vf-search__form>button{min-width:108px;padding:0 18px;white-space:nowrap;font-size:15px;line-height:1}

/* Content links: make editorial and SEO links clearly recognizable. */
body :is(
    .product-description--detail,
    .vf-detail-article,
    .category-seo-content,
    .category-summary,
    .rich-content,
    .vf-detail-consult__copy
) a:not(.button):not(.vf-button) {
    color: #0969da;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(9, 105, 218, .42);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .18s ease, text-decoration-color .18s ease;
}

body :is(
    .product-description--detail,
    .vf-detail-article,
    .category-seo-content,
    .category-summary,
    .rich-content,
    .vf-detail-consult__copy
) a:not(.button):not(.vf-button):hover {
    color: #064da3;
    text-decoration-color: currentColor;
}

body :is(
    .product-description--detail,
    .vf-detail-article,
    .category-seo-content,
    .category-summary,
    .rich-content,
    .vf-detail-consult__copy
) a:not(.button):not(.vf-button):focus-visible {
    border-radius: 3px;
    outline: 3px solid rgba(9, 105, 218, .22);
    outline-offset: 3px;
}
