:root {
    --primary-orange: #ff6b35;
    --secondary-orange: #ff8c42;
    --accent-orange: #ffb366;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
}

/* ================ HERO SLIDER - PERFECT BALANCE ================ */
.hero-slider-index {
    height: 80vh;
    min-height: 500px;
    max-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    background: #0a0a0a;
    overflow: hidden;
}

.slider-container {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 3;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    opacity: 0;
    transition: opacity 1s ease;
}

.slider-slide.active {
    display: block;
    opacity: 1;
}

.slide-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 100%;
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
    overflow: hidden;
}

.slider-slide[data-layout="right"] .slide-image-wrapper {
    left: auto;
    right: 0;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.slide-image-wrapper .car-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 1s ease;
    filter: brightness(0.92) contrast(1.05);
}

.slider-slide.active .slide-image-wrapper .car-image {
    animation: smoothZoomIn 1.5s ease forwards;
}

@keyframes smoothZoomIn {
    from { transform: scale(1.08); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.slide-image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, rgba(10, 10, 10, 0.7) 95%);
}

.slider-slide[data-layout="right"] .slide-image-wrapper::after {
    background: linear-gradient(to left, transparent 60%, rgba(10, 10, 10, 0.7) 95%);
}

.slide-content-wrapper {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2.5%;
    width: 21%;
    z-index: 10;
    padding: 2rem 2rem;
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.95), rgba(30, 30, 30, 0.9));
    border-radius: 24px;
    border: 1px solid rgba(255, 107, 53, 0.25);
}

.slider-slide[data-layout="right"] .slide-content-wrapper {
    right: auto;
    left: 2.5%;
}

.slide-content-wrapper::before {
    content: "";
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 65%;
    background: linear-gradient(to bottom, transparent, #ff6b35 20%, #ff8c42 50%, #ff6b35 80%, transparent);
    border-radius: 2px;
    animation: lineGlowPulse 3s ease-in-out infinite;
}

.slider-slide[data-layout="right"] .slide-content-wrapper::before {
    left: auto;
    right: -6px;
}

@keyframes lineGlowPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.slide-title {
    font-size: clamp(1.8rem, 2.8vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShineFlow 5s linear infinite;
    letter-spacing: -0.5px;
}

.slide-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.slide-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    width: 100%;
}

.slide-cta:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ff8c42, #ffa726);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(20, 20, 20, 0.9);
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
}

.slider-arrow:hover {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-color: rgba(255, 107, 53, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev { left: 2.5%; }
.slider-arrow.next { right: 2.5%; }

.slider-arrow i {
    color: white;
    font-size: 1.2rem;
}

/* ================ CAR LISTINGS - PERFECT SPACING ================ */
.car-listings-index {
    padding: 4rem 5%;
    max-width: 1750px;
    margin: 0 auto;
    background: var(--dark-bg);
}

.section-header-index {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title-index {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShineFlow 6s linear infinite;
    display: inline-block;
    letter-spacing: -0.8px;
    line-height: 1.2;
}

.section-title-index::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42, #ff6b35);
    background-size: 200% 100%;
    border-radius: 2px;
    animation: titleShineFlow 4s linear infinite;
}

.section-subtitle-index {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin: 1rem auto 0;
    line-height: 1.6;
    font-weight: 400;
}

.car-grid-index {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    margin-top: 2.5rem;
}

/* ================ CAR CARDS - PERFECT PROPORTIONS ================ */
.car-card-index {
    background: linear-gradient(145deg, rgba(22, 22, 22, 0.95), rgba(30, 30, 30, 0.9));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.car-card-index:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.12);
}

.car-image-index {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    transition: transform 0.3s ease;
}

.car-image-index::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(22, 22, 22, 0.9), transparent);
}

.car-card-index:hover .car-image-index {
    transform: scale(1.04);
}

