/* Vehicle Single Page Styles */
.vehicle-single-cd2544df {
    max-width: 900px;
    margin: 0 auto 40px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.vehicle-main-image-cd2544df {
    margin-bottom: 24px;
    border-radius: 12px;
    overflow: hidden;
}

.vehicle-featured-img-cd2544df {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

/* Gallery Slider */
.vehicle-gallery-slider-cd2544df {
    margin-bottom: 32px;
    border-radius: 12px;
    overflow: hidden;
}

.vehicle-gallery-slider-cd2544df .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

.vehicle-gallery-slider-cd2544df .swiper-slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.vehicle-gallery-slider-cd2544df .swiper-button-next,
.vehicle-gallery-slider-cd2544df .swiper-button-prev {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.5);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.vehicle-gallery-slider-cd2544df .swiper-button-next:hover,
.vehicle-gallery-slider-cd2544df .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.75);
}

.vehicle-gallery-slider-cd2544df .swiper-button-next::after,
.vehicle-gallery-slider-cd2544df .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

.vehicle-gallery-slider-cd2544df .swiper-pagination-bullet {
    background: #333;
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.vehicle-gallery-slider-cd2544df .swiper-pagination-bullet-active {
    background: #0073aa;
    opacity: 1;
}

/* Details Grid */
.vehicle-details-grid-cd2544df {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.vehicle-detail-item-cd2544df {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vehicle-detail-label-cd2544df {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
}

.vehicle-detail-value-cd2544df {
    font-size: 16px;
    font-weight: 500;
    color: #212529;
}

/* Description */
.vehicle-description-cd2544df {
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
}

.vehicle-description-cd2544df h3 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 600;
    color: #212529;
}

.vehicle-description-cd2544df p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #495057;
}

/* Responsive */
@media (max-width: 768px) {
    .vehicle-featured-img-cd2544df {
        height: 280px;
    }

    .vehicle-gallery-slider-cd2544df .swiper-slide img {
        height: 240px;
    }

    .vehicle-details-grid-cd2544df {
        grid-template-columns: repeat(2, 1fr);
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .vehicle-details-grid-cd2544df {
        grid-template-columns: 1fr;
    }
}
