        /*ПОДКЛЮЧАЕМ ШРИФТЫ*/
        @font-face {
            font-family: 'Permian Slab Serif';
            src: url('/fonts/PermianSlabSerifTypeface-Italic.otf') format('opentype');
            font-weight: 400;
            font-style: italic;
            font-display: swap;
        }

        @font-face {
            font-family: 'Permian Slab Serif';
            src: url('/fonts/PermianSlabSerifTypeface-Regular.otf') format('opentype');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Permian Slab Serif';
            src: url('/fonts/PermianSlabSerifTypeface-Bold.otf') format('opentype');
            font-weight: 700;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Permian Slab Serif';
            src: url('/fonts/PermianSlabSerifTypeface-BoldItalic.otf') format('opentype');
            font-weight: 700;
            font-style: italic;
            font-display: swap;
        }

        /* Общие стили */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #1a2b3c;
            --secondary: #e63946;
            --accent: #457b9d;
            --light: #f8f9fa;
            --dark: #1a2b3c;
            --gray: #6c757d;
            --success: #2a9d8f;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
        }

        body {
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 16px;
        }

        /* Уменьшаем отступы на мобильных */
        @media (max-width: 768px) {
            .container {
                padding: 0 12px; /* Уменьшили с 16px до 12px */
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 8px; /* Еще меньше на очень маленьких экранах */
            }
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            background-color: #e63946;
            color: white;
            border: solid 1px #fff;
            border-radius: 55px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            text-decoration: none;
            text-align: center;
            letter-spacing: 0.5px;
        }

        .btn:hover {
            background-color: #c1121f;
            transform: translateY(-3px);
            box-shadow: 0 8px 16px rgba(230, 57, 70, 0.2);
        }

        section {
            padding: 80px 0;
        }

        /* Уменьшаем отступы секций на мобильных */
        @media (max-width: 768px) {
            section {
                padding: 60px 0; /* Уменьшили с 80px */
            }
        }

        @media (max-width: 480px) {
            section {
                padding: 48px 0; /* Еще меньше на очень маленьких экранах */
            }
        }

        .section-title {
            text-align: left;
            margin-bottom: 48px;
            font-size: 2.5rem;
            color: var(--primary);
            position: relative;
            font-weight: 700;
        }

        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--secondary), var(--accent));
            margin: 16px 0;
            border-radius: 2px;
        }

        /* Анимации появления */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

/*---Страница автомобиля SLUG---*/
/* 1. ГЕРОЙ СЕКЦИЯ - УЛУЧШЕННАЯ */
.car-hero {
    background: linear-gradient(135deg, 
        rgba(26, 43, 60, 0.95) 0%, 
        rgba(44, 62, 80, 0.92) 50%, 
        rgba(69, 123, 157, 0.9) 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.car-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(230, 57, 70, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(69, 123, 157, 0.1) 0%, transparent 50%);
}

.car-hero__content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .car-hero__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.car-hero__image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.car-hero__image:hover {
    transform: translateY(-8px);
}

.car-hero__image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.car-hero__image:hover img {
    transform: scale(1.05);
}

.car-hero__badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #e63946, #c1121f);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    z-index: 3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.car-hero__info {
    padding: 20px 0;
}

.car-hero__title {
    font-family: 'Permian Slab Serif', serif;
    font-weight: 700;
    font-size: 3.2rem;
    margin-bottom: 16px;
    color: white;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .car-hero__title {
        font-size: 2.4rem;
    }
}