.favorite-btn-index {
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    width: 36px;
    height: 36px;
    background: rgba(20, 20, 20, 0.9);
    border: 1.5px solid rgba(255, 107, 53, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.favorite-btn-index i {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.3s ease;
}

.favorite-btn-index:hover {
    transform: scale(1.08);
    background: rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.6);
}

.favorite-btn-index:hover i {
    color: #ff6b35;
}

.favorite-btn-index.active {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-color: rgba(255, 107, 53, 0.8);
}

.favorite-btn-index.active i {
    color: white;
    animation: heartBeat 1.2s ease-in-out infinite;
}

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

.car-badge-index {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    padding: 4px 12px;
    border-radius: 18px;
    font-size: 0.68rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.car-info-index {
    padding: 1.3rem 1.5rem;
}

.car-title-index {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    color: var(--text-light);
    transition: all 0.3s ease;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.car-card-index:hover .car-title-index {
    color: var(--primary-orange);
}

.car-year-index {
    color: var(--primary-orange);
    font-weight: 700;
    margin-bottom: 0.9rem;
    font-size: 0.8rem;
}

.car-specs-index {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    padding: 0.9rem 1rem;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.6), rgba(20, 20, 20, 0.8));
    border-radius: 14px;
    border: 1px solid rgba(255, 107, 53, 0.12);
}

.spec-item-index {
    text-align: center;
    flex: 1;
}

.spec-icon-index {
    color: var(--primary-orange);
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.spec-value-index {
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.2;
}

.spec-label-index {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.68rem;
    margin-top: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.car-price-index {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary-orange);
    margin: 1rem 0;
    letter-spacing: -0.5px;
}

.car-cta-index {
    width: 100%;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border: none;
    padding: 10px 14px;
    border-radius: 14px;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.car-cta-index:hover {
    background: linear-gradient(135deg, #ff8c42, #ffa726);
    transform: translateY(-2px);
}

/* ================ VIEW ALL BUTTON - PERFECT SIZE ================ */
.index-page-view-all-cars {
    display: flex;
    justify-content: flex-end;
    padding: 1.2rem 5%;
    background: var(--dark-bg);
}

.index-page-view-all-cars-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.index-page-view-all-cars-link:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ff8c42, #ffa726);
}

/* ================ FEATURES - PERFECT BALANCE ================ */
.features-section-index {
    padding: 4rem 5%;
    background: linear-gradient(135deg, var(--darker-bg) 0%, rgba(18, 18, 18, 1) 50%, var(--darker-bg) 100%);
}

.features-container-index {
    max-width: 1400px;
    margin: 0 auto;
}

.features-grid-index {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    margin-top: 2.5rem;
}

.feature-card-index {
    text-align: center;
    padding: 1.8rem 1.5rem;
    background: linear-gradient(145deg, rgba(22, 22, 22, 0.95), rgba(30, 30, 30, 0.9));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card-index:hover {
    transform: translateY(-8px);
    background: linear-gradient(145deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 66, 0.08));
    border-color: rgba(255, 107, 53, 0.35);
}

.feature-icon-index {
    width: 75px;
    height: 75px;
    margin: 0 auto 1.3rem;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-card-index:hover .feature-icon-index {
    transform: scale(1.08) rotate(5deg);
}

.feature-title-index {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: var(--text-light);
    transition: color 0.3s ease;
    line-height: 1.3;
}

.feature-card-index:hover .feature-title-index {
    color: var(--primary-orange);
}

.feature-description-index {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ================ STATS - PERFECT SIZE ================ */
.stats-section-index {
    padding: 3rem 5%;
    background: linear-gradient(135deg, #ff6b35, #ff8c42, #ffa726);
}

.stats-container-index {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number-index {
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 900;
    margin-bottom: 0.4rem;
    color: white;
    line-height: 1;
}

.stat-label-index {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    line-height: 1.3;
}

/* ================ NEWSLETTER - PERFECT COMPACT ================ */
.newsletter-section-index {
    padding: 2.5rem 5%;
    text-align: center;
    background: var(--dark-bg);
}

.newsletter-container-index {
    max-width: 620px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(22, 22, 22, 0.95), rgba(30, 30, 30, 0.9));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 18px;
    padding: 1.5rem 1.6rem;
}

.newsletter-title-index {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    margin-bottom: 0.4rem;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShineFlow 6s linear infinite;
}

.newsletter-form-index {
    display: flex;
    gap: 0.7rem;
    max-width: 480px;
    margin: 1rem auto 0;
    flex-wrap: wrap;
}

.newsletter-input-index {
    flex: 1;
    min-width: 180px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 24px;
    background: rgba(18, 18, 18, 0.8);
    color: white;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.newsletter-input-index:focus {
    outline: none;
    border-color: rgba(255, 107, 53, 0.6);
}

.newsletter-input-index::placeholder {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn-index {
    padding: 10px 24px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    border: none;
    border-radius: 24px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn-index:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ff8c42, #ffa726);
}

/* ================ ANIMATIONS ================ */
.animate-on-scroll-index {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll-index.animated-index {
    opacity: 1;
    transform: translateY(0);
}

.favorite-notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(20, 20, 20, 0.98);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    z-index: 9999;
    border: 2px solid rgba(255, 107, 53, 0.5);
}

.favorite-notification.show {
    opacity: 1;
}

.favorite-notification.success {
    border-color: #ff6b35;
}

@keyframes titleShineFlow {
    to { background-position: 200% center; }
}

/* ================ RESPONSIVE - PERFECT SCALING ================ */
@media (max-width: 1399px) {
    .car-grid-index { grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
    .features-grid-index { grid-template-columns: repeat(3, 1fr); }
    .car-image-index { height: 190px; }
}

@media (max-width: 1199px) {
    .features-grid-index { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
    .hero-slider-index { height: 75vh; min-height: 480px; }
    .car-listings-index { padding: 3.5rem 4%; }
    .section-header-index { margin-bottom: 2rem; }
    .car-grid-index { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .car-image-index { height: 185px; }
    .features-section-index { padding: 3.5rem 4%; }
    .features-grid-index { gap: 1.5rem; }
    .stats-section-index { padding: 2.8rem 4%; }
    .stats-container-index { gap: 1.8rem; }
}

@media (max-width: 768px) {
    .hero-slider-index { height: 85vh; min-height: 580px; }
    .slide-image-wrapper { width: 100%; height: 55%; clip-path: polygon(0 0, 100% 0, 100% 82%, 0 100%); top: 0; }
    .slider-slide[data-layout="right"] .slide-image-wrapper { clip-path: polygon(0 0, 100% 0, 100% 82%, 0 100%); }
    .slide-image-wrapper::after { background: linear-gradient(to bottom, transparent 40%, rgba(10, 10, 10, 0.85)); }
    .slide-content-wrapper { position: absolute; top: auto; bottom: 8%; left: 5%; right: 5%; width: auto; transform: none; padding: 2rem 1.8rem; text-align: center; }
    .slide-content-wrapper::before { display: none; }
    .slider-arrow { width: 44px; height: 44px; bottom: 50%; }
    .slider-arrow.prev { left: 3%; }
    .slider-arrow.next { right: 3%; }
    
    .car-listings-index { padding: 3rem 4%; }
    .section-header-index { margin-bottom: 2rem; }
    .section-title-index { font-size: 1.8rem; margin-bottom: 0.7rem; }
    .section-title-index::after { width: 70px; height: 3px; bottom: -8px; }
    .section-subtitle-index { font-size: 0.85rem; margin-top: 1rem; }
    .car-grid-index { grid-template-columns: repeat(2, 1fr); gap: 1.3rem; margin-top: 2rem; }
    .car-image-index { height: 170px; }
    .car-info-index { padding: 1.2rem 1.3rem; }
    .car-title-index { font-size: 1.05rem; }
    .car-specs-index { padding: 0.8rem 0.9rem; }
    .spec-icon-index { font-size: 0.95rem; }
    .spec-value-index { font-size: 0.8rem; }
    .spec-label-index { font-size: 0.65rem; }
    .car-price-index { font-size: 1.25rem; }
    .favorite-btn-index { width: 34px; height: 34px; }
    .favorite-btn-index i { font-size: 0.85rem; }
    .car-badge-index { font-size: 0.64rem; padding: 4px 11px; }
    
    .features-section-index { padding: 3rem 4%; }
    .features-grid-index { grid-template-columns: repeat(2, 1fr); gap: 1.3rem; margin-top: 2rem; }
    .feature-card-index { padding: 1.5rem 1.3rem; }
    .feature-icon-index { width: 68px; height: 68px; font-size: 1.7rem; margin-bottom: 1.2rem; }
    .feature-title-index { font-size: 1.05rem; margin-bottom: 0.6rem; }
    .feature-description-index { font-size: 0.8rem; }
    
    .stats-section-index { padding: 2.3rem 4%; }
    .stats-container-index { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .stat-number-index { font-size: 1.9rem; }
    .stat-label-index { font-size: 0.82rem; }
    
    .newsletter-section-index { padding: 2.2rem 4%; }
    .newsletter-container-index { padding: 1.3rem 1.4rem; border-radius: 16px; }
    .newsletter-title-index { font-size: 1.25rem; margin-bottom: 0.3rem; }
    .newsletter-form-index { flex-direction: column; gap: 0.6rem; margin-top: 0.9rem; }
    .newsletter-input-index { width: 100%; padding: 9px 15px; font-size: 0.82rem; }
    .newsletter-btn-index { width: 100%; padding: 9px 20px; font-size: 0.82rem; }
    
    .index-page-view-all-cars { justify-content: center; padding: 1rem 4%; }
    .index-page-view-all-cars-link { font-size: 0.85rem; padding: 0.8rem 1.7rem; }
}

@media (max-width: 575px) {
    .hero-slider-index { height: 70vh; min-height: 520px; }
    .slide-image-wrapper { height: 52%; }
    .slide-content-wrapper { padding: 1.8rem 1.5rem; bottom: 6%; }
    .slide-title { font-size: 1.7rem; margin-bottom: 1rem; }
    .slide-subtitle { font-size: 0.85rem; margin-bottom: 1.3rem; }
    .slide-cta { padding: 11px 22px; font-size: 0.82rem; }
    
    .car-listings-index { padding: 2.5rem 4%; }
    .car-grid-index { grid-template-columns: 1fr; gap: 1.5rem; }
    .car-image-index { height: 200px; }
    .car-info-index { padding: 1.3rem 1.4rem; }
    .car-title-index { font-size: 1.1rem; }
    .car-price-index { font-size: 1.35rem; }
    
    .features-section-index { padding: 2.5rem 4%; }
    .features-grid-index { grid-template-columns: 1fr; gap: 1.3rem; }
    .feature-card-index { padding: 1.8rem 1.5rem; }
    .feature-icon-index { width: 70px; height: 70px; font-size: 1.75rem; }
    .feature-title-index { font-size: 1.1rem; }
    .feature-description-index { font-size: 0.82rem; }
    
    .stats-section-index { padding: 2rem 4%; }
    .stats-container-index { gap: 1.3rem; }
    .stat-number-index { font-size: 1.7rem; margin-bottom: 0.3rem; }
    .stat-label-index { font-size: 0.75rem; }
    
    .newsletter-section-index { padding: 2rem 4%; }
    .newsletter-container-index { padding: 1.2rem 1.2rem; }
    .newsletter-title-index { font-size: 1.15rem; }
    .newsletter-input-index { padding: 9px 14px; font-size: 0.8rem; }
    .newsletter-btn-index { padding: 9px 18px; font-size: 0.8rem; }
}

@media (max-width: 400px) {
    .car-image-index { height: 185px; }
    .favorite-btn-index { width: 32px; height: 32px; }
    .favorite-btn-index i { font-size: 0.8rem; }
    .car-badge-index { font-size: 0.6rem; padding: 3px 10px; }
    .feature-icon-index { width: 65px; height: 65px; font-size: 1.65rem; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition-duration: 0.01ms !important; }
}