:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-bg: #f8f9fa;
    --dark-text: #2c3e50;
    --shadow: 0 10px 20px rgba(0,0,0,0.1);
    --overlay: rgba(0,0,0,0.5);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* Общие стили для карточек */
.vehicle-description,
.booking-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.vehicle-hero {
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    position: relative;
    color: white;
    text-align: center;
    margin-bottom: 40px;
}

.vehicle-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay);
    z-index: 1;
}

.vehicle-hero .container {
    position: relative;
    z-index: 2;
}

/* Общие стили заголовков */
.vehicle-title,
.vehicle-subtitle {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.vehicle-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.vehicle-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Слайдер */
.vehicle-slider {
    width: 100%;
    height: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    background: var(--light-bg);
}

.vehicle-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Навигация слайдера */
.swiper-button-prev, 
.swiper-button-next {
    color: white;
    background: var(--overlay);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: var(--transition);
}

.swiper-button-prev:hover, 
.swiper-button-next:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.7;
    width: 12px;
    height: 12px;
    margin: 0 8px !important;
}

.swiper-pagination-bullet-active {
    background: var(--secondary-color);
    opacity: 1;
    transform: scale(1.2);
}

/* Детали автомобиля */
.vehicle-description h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.vehicle-description h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

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

.specs-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.specs-list li i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 25px;
    text-align: center;
}

/* Карточка бронирования */
.booking-card {
    height: 100%;
}

.booking-card h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 20px 0;
    text-align: center;
}

.features {
    margin: 25px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

/* Адаптив */
@media (max-width: 992px) {
    .vehicle-slider {
        height: 400px;
    }
    .vehicle-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .vehicle-hero {
        padding: 80px 0;
    }
    .vehicle-slider {
        height: auto;
        max-height: 500px;
    }
    .vehicle-slider img {
        object-fit: contain;
        padding: 10px;
    }
    .vehicle-title {
        font-size: 2rem;
    }
    .vehicle-subtitle {
        font-size: 1.2rem;
    }
}