/* =========================================================
   XPLORE MOTORCYCLES — RENTALS
   Page-specific styles. Shared layout lives in base.css.
   ========================================================= */

/* CRITICAL RESET: Garante as fontes oficiais da marca sem interferência do WordPress */
.xplore-rentals-hub-wrapper,
.xplore-rentals-hub-wrapper * {
    font-family: 'Montserrat', 'Inter', sans-serif !important;
}

.xplore-rentals-hub-wrapper {
    overflow: visible !important;
    transform: none !important;
    contain: none !important;
}

/* CITY RENTAL CARDS GRID */
.city-rentals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: left;
}

.city-rental-card {
    background-color: #161616;
    border: 1px solid #252525;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
}

.city-rental-card:hover {
    border-color: #A38A5F;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.city-rental-img {
    width: 100%;
    height: 210px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.city-rental-card:hover .city-rental-img {
    transform: scale(1.05);
}

/* REVIEWS CAROUSEL SLIDE WIDTHS (2 PER VIEW DESKTOP) */
.review-slide {
    flex: 0 0 calc(50% - 15px); width: calc(50% - 15px);
}

@media (max-width: 1100px) {
    .city-rentals-grid {
        grid-template-columns: repeat(2, 1fr) !important; gap: 25px !important;
    }
}

@media (max-width: 991px) {
    .city-rentals-grid,
    .xplore-pillars-grid,
    .steps-grid {
        grid-template-columns: 1fr !important;
    }

    .review-slide {
        flex: 0 0 100%; width: 100%;
    }

    #prevBtn,
    #nextBtn {
        display: none;
    }
}
