/* =====================================================
   TAIGEN PAGE COMPONENTS
   ===================================================== */

/* Remove any conflicting video styles */
.iyeg-video-reveal,
.iyeg-video-reveal__container,
.iyeg-video-reveal__wrapper,
.iyeg-video-reveal__video {
    display: none !important;
}



/* ===== IMAGE SECTION ===== */
.iyeg-image-section {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.iyeg-image-section__image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ===== SPECS TABS OVERLAP ===== */
.iyeg-specs-tabs-section--overlap {
    padding-top: 2rem;
}

.iyeg-specs-tabs-section--overlap .iyeg-specs-tabs__inner {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem 2rem 3rem;
    /* border: 1px solid rgba(255, 255, 255, 0.05); */
}

/* ===== COLOR SWITCHER WITH OVERLAY ===== */


/* ===== VEHICLE FEATURES ===== */




/* ===== ATTACHMENT CAROUSEL ===== */
.iyeg-attachment-carousel {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    background: #000;
    z-index: 1;
}

.iyeg-attachment-carousel__track {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.6s ease;
}

.iyeg-attachment-carousel__slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iyeg-attachment-carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.iyeg-attachment-carousel__label {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    padding: 0.75rem 2rem;
    border-radius: 8px;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: var(--iyeg-font-size-md);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.iyeg-attachment-carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(0.9);
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0.3;
    transition: all 0.3s ease;
    z-index: 10;
    pointer-events: auto;
}

.iyeg-attachment-carousel__btn:hover {
    opacity: 1 !important;
    transform: translateY(-50%) scale(1.1) !important;
    background: rgba(255, 255, 255, 0.1);
}

.iyeg-attachment-carousel__btn--prev {
    left: 20px;
}

.iyeg-attachment-carousel__btn--next {
    right: 20px;
}


/* ===== RESPONSIVE ===== */


@media (max-width: 768px) {
    .iyeg-dynamic-carousel {
        height: 60vh;
        min-height: 400px;
    }
    
    .iyeg-attachment-carousel {
        height: 60vh;
        min-height: 400px;
    }
    
    /* .iyeg-vehicle-features__container {
        height: 80vh;
    } */
    
    /* .iyeg-vehicle-features__numbers {
        bottom: 2rem;
        right: 5%;
        flex-direction: row;
    } */

    /* .iyeg-vehicle-features__numbers {
        bottom: 2rem;
        right: 5%;
    
        justify-content: flex-end;
    
        gap: 1rem;
    } */
    
}

@media (max-width: 480px) {
    .iyeg-dynamic-carousel__btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .iyeg-attachment-carousel__btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* .iyeg-vehicle-features__title {
        font-size: var(--iyeg-font-size-lg);
    } */
    
    /* .iyeg-vehicle-features__description {
        font-size: var(--iyeg-font-size-sm);
    } */
    
   
}


