/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --zeekr-cream: #fff4e2;
    --zeekr-black: #0f0f0f;
    --zeekr-dark-gray: #232323;
    --zeekr-light-gray: #f5f5f5;
    --zeekr-gray: #666666;
    --zeekr-text-black: #000000;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--zeekr-text-black);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 76px;
    background: transparent;
    color: var(--zeekr-cream);
    z-index: 100;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.mobile-open {
    background: var(--zeekr-black);
    color: #fff;
}

.header-wrapper {
    align-items: center;
    display: flex;
    height: 76px;
    justify-content: space-between;
    margin: auto;
    max-width: 1920px;
    position: relative;
}

.content {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    padding: 0 24px;
    position: relative;
    width: 100%;
    z-index: 102;
}

.content-left {
    align-items: center;
    display: flex;
    gap: 24px;
    justify-content: flex-start;
}

@media screen and (min-width: 992px) {
    .content-left {
        gap: 32px;
    }
}

.content-left .logo {
    display: flex;
    align-items: center;
}

.content-left .logo svg {
    height: 28px;
    width: 28px;
}

.content-logo {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.content-logo .logo svg {
    height: 14px;
    width: 114px;
}

.content-right {
    display: none;
}

@media screen and (min-width: 992px) {
    .content-right {
        align-items: center;
        display: flex;
        gap: 32px;
        justify-content: flex-end;
    }
}



.menus {
    align-items: center;
    display: flex;
    gap: 24px;
    justify-content: flex-start;
}

.nav-menu {
    display: none;
}

@media screen and (min-width: 992px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    color: inherit;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}

.nav-link:hover {
    opacity: 0.7;
}


/* Mobile Menu & Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 0;
    width: 24px;
    height: 44px;
    z-index: 102;
    color: inherit;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: currentColor;
    transition: all 0.3s ease;
}

.header.mobile-open .hamburger span:first-child {
    transform: rotate(45deg) translate(5px, 6px);
}

.header.mobile-open .hamburger span:last-child {
    transform: rotate(-45deg) translate(5px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--zeekr-black);
    padding-top: 80px;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 101;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.mobile-link {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-family: var(--font-heading);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger transition delays for menu items */
.mobile-menu.active .mobile-link:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu.active .mobile-link:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu.active .mobile-link:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-menu.active .mobile-link:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-menu.active .mobile-link:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-menu.active .mobile-link:nth-child(6) {
    transition-delay: 0.35s;
}

.mobile-menu.active .mobile-link:nth-child(7) {
    transition-delay: 0.4s;
}

@media screen and (min-width: 992px) {

    .hamburger,
    .mobile-menu {
        display: none;
    }
}

.logo {
    text-decoration: none;
    color: inherit;
}

.logo:hover {
    opacity: 0.8;
}

/* Hero Banner Section */
.swiper-banner {
    background-color: var(--zeekr-black);
    height: 100vh;
    min-height: 680px;
    position: relative;
    width: 100%;
}

.swiper-banner-container {
    height: 100%;
    width: 100%;
}

.slide {
    height: 100%;
    position: relative;
    width: 100%;
}

.slide::before {
    background-color: rgba(0, 0, 0, 0.25);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

.slide-image {
    height: 100%;
    width: 100%;
}

.responsive-video {
    height: 100%;
    width: 100%;
}

.responsive-video .video {
    height: 100%;
    object-fit: cover;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.video-desktop {
    display: none;
}

.video-mobile {
    display: block;
}

@media screen and (min-width: 992px) {
    .video-desktop {
        display: block;
    }

    .video-mobile {
        display: none;
    }
}

.slide-content {
    align-items: center;
    bottom: 0;
    box-sizing: border-box;
    color: var(--zeekr-cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
    left: 0;
    margin: auto;
    padding: 0 16px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    z-index: 2;
}

@media screen and (min-width: 576px) {
    .slide-content {
        padding: 0 24px;
    }
}

.slide-content-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 5rem) !important;
    font-weight: 500 !important;
    line-height: 1.1 !important;
    max-width: 920px;
    letter-spacing: -0.03em !important;
}

.slide-content-description {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 300;
    line-height: 1.4;
    margin-top: 24px;
    max-width: 920px;
    letter-spacing: 0;
}

@media screen and (min-width: 992px) {
    .slide-content-description {
        margin-top: 32px;
    }
}

.slide-content-button_layout {
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-top: 32px;
    row-gap: 12px;
}

@media screen and (min-width: 992px) {
    .slide-content-button_layout {
        margin-top: 40px;
    }
}

.slide-content-buttons {
    column-gap: 12px;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    width: 100%;
    align-items: center;
}

@media screen and (min-width: 576px) {
    .slide-content-buttons {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        width: auto;
    }
}

.slide-content-buttons .btn-outlined-dark,
.btn.btn-outlined-dark {
    background: transparent !important;
    border: 1px solid var(--zeekr-cream) !important;
    border-radius: 999px !important;
    color: var(--zeekr-cream) !important;
    display: inline-block;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    padding: 10px 24px !important;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    font-family: inherit;
    min-width: auto !important;
}

.slide-content-buttons .btn-outlined-dark:hover,
.btn.btn-outlined-dark:hover {
    background: var(--zeekr-cream) !important;
    color: var(--zeekr-black) !important;
}

@media screen and (min-width: 576px) {

    .slide-content-buttons .btn-outlined-dark,
    .btn.btn-outlined-dark {
        min-width: auto !important;
    }
}

/* Vehicle Model Sections */
.vehicle-model {
    background-color: #fff;
    position: relative;
}

.vm-item-model {
    position: relative;
    width: 100%;
}

.vm-item-model:not(:last-child) {
    margin-bottom: 0;
}

.vm-item-model-image {
    padding-top: 150%;
    position: relative;
    width: 100%;
}

@media screen and (min-width: 576px) {
    .vm-item-model-image {
        padding-top: 79.898219%;
    }
}

@media screen and (min-width: 992px) {
    .vm-item-model-image {
        padding-top: calc(100vh);
    }
}

@media screen and (min-width: 992px) and (max-aspect-ratio: 2/1) {
    .vm-item-model-image {
        padding-top: 56.25%;
    }
}

.vm-item-model-image picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.responsive-image {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vm-item-model-image.image-placeholder {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder-text {
    display: none;
    font-size: 3rem;
    font-weight: 600;
    color: var(--zeekr-gray);
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.vm-item-model-image.image-placeholder .image-placeholder-text {
    display: block;
}

.vm-item-model-content {
    align-items: center;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    padding: 0 0 clamp(40px, 8%, 80px);
    z-index: 1;
}

.vm-item-model-content .description {
    margin-top: 16px !important;
}

.vm-item-model-content .content-header {
    padding: 0 16px;
    margin-top: 0;
    margin-bottom: 24px;
}

@media screen and (min-width: 576px) {
    .vm-item-model-content .content-header {
        padding: 0 24px;
        margin-bottom: 32px;
    }
}

.vm-item-model-content .wrapper {
    align-items: center;
    background: linear-gradient(1turn, rgba(0, 0, 0, 0.5), transparent 100%);
    display: flex;
    flex-direction: column;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0 16px 32px;
    width: 100%;
}

@media screen and (min-width: 576px) {
    .vm-item-model-content .wrapper {
        background: linear-gradient(1turn, rgba(0, 0, 0, 0.5), transparent 150px);
        margin-top: 0;
        padding: 0 24px 40px;
    }
}

.car-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 500 !important;
    color: var(--zeekr-cream) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em !important;
    margin: 0;
}

.description {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 300 !important;
    color: var(--zeekr-cream) !important;
    line-height: 1.4 !important;
    letter-spacing: 0 !important;
    margin: 0;
}

/* Zeekr 009 specific styles - dark text on light background */
.zeekr-009-content {
    align-items: center !important;
    justify-content: flex-start !important;
    padding: clamp(100px, 15vh, 140px) 0 0 !important;
}

@media screen and (min-width: 576px) {
    .zeekr-009-content {
        padding: clamp(30px, 5%, 60px) 0 0 !important;
    }
}

.zeekr-009-title {
    color: var(--zeekr-black) !important;
    text-align: center !important;
}

.zeekr-009-description {
    color: var(--zeekr-black) !important;
    text-align: center !important;
}

.zeekr-009-content .content-header {
    margin-bottom: 24px !important;
    padding: 0 16px !important;
}

@media screen and (min-width: 576px) {
    .zeekr-009-content .content-header {
        margin-bottom: 32px !important;
        padding: 0 24px !important;
    }
}

.zeekr-009-content .wrapper {
    background: transparent !important;
    align-items: center !important;
    padding: 0 16px 32px !important;
    margin-top: 0 !important;
    width: 100% !important;
}

@media screen and (min-width: 576px) {
    .zeekr-009-content .wrapper {
        padding: 0 24px 40px !important;
    }
}

.zeekr-009-content .buttons {
    align-items: center !important;
    flex-direction: row !important;
    gap: 12px !important;
    justify-content: center !important;
    width: 100% !important;
}

/* Zeekr 009 button styles */
.btn-009-learn {
    background: transparent !important;
    color: var(--zeekr-black) !important;
    border: 1px solid #fff !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    padding: 10px 24px !important;
    min-width: auto !important;
}

.btn-009-learn:hover {
    background: #fff !important;
    color: var(--zeekr-black) !important;
}

.btn-009-configure {
    background: var(--zeekr-black) !important;
    color: #fff !important;
    border: 1px solid var(--zeekr-black) !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    padding: 10px 24px !important;
    min-width: auto !important;
}

.btn-009-configure:hover {
    background: var(--zeekr-dark-gray) !important;
    border-color: var(--zeekr-dark-gray) !important;
}

.vm-item-model-content .buttons {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    width: 100%;
}

@media screen and (min-width: 576px) {
    .vm-item-model-content .buttons {
        align-items: center;
        flex-direction: row;
        margin-top: 24px;
        gap: 12px;
    }
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 999px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    cursor: pointer;
    text-align: center;
    font-size: 15px;
    letter-spacing: 0.02em;
    line-height: 1;
    min-width: 180px;
    text-transform: uppercase;
}

@media screen and (min-width: 576px) {
    .btn {
        width: auto;
    }
}

.vm-item-model-content .btn-default,
.vm-item-model-content .btn.btn-default {
    background: transparent !important;
    color: var(--zeekr-cream) !important;
    border: 1px solid var(--zeekr-cream) !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    padding: 10px 24px !important;
    min-width: auto !important;
}

.vm-item-model-content .btn-default:hover,
.vm-item-model-content .btn.btn-default:hover {
    background: var(--zeekr-cream) !important;
    color: var(--zeekr-black) !important;
}

.vm-item-model-content .btn-filled-dark,
.btn-filled-dark {
    background: var(--zeekr-black);
    color: var(--zeekr-cream);
    border: 1px solid var(--zeekr-black);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    padding: 10px 24px;
    min-width: auto;
}

.vm-item-model-content .btn-filled-dark:hover,
.btn-filled-dark:hover {
    background: var(--zeekr-dark-gray);
    border-color: var(--zeekr-dark-gray);
}

.vm-item-model-content .btn-primary,
.vm-item-model-content .btn.btn-primary {
    background: var(--zeekr-cream) !important;
    color: var(--zeekr-black) !important;
    border: 1px solid var(--zeekr-cream) !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    padding: 10px 24px !important;
    min-width: auto !important;
}

.vm-item-model-content .btn-primary:hover,
.vm-item-model-content .btn.btn-primary:hover {
    background: rgba(255, 244, 226, 0.9) !important;
    border-color: rgba(255, 244, 226, 0.9) !important;
}

/* News Section */
.news-section {
    --space: 16px;
    background-color: #f5f5f0;
    padding: 80px 0;
    position: relative;
}

@media screen and (min-width: 576px) {
    .news-section {
        --space: 24px;
        padding: 120px 0;
    }
}

.news-section .section-title {
    margin-bottom: 40px !important;
    margin-top: 0;
    padding: 0 var(--space);
    text-align: left !important;
}

@media screen and (min-width: 768px) {
    .news-section .section-title {
        margin-bottom: 60px !important;
    }
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 500 !important;
    color: var(--zeekr-text-black);
    margin-bottom: 0;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 0 var(--space);
}

@media screen and (min-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

.news-item {
    background: #fff;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.news-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.news-image {
    width: 100%;
    margin-bottom: 0;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    position: relative;
    padding-top: 56.25%;
    /* 16:9 aspect ratio */
    background-color: #f0f0f0;
    min-height: 200px;
}

.news-image img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    z-index: 1;
    opacity: 1 !important;
    visibility: visible !important;
}

.news-content {
    display: flex;
    flex-direction: column;
    padding: 16px;
}

.news-date {
    font-size: 14px;
    color: var(--zeekr-gray);
    margin-bottom: 12px;
    font-weight: 400;
    line-height: 1.4;
}

.news-item .news-title {
    font-size: 20px;
    font-weight: 400 !important;
    color: var(--zeekr-text-black);
    margin-bottom: 16px;
    line-height: 1.4;
    letter-spacing: 0;
}

.news-link {
    color: var(--zeekr-text-black);
    text-decoration: none;
    font-weight: 400;
    display: inline-block;
    margin-top: 8px;
    transition: opacity 0.3s ease;
    font-size: 14px;
    line-height: 1.4;
}

.news-link:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.news-more {
    text-align: center;
    margin-top: 40px;
}

.btn-learn-more {
    background: var(--zeekr-black) !important;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 400 !important;
    border: none !important;
    border-radius: 999px !important;
    padding: 12px 32px !important;
    transition: all 0.3s ease;
    font-size: 14px !important;
    line-height: 1.4 !important;
    display: inline-block;
}

.btn-learn-more:hover {
    background: var(--zeekr-dark-gray) !important;
    opacity: 1;
}

/* Footer */
.footer {
    --space: 16px;
    background: var(--zeekr-black);
    color: #fff;
    padding: 60px var(--space) 40px;
}

@media screen and (min-width: 576px) {
    .footer {
        --space: 24px;
        padding: 80px var(--space) 60px;
    }
}

.footer-content {
    max-width: 1920px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    flex-direction: column;
    margin-bottom: 48px;
}

@media screen and (min-width: 768px) {
    .footer-top {
        flex-direction: row;
        align-items: flex-start;
        gap: 120px;
    }
}

.footer-logo {
    margin-bottom: 40px;
}

.footer-logo .logo {
    color: #fff;
}

.footer-logo svg {
    width: 28px;
    height: 28px;
}

@media screen and (min-width: 768px) {
    .footer-logo {
        margin-bottom: 0;
    }
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex: 1;
}

@media screen and (min-width: 992px) {
    .footer-links {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        flex: 1;
    }
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li:last-child {
    margin-bottom: 0;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
}

.footer-column a:hover {
    color: #fff;
    opacity: 1;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media screen and (min-width: 992px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 40px;
    }
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-bottom: 0;
}

.social-link {
    display: inline-block;
    width: 32px;
    height: 32px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.7;
}

.social-link img {
    width: 100%;
    height: 100%;
    display: block;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
}

.footer-policies {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 4px;
}

.footer-policies a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 12px;
    line-height: 1.6;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.footer-policies a:hover {
    opacity: 0.7;
}

.footer-policies .separator {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.footer-bottom-right {
    flex: 1;
    max-width: 600px;
}

.footer-disclaimer {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
}


/* =========================================
   Model Page Specific Styles
   ========================================= */

/* Key Specs Bar */
.specs-bar {
    background-color: #111;
    color: #fff;
    padding: 2rem 0;
    margin-top: -1px;
    /* connected to hero */
}

.specs-bar .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.spec-item {
    text-align: center;
}

.spec-value {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    display: block;
    color: #DAA520;
    /* Gold accent */
}

.spec-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Feature Sections */
.feature-section {
    padding: 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    /* Force some height */
}

.feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background: #f9f9f9;
}

.feature-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #000;
}

.feature-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #444;
}

.feature-image {
    background-size: cover;
    background-position: center;
    min-height: 300px;
}

.feature-section:nth-child(even) .feature-content {
    order: 2;
    /* Image left, Text right */
}

.feature-section:nth-child(even) .feature-image {
    order: 1;
}

/* Specs Table */
.specs-table-section {
    padding: 6rem 0;
    background: #fff;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 3rem;
}

.specs-table tr {
    border-bottom: 1px solid #eee;
}

.specs-table td {
    padding: 1.5rem 0;
    font-family: 'Inter', sans-serif;
}

.spec-name {
    font-weight: 600;
    color: #000;
    width: 40%;
}

.spec-data {
    color: #555;
    width: 60%;
}

/* Dark Mode Sections */
.section-dark {
    background-color: #000;
    color: #fff;
}

.section-dark .feature-content {
    background-color: #111;
}

.section-dark h3 {
    color: #fff;
}

.section-dark p {
    color: #ccc;
}

/* Responsive */
@media (max-width: 992px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-content {
        padding: 3rem 1.5rem;
        order: 2 !important;
        /* Always text below image on mobile */
    }

    .feature-image {
        order: 1 !important;
        height: 300px;
    }

    .spec-value {
        font-size: 2rem;
    }
}

/* Responsive Design */
@media (max-width: 767px) {
    .nav-menu {
        display: none;
    }

    .hero-banner {
        min-height: 500px;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-description {
        font-size: 1.25rem;
    }

    .vm-item-model-image {
        padding-top: 100vh;
    }

    .btn {
        width: 100%;
        min-width: unset;
    }
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vehicle-model,
.news-section {
    animation: fadeInUp 0.6s ease-out;
}

/* =========================================
   Zeekr 7X Specific Styles
   ========================================= */

/* Video Hero */
.video-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay for text readability */
    z-index: 1;
}

.video-hero .page-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    /* Offset for optical balance */
}

/* Hero Typography */
.video-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.video-hero p {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Hero Specs Bar (Floating) */
.hero-specs-bar {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    z-index: 2;
}

.hero-specs-bar .container {
    display: flex;
    justify-content: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 24px 48px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: fit-content;
}

@media (max-width: 768px) {
    .hero-specs-bar .container {
        flex-wrap: wrap;
        gap: 20px;
        width: 90%;
        padding: 20px;
    }

    .video-hero .hero-specs-bar {
        position: relative;
        bottom: 0;
        margin-top: 40px;
    }
}

.hero-specs-bar .spec-item {
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.hero-specs-bar .spec-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.2;
}

.hero-specs-bar .spec-label {
    font-size: 0.8rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

/* Feature Sections */
.section-light {
    background-color: #fff;
    color: #0f0f0f;
}

.section-white {
    background-color: #f9f9f9;
    color: #0f0f0f;
    padding: 100px 0;
}

/* Feature Grid Layout - Overrides existing simplistic styles */
.feature-grid {
    display: flex;
    width: 100%;
    min-height: 600px;
    align-items: center;
}

.feature-grid.reverse {
    flex-direction: row-reverse;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-content {
    flex: 1;
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-image {
    flex: 1;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
}

.feature-content .content-wrapper {
    max-width: 500px;
}

.eyebrow {
    display: block;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    opacity: 0.6;
}

.feature-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.2;
}

.feature-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 12px;
    font-size: 1rem;
    opacity: 0.9;
    padding-left: 20px;
    position: relative;
}

.feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: currentColor;
}

/* Parallax Interior Header */
.full-width-image-header {
    position: relative;
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.full-width-image-header .overlay-text {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
    background: rgba(0, 0, 0, 0.2);
    padding: 40px;
    backdrop-filter: blur(5px);
    border-radius: 20px;
}

.full-width-image-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 16px;
}

/* 3-Col Grid for Capability */
.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mt-50 {
    margin-top: 50px;
}

.center-text {
    text-align: center;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.grid-card {
    text-align: center;
}

.grid-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.grid-card:hover img {
    transform: translateY(-10px);
}

.grid-card h4 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

/* Specs Table Refinement */
.table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table td {
    padding: 24px;
    border-bottom: 1px solid #eee;
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.spec-name {
    font-weight: 600;
    width: 40%;
    color: #666;
}

.spec-data {
    font-weight: 500;
    font-size: 1.1rem;
}

/* Animations Helper Classes */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
    opacity: 0;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
    opacity: 0;
}

/* Responsive Overrides */
@media (max-width: 992px) {

    .feature-grid,
    .feature-grid.reverse {
        flex-direction: column;
    }

    .feature-image,
    .feature-content {
        width: 100%;
        min-height: auto;
    }

    .feature-image {
        height: 60vw;
    }

    .grid-3-col {
        grid-template-columns: 1fr;
    }

    .video-hero h1 {
        font-size: 3.5rem;
    }
}

/* Zeekr 009 Product Page Styles */
.product-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 76px;
    overflow: hidden;
}

.product-hero-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.product-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 120px 24px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.product-hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.5rem;
    margin-bottom: 8px;
    opacity: 0.9;
}

.product-hero-description {
    font-family: var(--font-body);
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.85;
}

.product-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.product-features {
    padding: 80px 0;
    background: var(--zeekr-light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--zeekr-text-black);
}

.feature-description {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--zeekr-gray);
    line-height: 1.6;
}

.product-gallery {
    padding: 80px 0;
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    padding: 24px;
    font-family: var(--font-body);
    font-size: 1rem;
}

.product-interior {
    padding: 80px 0;
    background: var(--zeekr-light-gray);
}

.interior-features {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.interior-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.interior-feature:nth-child(even) {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.interior-feature:nth-child(even) .interior-content {
    direction: ltr;
}

.interior-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

.interior-content {
    padding: 40px;
}

.interior-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--zeekr-text-black);
}

.interior-description {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--zeekr-gray);
    line-height: 1.7;
}

.product-advanced {
    padding: 80px 0;
    background: #fff;
}

.advanced-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.advanced-feature {
    background: var(--zeekr-light-gray);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.advanced-feature:hover {
    transform: translateY(-8px);
}

.advanced-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.advanced-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 24px 24px 12px;
    color: var(--zeekr-text-black);
}

.advanced-description {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--zeekr-gray);
    margin: 0 24px 24px;
    line-height: 1.6;
}

