/* ============================================================================
   HOTELS - Styles complémentaires au template DreamsTour
   ============================================================================ */

/* Quick View Modal */
.hotel-quickview .modal-dialog {
    max-width: 820px;
}
.hotel-quickview .modal-content {
    border: none;
    border-radius: 10px;
    overflow: hidden;
}
.hotel-quickview .modal-body {
    max-height: 80vh;
    overflow-y: auto;
}
.hotel-qv-slider {
    position: relative;
}
.hotel-qv-slider img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}
.hotel-qv-thumbs {
    display: flex;
    gap: 8px;
    padding: 12px 20px;
    overflow-x: auto;
}
.hotel-qv-thumbs img {
    width: 80px;
    height: 56px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
    flex-shrink: 0;
}
.hotel-qv-thumbs img:hover,
.hotel-qv-thumbs img.active {
    border-color: var(--bs-primary, #0d6efd);
}
.hotel-qv-section {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
}
.hotel-qv-section:last-child {
    border-bottom: none;
}
.hotel-qv-footer {
    padding: 16px 20px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

/* Room details in quick view */
.hotel-qv-room {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 10px;
}
.hotel-qv-room:last-child {
    margin-bottom: 0;
}

@media (max-width: 575.98px) {
    .hotel-quickview .modal-dialog {
        margin: 8px;
    }
    .hotel-qv-slider img {
        height: 200px;
    }
    .hotel-qv-footer {
        flex-direction: column;
        text-align: center;
    }
    .hotel-qv-footer .btn {
        width: 100%;
    }
}
@media (min-width: 576px) and (max-width: 991.98px) {
    .hotel-qv-slider img {
        height: 260px;
    }
}