.car-hero__subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 32px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.car-hero__price {
    font-size: 3.5rem;
    color: #e63946;
    font-weight: 800;
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.car-hero__price span {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.car-hero__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 32px 0;
}

@media (max-width: 480px) {
    .car-hero__features {
        grid-template-columns: 1fr;
    }
}

.car-hero__feature {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.car-hero__feature:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.car-hero__feature i {
    color: #e63946;
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.car-hero__actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.car-hero__btn {
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 200px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.car-hero__btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.car-hero__btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(40, 40);
        opacity: 0;
    }
}

.car-hero__btn--primary {
    background: linear-gradient(135deg, #e63946, #c1121f);
    color: white;
    border: none;
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.3);
}

.car-hero__btn--primary:hover {
    background: linear-gradient(135deg, #c1121f, #e63946);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(230, 57, 70, 0.4);
}

.car-hero__btn--secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.car-hero__btn--secondary:hover {
    background: white;
    color: #1a2b3c;
    transform: translateY(-3px);
    border-color: white;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* 2. СЕКЦИЯ ПОЛНОГО ОПИСАНИЯ - УЛУЧШЕННАЯ */
.car-description {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.car-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(69, 123, 157, 0.3) 50%, 
        transparent 100%);
}

.car-description__title {
    font-family: 'Permian Slab Serif', serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: #1a2b3c;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.car-description__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        #e63946 0%, 
        #457b9d 50%, 
        #e63946 100%);
    border-radius: 2px;
}

.car-description__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

@media (max-width: 1200px) {
    .car-description__content {
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .car-description__content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.car-description__text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #2d3748;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.car-description__text p {
    margin-bottom: 24px;
    position: relative;
    padding-left: 20px;
}

.car-description__text p::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #457b9d;
    font-size: 1.2em;
}

.car-description__features {
    background: linear-gradient(135deg, 
        rgba(26, 43, 60, 0.05) 0%, 
        rgba(69, 123, 157, 0.05) 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 100px;
}

.car-description__features-title {
    font-size: 1.5rem;
    color: #1a2b3c;
    margin-bottom: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.car-description__features-title::before {
    content: '✨';
    font-size: 1.2em;
}

.car-description__features-list {
    list-style: none;
    counter-reset: feature-counter;
}

.car-description__feature-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 15px;
    color: #2d3748;
    font-size: 1.05rem;
    position: relative;
    counter-increment: feature-counter;
    transition: all 0.3s ease;
}

.car-description__feature-item:hover {
    transform: translateX(5px);
    border-bottom-color: rgba(69, 123, 157, 0.3);
}

.car-description__feature-item:last-child {
    border-bottom: none;
}

.car-description__feature-item::before {
    content: counter(feature-counter) '.';
    color: #457b9d;
    font-weight: 700;
    font-size: 0.9em;
    min-width: 24px;
}

.car-description__feature-item i {
    color: #e63946;
    font-size: 1.1em;
    width: 24px;
    text-align: center;
}

/* Галерея фотографий - УЛУЧШЕННАЯ */
.car-gallery {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid rgba(0, 0, 0, 0.05);
}

.car-gallery__title {
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: #1a2b3c;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.car-gallery__title::before {
    content: '📸';
    font-size: 1.2em;
}

.car-gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

@media (max-width: 768px) {
    .car-gallery__grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }
}

.car-gallery__item {
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    aspect-ratio: 4/3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.car-gallery__item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.car-gallery__item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        transparent 60%, 
        rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.car-gallery__item:hover::after {
    opacity: 1;
}

.car-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.car-gallery__item:hover img {
    transform: scale(1.1);
}

/* 3. СЕКЦИЯ ТАБЛИЦЫ КОМПЛЕКТАЦИИ - УЛУЧШЕННАЯ */
.car-specs {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.car-specs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(69, 123, 157, 0.2) 50%, 
        transparent 100%);
}

.car-specs__title {
    font-family: 'Permian Slab Serif', serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: #1a2b3c;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.car-specs__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        #457b9d 0%, 
        #e63946 50%, 
        #457b9d 100%);
    border-radius: 2px;
}

.car-specs__table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.03);
    border-radius: 20px;
    overflow: hidden;
    background: white;
    position: relative;
}

.car-specs__table::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(26, 43, 60, 0.02) 0%, 
        rgba(69, 123, 157, 0.02) 100%);
    z-index: 0;
}

.car-specs__table th {
    background: linear-gradient(135deg, #1a2b3c, #2c3e50);
    color: white;
    text-align: left;
    padding: 25px 30px;
    font-weight: 600;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.car-specs__table th::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e63946, #457b9d);
}

.car-specs__table td {
    padding: 22px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    color: #2d3748;
    position: relative;
    z-index: 1;
    transition: all 0.2s ease;
}

.car-specs__table tr:last-child td {
    border-bottom: none;
}

.car-specs__table tr {
    transition: all 0.3s ease;
}

.car-specs__table tr:hover {
    background: linear-gradient(90deg, 
        rgba(69, 123, 157, 0.03) 0%, 
        rgba(230, 57, 70, 0.03) 100%);
}

.car-specs__table tr:hover td {
    transform: translateX(5px);
}

.car-specs__label {
    font-weight: 600;
    color: #1a2b3c;
    width: 40%;
    font-size: 1.05rem;
    position: relative;
    padding-left: 15px;
}

.car-specs__label::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #457b9d;
    font-weight: bold;
}

.car-specs__value {
    color: #4a5568;
    font-weight: 500;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .car-specs__table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 15px;
    }
    
    .car-specs__table th,
    .car-specs__table td {
        white-space: nowrap;
        min-width: 180px;
        padding: 18px 20px;
    }
}