.product-performance {
    padding: 80px 0;
    background: var(--zeekr-black);
    color: #fff;
}

.performance-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    padding: 40px 24px;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 8px;
    color: #fff;
}

.stat-unit {
    font-family: var(--font-body);
    font-size: 1.5rem;
    opacity: 0.8;
    margin-left: 8px;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-top: 16px;
    opacity: 0.9;
}

.performance-note {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 60px;
    opacity: 0.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.product-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--zeekr-cream) 0%, #fff 100%);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--zeekr-text-black);
}

.cta-description {
    font-family: var(--font-body);
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: var(--zeekr-gray);
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Styles for Product Page */
@media (max-width: 992px) {
    .product-hero-title {
        font-size: 3rem;
    }

    .product-hero-subtitle {
        font-size: 1.25rem;
    }

    .product-hero-description {
        font-size: 1.1rem;
    }

    .interior-feature {
        grid-template-columns: 1fr;
    }

    .interior-feature:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .interior-image {
        min-height: 300px;
    }

    .stat-value {
        font-size: 3rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .product-hero {
        min-height: 80vh;
    }

    .product-hero-content {
        padding: 80px 16px 60px;
    }

    .product-hero-title {
        font-size: 2.5rem;
    }

    .product-hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .product-hero-buttons .btn {
        width: 100%;
    }

    .features-grid,
    .gallery-grid,
    .advanced-features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .interior-content {
        padding: 24px;
    }

    .interior-title {
        font-size: 1.5rem;
    }

    .performance-stats {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}
