/* Car Show Page - Clean Modern Design
================================================== */

.car-show-section {
    background: #fff;
    padding: 60px 0 80px;
}

/* Left Column - Car Info & Gallery */
.car-info-left {
    padding-right: 40px;
}

.car-brand {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color, #1a1a1a);
    margin-bottom: 8px;
    line-height: 1.2;
}

.car-price {
    margin-bottom: 30px;
}

.car-price-amount {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color, #6366f1);
}

.car-price-period {
    font-size: 16px;
    color: #888;
    font-weight: 400;
}

/* Main Car Image */
.car-main-image {
    width: 100%;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}

.car-main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Thumbnail Gallery */
.car-thumbnails {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.car-thumbnail {
    width: 80px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: #f0f0f0;
}

.car-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.car-thumbnail:hover,
.car-thumbnail.active {
    border-color: var(--secondary-color, #6366f1);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

/* Right Column - Specifications */
.car-specs-right {
    padding-left: 40px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color, #1a1a1a);
    margin-bottom: 24px;
}

/* Technical Specifications Grid */
.tech-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.tech-spec-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.tech-spec-card:hover {
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.tech-spec-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color, #1a1a1a);
}

.tech-spec-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color, #1a1a1a);
    margin-bottom: 4px;
    display: block;
}

.tech-spec-value {
    font-size: 13px;
    color: #888;
}

/* Action Buttons Row - All 3 in one line */
.action-btns-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.action-btn-rent {
    flex: 1;
    padding: 14px 28px;
    font-size: 15px;
    background: var(--primary-color, #1a1a1a);
    color: #fff;
}

.action-btn-rent i {
    font-size: 16px;
}

.action-btn-rent:hover {
    background: var(--primary-hover-color, #333);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.action-btn-phone,
.action-btn-whatsapp {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    font-size: 20px;
}

.action-btn-phone {
    background: var(--primary-color, #1a1a1a);
    color: #fff;
}

.action-btn-phone:hover {
    background: var(--primary-hover-color, #333);
    color: #fff;
    transform: translateY(-2px);
}

.action-btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.action-btn-whatsapp:hover {
    background: #1da851;
    color: #fff;
    transform: translateY(-2px);
}

/* Features & Delivery Row */
/* .features-delivery-row {
    display: flex;
    gap: 24px;
    margin-top: 10px;
} */

/* Car Equipment Section */
.car-equipment {
    flex: 1;
    min-width: 0;
}

.equipment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.equipment-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
    padding: 10px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #eee;
    white-space: nowrap;
}

.equipment-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--secondary-color, #6366f1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

/* Pricing Cards Row */
.pricing-row {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.pricing-card {
    flex: 1;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.pricing-card-amount {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color, #6366f1);
    display: block;
    margin-bottom: 4px;
}

.pricing-card-period {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
}

/* Delivery Section */
.delivery-section {
    flex: 1;
    min-width: 0;
    background: #f8f9fa;
    border-radius: 16px;
    padding: 24px;
    margin-top: 0;
    align-self: flex-start;
}

.delivery-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color, #1a1a1a);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.delivery-title i {
    color: var(--secondary-color, #6366f1);
}

.delivery-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.delivery-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
    padding: 10px 16px;
    background: #fff;
    border-radius: 25px;
    border: 1px solid #eee;
}

.delivery-item i {
    color: var(--secondary-color, #6366f1);
}

/* Terms Link */
.terms-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--secondary-color, #6366f1);
    font-size: 14px;
    text-decoration: none;
    margin-top: 16px;
    transition: all 0.3s ease;
}

.terms-link:hover {
    color: var(--secondary-hover-color, #4f46e5);
    text-decoration: underline;
}

/* Supplier Note */
.supplier-note {
    font-size: 12px;
    color: #888;
    margin-top: 16px;
    padding: 12px 16px;
    background: #fff8f5;
    border-left: 3px solid var(--secondary-color, #6366f1);
    border-radius: 0 8px 8px 0;
}

.supplier-note i {
    color: var(--secondary-color, #6366f1);
    margin-right: 6px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .car-info-left,
    .car-specs-right {
        padding: 0;
    }
    
    .car-specs-right {
        margin-top: 40px;
    }
    
    .tech-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .car-show-section {
        padding: 40px 0 60px;
    }
    
    .car-brand {
        font-size: 24px;
    }
    
    .car-price-amount {
        font-size: 22px;
    }
    
    .car-main-image {
        height: 220px;
    }
    
    .tech-specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .tech-spec-card {
        padding: 16px 12px;
    }
    
    .pricing-row {
        flex-direction: column;
    }
    
    .action-btns-row {
        flex-wrap: nowrap;
    }
    
    .action-btn-rent {
        flex: 1;
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .action-btn-phone,
    .action-btn-whatsapp {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .equipment-grid {
        flex-direction: column;
    }
    
    .equipment-item {
        width: 100%;
        white-space: normal;
    }
    
    .features-delivery-row {
        flex-direction: column;
    }
    
    .delivery-section {
        margin-top: 20px;
    }
    
    .delivery-list {
        flex-direction: column;
    }
    
    .delivery-item {
        width: 100%;
        justify-content: center;
    }
}

/* Image Gallery Carousel Override */
.car_choose_carousel {
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.thumbnail_carousel .item {
    padding: 0;
}

.thumbnail_carousel .item img {
    border-radius: 16px;
    width: 100%;
    height: 320px;
    object-fit: contain;
}

.thumbnail_carousel_nav {
    margin-top: 16px;
}

.thumbnail_carousel_nav .item {
    padding: 4px;
}

.thumbnail_carousel_nav .item img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail_carousel_nav .slick-current img,
.thumbnail_carousel_nav .item:hover img {
    border-color: var(--secondary-color, #6366f1);
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tech-spec-card {
    animation: fadeIn 0.4s ease both;
}

.tech-spec-card:nth-child(1) { animation-delay: 0.05s; }
.tech-spec-card:nth-child(2) { animation-delay: 0.1s; }
.tech-spec-card:nth-child(3) { animation-delay: 0.15s; }
.tech-spec-card:nth-child(4) { animation-delay: 0.2s; }
.tech-spec-card:nth-child(5) { animation-delay: 0.25s; }
.tech-spec-card:nth-child(6) { animation-delay: 0.3s; }