/* Страхование и условия - УЛУЧШЕННОЕ */
.car-insurance {
    margin-top: 70px;
    background: linear-gradient(135deg, 
        rgba(69, 123, 157, 0.05) 0%, 
        rgba(230, 57, 70, 0.05) 100%);
    padding: 45px;
    border-radius: 20px;
    border-left: 5px solid #e63946;
    position: relative;
    overflow: hidden;
}

.car-insurance::before {
    content: '🛡️';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    opacity: 0.1;
}

.car-insurance__title {
    font-size: 1.6rem;
    color: #1a2b3c;
    margin-bottom: 25px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.car-insurance__title::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: #e63946;
    border-radius: 50%;
}

.car-insurance__content {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.1rem;
}

.car-insurance__content p {
    margin-bottom: 20px;
    position: relative;
    padding-left: 24px;
}

.car-insurance__content p::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #457b9d;
    font-weight: bold;
}

/* Блок CTA внизу страницы - УЛУЧШЕННЫЙ */
.car-cta {
    background: linear-gradient(135deg, 
        #1a2b3c 0%, 
        #2c3e50 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.car-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 90%, rgba(230, 57, 70, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(69, 123, 157, 0.1) 0%, transparent 40%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23ffffff" opacity="0.03"><path d="M50 0L61 35H98L68 57L79 92L50 70L21 92L32 57L2 35H39Z"/></svg>');
    background-size: cover;
}

.car-cta__title {
    font-family: 'Permian Slab Serif', serif;
    font-size: 2.8rem;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .car-cta__title {
        font-size: 2.2rem;
    }
}

.car-cta__subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.car-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Хлебные крошки - УЛУЧШЕННЫЕ */
.breadcrumbs {
    padding: 25px 0;
    background: linear-gradient(90deg, 
        rgba(248, 249, 250, 1) 0%, 
        rgba(255, 255, 255, 1) 100%);
    margin-bottom: 0;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.breadcrumbs__list {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.breadcrumbs__item {
    color: #666;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.breadcrumbs__item:not(:last-child)::after {
    content: '›';
    margin-left: 12px;
    color: #457b9d;
    font-size: 1.2em;
    font-weight: bold;
}

.breadcrumbs__link {
    color: #457b9d;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 8px;
    position: relative;
}

.breadcrumbs__link:hover {
    color: #e63946;
    background: rgba(69, 123, 157, 0.1);
    transform: translateY(-1px);
}

.breadcrumbs__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 2px;
    background: #e63946;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.breadcrumbs__link:hover::after {
    transform: scaleX(1);
}

.breadcrumbs__current {
    color: #1a2b3c;
    font-weight: 700;
    padding: 6px 12px;
    background: rgba(26, 43, 60, 0.05);
    border-radius: 8px;
    position: relative;
}

.breadcrumbs__current::before {
    content: '📍';
    margin-right: 8px;
    font-size: 0.9em;
}

/* Анимация появления элементов */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.car-hero__content,
.car-description__content,
.car-specs__table,
.car-insurance {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Медиа-запросы для улучшения адаптивности */
@media (max-width: 480px) {
    .car-hero {
        padding: 100px 0 50px;
    }
    
    .car-hero__image {
        border-radius: 15px;
    }
    
    .car-hero__image img {
        height: 350px;
    }
    
    .car-hero__title {
        font-size: 2rem;
    }
    
    .car-hero__price {
        font-size: 2.8rem;
    }
    
    .car-description__text,
    .car-description__features {
        padding: 25px;
        border-radius: 15px;
    }
    
    .car-specs__title,
    .car-description__title {
        font-size: 2.2rem;
    }
    
    .car-insurance {
        padding: 25px;
    }
    
    .car-cta__title {
        font-size: 1.8rem;
    }
    
    .car-hero__btn {
        min-width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
    }
}

/* Плавный скролл для всей страницы */
html {
    scroll-behavior: smooth;
}

/* Эффект стекла (glassmorphism) для современных элементов */
.glass-effect {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Улучшение фокуса для доступности */
*:focus {
    outline: 2px solid rgba(69, 123, 157, 0.5);
    outline-offset: 2px;
}

/* Удаление фокуса для кликабельных элементов */
button:focus,
a:focus {
    outline: none;
}

/* Стили для загрузки изображений */
.car-hero__image,
.car-gallery__item {
    position: relative;
    overflow: hidden;
}

.car-hero__image::before,
.car-gallery__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.1) 50%, 
        rgba(255,255,255,0) 100%);
    z-index: 2;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Удаление анимации после загрузки */
.car-hero__image.loaded::before,
.car-gallery__item.loaded::before {
    display: none;
}