.car-comparison-section {
    background: white;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 368px);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    justify-content: center;
}

/* Add Car Slot */
.add-car-slot {
    background: white;
    border: 3px dashed #E5E7EB;
    border-radius: 20px;
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 368px;
    height: auto;
    min-height: 400px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-car-slot:hover {
    border-color: #1A3263;
    background: #F9FAFB;
}

.add-car-content {
    text-align: center;
}

.add-car-icon {
    width: 80px;
    height: 80px;
    background: #E5E7EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.add-car-slot:hover .add-car-icon {
    background: #1A3263;
    color: white;
}

.add-car-icon i {
    font-size: 2rem;
    color: #6B7280;
}

.add-car-slot:hover .add-car-icon i {
    color: white;
}

.add-car-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1A3263;
}

/* Car Comparison Card */
.car-comparison-card {
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 368px;
    height: auto;
}

.car-comparison-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

/* Image Section */
.comparison-card-image-section {
    position: relative;
    background: #EEF2F7;
    padding: 2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
}

.year-badge-left {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #1A3263;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.comparison-main-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: contain;
}

.change-car-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: #FFF1C2;
    color: #1A3263;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.change-car-badge:hover {
    background: #FFE89C;
}

.change-car-badge i {
    font-size: 0.75rem;
}

/* Title Section */
.comparison-card-title {
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #E5E7EB;
}

.remove-btn-left {
    background: transparent;
    border: none;
    color: #EF4444;
    font-size: 1.125rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    order: 2;
}

.remove-btn-left:hover {
    color: #DC2626;
    transform: scale(1.1);
}

.comparison-car-title {
    font-size: 1.125rem;
    font-weight: 800;
    color: #1A3263;
    flex: 1;
    text-align: right;
    order: 1;
}

/* Price Grid */
.comparison-price-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    padding: 1.5rem;
    align-items: center;
}

.comparison-price-col {
    text-align: center;
}

.comparison-price-label {
    font-size: 0.75rem;
    color: #6B7280;
    margin-bottom: 0.5rem;
}

.comparison-price-amount {
    font-size: 1.125rem;
    font-weight: 800;
    color: #FDB913;
    margin-bottom: 0.25rem;
}

.comparison-price-strike {
    font-size: 0.75rem;
    color: #9CA3AF;
    text-decoration: line-through;
}

.comparison-price-note {
    font-size: 0.75rem;
    color: #9CA3AF;
}

.comparison-price-divider {
    width: 2px;
    height: 60px;
    background: #E5E7EB;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }

    .car-comparison-card,
    .add-car-slot {
        width: 100%;
        height: auto;
        min-height: 450px;
    }

    .comparison-card-image-section {
        padding: 2rem 1.5rem;
        min-height: 220px;
    }

    .comparison-main-image {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .car-comparison-card,
    .add-car-slot {
        width: 100%;
        height: auto;
        min-height: 400px;
    }

    .add-car-slot {
        padding: 2rem 1.5rem;
    }

    .add-car-icon {
        width: 60px;
        height: 60px;
    }

    .add-car-icon i {
        font-size: 1.5rem;
    }

    .add-car-text {
        font-size: 1rem;
    }

    .comparison-card-image-section {
        padding: 1.5rem 1rem;
        min-height: 200px;
    }

    .comparison-main-image {
        max-width: 200px;
    }

    .year-badge-left {
        padding: 0.4rem 1rem;
        font-size: 0.7rem;
    }

    .change-car-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }

    .comparison-car-title {
        font-size: 1rem;
    }

    .comparison-price-grid {
        padding: 1rem;
        gap: 0.75rem;
    }

    .comparison-price-amount {
        font-size: 1rem;
    }

    .comparison-price-divider {
        height: 50px;
    }
}