.nexus-white-showcase {
    width: 100%;
    height: 70vh;
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

/* Header */
.nexus-white-header {
    position: absolute;
    top: 60px;
    left: 60px;
    z-index: 100;
    pointer-events: none;
}

.nexus-white-title {
    font-size: 64px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.nexus-white-scroll-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666666;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nexus-white-hint-arrow {
    font-size: 20px;
    animation: nexusWhiteArrowBounce 1.5s ease-in-out infinite;
}

@keyframes nexusWhiteArrowBounce {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(8px);
    }
}

/* Viewport - Smooth Carousel (NO manual scroll) */
.nexus-white-viewport {
    width: 100%;
    height: 100vh;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Hide scrollbar */
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.nexus-white-viewport::-webkit-scrollbar {
    display: none;
}

/* Track - Horizontal Container */
.nexus-white-track {
    display: flex;
    height: 100vh;
    width: fit-content;
}

/* Panel */
.nexus-white-panel {
    width: 100vw;
    height: 70vh;
    flex-shrink: 0;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nexus-white-content {
    width: 100%;
    max-width: 1400px;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    position: relative;
}

/* Background Number */
.nexus-white-number {
    position: absolute;
    top: 50%;
    left: -60px;
    transform: translateY(-50%);
    font-size: 220px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    line-height: 1;
    pointer-events: none;
    z-index: 1;
}

/* Vehicle Details */
.nexus-white-details {
    z-index: 10;
}

.nexus-white-name {
    font-size: 80px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 40px;
    line-height: 0.95;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

/* Button */
.nexus-white-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nexus-white-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nexus-white-btn:hover {
    color: #ffffff;
}

.nexus-white-btn:hover::before {
    left: 0;
}

.nexus-white-btn svg {
    transition: transform 0.3s ease;
}

.nexus-white-btn:hover svg {
    transform: translateX(4px);
}

/* Image Container */
.nexus-white-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.nexus-white-img {
    max-width: 700px;
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nexus-white-panel:hover .nexus-white-img {
    transform: scale(1.04);
}

/* Navigation Arrows - ONLY VISIBLE IN VARIANTS SECTION */
.nexus-white-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    color: #1a1a1a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    opacity: 1;
    visibility: visible;
}

.nexus-white-prev {
    left: 30px;
}

.nexus-white-next {
    right: 30px;
}

.nexus-white-arrow:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #ffffff;
    transform: translateY(-50%) scale(1.08);
}

.nexus-white-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

/* Remove disabled state since we're looping */
.nexus-white-arrow.disabled {
    opacity: 1;
    pointer-events: all;
}

/* Hide arrows when not in section */
.nexus-white-arrow.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Progress Bar - Only visible in variants section */
.nexus-white-progress {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #f0f0f0;
    z-index: 1000;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nexus-white-progress.hidden {
    opacity: 0;
    visibility: hidden;
}

.nexus-white-progress-fill {
    height: 100%;
    background: #1a1a1a;
    width: 0%;
    transition: width 0.4s ease;
}

/* Counter - Only visible in variants section */
.nexus-white-counter {
    position: fixed;
    bottom: 30px;
    right: 60px;
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-weight: 700;
    color: #1a1a1a;
    z-index: 1000;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nexus-white-counter.hidden {
    opacity: 0;
    visibility: hidden;
}

.nexus-white-current {
    font-size: 40px;
    line-height: 1;
}

.nexus-white-divider {
    font-size: 20px;
    color: #999999;
}

.nexus-white-total {
    font-size: 20px;
    color: #999999;
}

/* ================================================
White Split Sections
================================================ */

.nexus-white-split {
    width: 100%;
    min-height: 600px;
    position: relative;
}

.nexus-white-split-container {
    display: flex;
    width: 100%;
    min-height: 600px;
}

.nexus-white-split-media,
.nexus-white-split-text {
    flex: 1;
    min-height: 600px;
}

/* Media Side */
.nexus-white-split-media {
    position: relative;
    overflow: hidden;
}

.nexus-white-split-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.nexus-white-split:hover .nexus-white-split-bg {
    transform: scale(1.05);
}

/* Text Side */
.nexus-white-split-text {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 60px;
}

.nexus-white-split-inner {
    max-width: 580px;
}

.nexus-white-split-heading {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: -0.01em;
    margin: 0;
}

/* Dark Theme */
.nexus-white-dark {
    background: #1a1a1a;
}

.nexus-white-dark .nexus-white-split-text {
    background: #1a1a1a;
}

.nexus-white-dark .nexus-white-split-heading {
    color: #ffffff;
}

/* Light Theme */
.nexus-white-light {
    background: #fafafa;
}

.nexus-white-light .nexus-white-split-text {
    background: #fafafa;
}

.nexus-white-light .nexus-white-split-heading {
    color: #1a1a1a;
}

/* ================================================
Responsive Design
================================================ */

@media (max-width: 1400px) {
    .nexus-white-title {
        font-size: 56px;
    }

    .nexus-white-name {
        font-size: 70px;
    }

    .nexus-white-number {
        font-size: 180px;
    }

    .nexus-white-img {
        max-width: 600px;
    }
}

@media (max-width: 1200px) {
    .nexus-white-content {
        gap: 60px;
        padding: 0 60px;
    }

    .nexus-white-name {
        font-size: 60px;
    }

    .nexus-white-number {
        font-size: 160px;
    }

    .nexus-white-img {
        max-width: 550px;
    }
}

@media (max-width: 1024px) {
    .nexus-white-header {
        top: 40px;
        left: 40px;
    }

    .nexus-white-title {
        font-size: 48px;
    }

    .nexus-white-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 0 40px;
    }

    .nexus-white-number {
        position: static;
        transform: none;
        font-size: 120px;
        margin-bottom: 20px;
    }

    .nexus-white-name {
        font-size: 52px;
        margin-bottom: 30px;
    }

    .nexus-white-img {
        max-width: 500px;
    }

    .nexus-white-arrow {
        width: 48px;
        height: 48px;
    }

    .nexus-white-prev {
        left: 20px;
    }

    .nexus-white-next {
        right: 20px;
    }

    /* Split sections responsive - TABLET */
    .nexus-white-split-container {
        flex-direction: column;
    }

    .nexus-white-split-media,
    .nexus-white-split-text {
        flex: 1;
        width: 100%;
        min-height: 450px;
    }

    .nexus-white-split-media {
        position: relative;
        height: 450px;
    }

    .nexus-white-split-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .nexus-white-split-text {
        padding: 60px 40px;
    }

    .nexus-white-split-heading {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .nexus-white-showcase {
        height: auto;
        min-height: 100vh;
    }

    .nexus-white-header {
        top: 30px;
        left: 30px;
    }

    .nexus-white-title {
        font-size: 40px;
    }

    .nexus-white-scroll-hint {
        font-size: 12px;
    }

    .nexus-white-content {
        padding: 0 30px;
        gap: 30px;
    }

    .nexus-white-name {
        font-size: 40px;
    }

    .nexus-white-btn {
        padding: 14px 28px;
        font-size: 13px;
    }

    .nexus-white-img {
        max-width: 100%;
    }

    .nexus-white-arrow {
        width: 44px;
        height: 44px;
        display: none;
    }

    .nexus-white-prev {
        left: 15px;
    }

    .nexus-white-next {
        right: 15px;
    }

    .nexus-white-counter {
        bottom: 20px;
        right: 30px;
    }

    .nexus-white-current {
        font-size: 32px;
    }

    .nexus-white-divider,
    .nexus-white-total {
        font-size: 16px;
    }

    /* Split Sections */
    .nexus-white-split {
        min-height: auto;
    }

    .nexus-white-split-container {
        flex-direction: column;
        min-height: auto;
    }

    .nexus-white-split-media,
    .nexus-white-split-text {
        width: 100%;
        min-height: 400px;
    }

    .nexus-white-split-media {
        position: relative;
        height: 400px;
    }

    .nexus-white-split-text {
        padding: 50px 30px;
    }

    .nexus-white-split-heading {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .nexus-white-showcase {
        height: auto;
    }

    .nexus-white-viewport {
        overflow-x: visible;
        overflow-y: visible;
        height: auto;
        scroll-snap-type: none;
    }

    .nexus-white-track {
        display: block;
        width: 100%;
        height: auto;
    }

    .nexus-white-panel {
        width: 100%;
        height: auto;
        min-height: 90vh;
        padding: 100px 0 60px;
    }

    .nexus-white-header {
        top: 20px;
        left: 20px;
    }

    .nexus-white-title {
        font-size: 32px;
    }

    .nexus-white-scroll-hint {
        display: none;
    }

    .nexus-white-content {
        padding: 0 20px;
    }

    .nexus-white-name {
        font-size: 34px;
        margin-bottom: 25px;
    }

    .nexus-white-number {
        font-size: 90px;
    }

    .nexus-white-arrow {
        width: 40px;
        height: 40px;
        display: none;
    }

    .nexus-white-prev {
        left: 10px;
    }

    .nexus-white-next {
        right: 10px;
    }

    .nexus-white-counter {
        bottom: 15px;
        right: 20px;
    }

    .nexus-white-current {
        font-size: 28px;
    }

    .nexus-white-divider,
    .nexus-white-total {
        font-size: 14px;
    }

    /* Split Sections Mobile */
    .nexus-white-split {
        min-height: auto;
        width: 100%;
    }

    .nexus-white-split-container {
        flex-direction: column;
        min-height: auto;
        width: 100%;
    }

    .nexus-white-split-media,
    .nexus-white-split-text {
        width: 100%;
        min-height: 350px;
        flex: none;
    }

    .nexus-white-split-media {
        position: relative;
        height: 350px;
        display: block;
    }

    .nexus-white-split-bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
    }

    .nexus-white-split-text {
        padding: 40px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nexus-white-split-heading {
        font-size: 19px;
        line-height: 1.5;
    }
}

/* Smooth Animations */
@media (prefers-reduced-motion: reduce) {
    .nexus-white-viewport {
        scroll-behavior: auto;
    }

    .nexus-white-hint-arrow {
        animation: none;
    }

    .nexus-white-img,
    .nexus-white-split-bg {
        transition: none;
    }
}

/* Performance Optimizations */
.nexus-white-img,
.nexus-white-split-bg {
    will-change: transform;
    transform: translateZ(0);
}