/* Compare Page */
.compare-page {
    padding: 100px 0;
    background: #111;
}

/* Empty State */
.no-compare {
    background: #161616;
    border: 1px solid #222;
    border-radius: 18px;
    padding: 60px;
    text-align: center;
    max-width: 700px;
    margin: auto;
}

.no-compare h2 {
    font-size: 42px;
    margin-bottom: 18px;
}

.no-compare p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Compare Grid */
.compare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

/* Compare Card */
.compare-card {
    background: #161616;
    border: 1px solid #222;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.35s ease;
}

.compare-card:hover {
    transform: translateY(-8px);
    border-color: #C4622D;
}

.compare-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.compare-card-content {
    padding: 30px;
}

.compare-card h2 {
    font-size: 28px;
    margin-bottom: 18px;
    line-height: 1.2;
}

.compare-price {
    color: #C4622D;
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 24px;
}

/* Specs */
.compare-specs {
    margin-bottom: 30px;
}

.compare-spec {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid #222;
}

.compare-spec strong {
    color: #aaa;
    font-size: 14px;
}

.compare-spec span {
    color: #F5F0E8;
    font-weight: bold;
    text-align: right;
}

/* Buttons */
.compare-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.compare-vehicle-btn {
    background: transparent;
    border: 1px solid #C4622D;
    color: #C4622D;
    padding: 15px 22px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.compare-vehicle-btn:hover {
    background: #C4622D;
    color: white;
}

.compare-vehicle-btn.active {
    background: #C4622D;
    color: white;
}

.remove-compare-btn {
    background: transparent;
    border: 1px solid #444;
    color: #aaa;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.remove-compare-btn:hover {
    border-color: #C4622D;
    color: #C4622D;
}

/* CTA */
.compare-cta {
    padding: 100px 0;
    background:
        radial-gradient(circle at top left, rgba(196,98,45,0.18), transparent 35%),
        #161616;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.compare-cta-inner {
    text-align: center;
    max-width: 850px;
    margin: auto;
}

.compare-cta-inner h2 {
    font-size: 56px;
    margin-bottom: 20px;
}

.compare-cta-inner p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 35px;
    font-size: 18px;
}

.compare-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Responsive */
@media(max-width: 1100px) {

    .compare-grid {
        grid-template-columns: 1fr;
    }

}

@media(max-width: 768px) {

    .no-compare {
        padding: 35px;
    }

    .no-compare h2 {
        font-size: 32px;
    }

    .compare-card h2 {
        font-size: 24px;
    }

    .compare-price {
        font-size: 34px;
    }

    .compare-cta-inner h2 {
        font-size: 38px;
    }

}