/* Palazzio Car Rental — styles de secours pour le shortcode [palazzio_fleet]
   Si votre thème définit déjà .filter-bar / .fleet-card / .favorite-btn / .btn-compare,
   ces règles ne font que compléter (variables --gold etc. héritées du thème). */

.pcr-fleet-wrap { --pcr-gold: var(--gold, #D4AF37); }

.pcr-filter-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}
.pcr-fleet-wrap .filter-btn {
    background: transparent;
    border: 2px solid #ddd;
    color: inherit;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.pcr-fleet-wrap .filter-btn.active,
.pcr-fleet-wrap .filter-btn:hover {
    background: var(--pcr-gold);
    border-color: var(--pcr-gold);
    color: #fff;
}

.pcr-fleet-wrap .fleet-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.4s;
    position: relative;
}
.pcr-fleet-wrap .fleet-card:hover { transform: translateY(-10px); }
.pcr-fleet-wrap .fleet-card-img { position: relative; height: 250px; overflow: hidden; }
.pcr-fleet-wrap .fleet-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.pcr-fleet-wrap .fleet-card:hover .fleet-card-img img { transform: scale(1.1); }

.pcr-fleet-wrap .favorite-btn {
    position: absolute; top: 15px; right: 15px;
    background: rgba(255,255,255,0.9);
    border: none; width: 35px; height: 35px; border-radius: 50%;
    color: var(--pcr-gold); cursor: pointer; transition: all 0.3s; z-index: 2;
}
.pcr-fleet-wrap .favorite-btn.active { background: var(--pcr-gold); color: #fff; }

.pcr-fleet-wrap .fleet-card-body { padding: 25px; }
.pcr-fleet-wrap .fleet-price { font-size: 1.5rem; font-weight: 700; color: var(--pcr-gold); }
.pcr-fleet-wrap .pcr-specs { font-size: 0.8rem; color: #6c757d; }

.pcr-fleet-wrap .btn-compare {
    background: transparent; border: 1px solid var(--pcr-gold); color: var(--pcr-gold);
    font-size: 0.75rem; padding: 5px 10px; border-radius: 20px; transition: all 0.3s;
}
.pcr-fleet-wrap .btn-compare:hover, .pcr-fleet-wrap .btn-compare.active { background: var(--pcr-gold); color: #fff; }

.pcr-fleet-wrap .pcr-reserve-btn {
    display: block; text-align: center; text-decoration: none;
    background: var(--pcr-gold); color: #fff; border-radius: 30px;
}

.pcr-compare-bar {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: var(--pcr-gold); padding: 15px 20px; z-index: 1000;
    display: none; box-shadow: 0 -5px 20px rgba(0,0,0,0.2); color: #fff;
}
.pcr-compare-bar.show { display: block; }
