/*
 * Copyright (c) 1994-2026 Global Web Limited. All rights reserved.
 * GLOBAL WEB LIMITED PROPRIETARY/CONFIDENTIAL.
 * Use is subject to license terms.
 */

.room-booking-hero img {
    aspect-ratio: 6 / 4;
    object-fit: cover;
    width: 100%;
}

.room-booking-kicker {
    color: #6a3b20;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.room-booking-panel {
    background: #fff;
    border: 1px solid #ded8d2;
    border-radius: 1rem;
    box-shadow: 0 .4rem 1.4rem rgba(52, 38, 28, .07);
    padding: clamp(1.25rem, 3vw, 2rem);
}

.room-package-card {
    background: #f7f2ec;
    border: 1px solid #decbb9;
    border-radius: .75rem;
    padding: 1rem;
}

.room-booking-progress ol {
    display: grid;
    gap: .5rem;
    grid-template-columns: repeat(4, 1fr);
    list-style: none;
    margin: 0;
    padding: 0;
}

.room-booking-progress li {
    border-bottom: .3rem solid #d8d8d8;
    color: #666;
    font-size: .85rem;
    padding: .35rem;
    text-align: center;
}

.room-booking-progress li.active {
    border-color: #8a4f2b;
    color: #4f2c19;
    font-weight: 700;
}

.room-booking-total-bar {
    align-items: center;
    background: #4f2c19;
    border-radius: .9rem;
    bottom: max(1rem, env(safe-area-inset-bottom));
    box-shadow: 0 .75rem 2.2rem rgba(79, 44, 25, .3);
    color: #fff;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    left: 50%;
    padding: 1rem 1.2rem;
    position: fixed;
    transform: translateX(-50%);
    width: min(calc(100% - 2rem), 80rem);
    z-index: 1030;
}

.room-booking-total-bar > div {
    display: flex;
    flex-direction: column;
}

#room-booking-estimate {
    color: #ffe3a2;
    font-size: 1.65rem;
}

#reserve-room:disabled {
    background-color: #d3d3d3;
    border-color: #d3d3d3;
    color: #6c757d;
    opacity: 1;
}

@media (max-width: 576px) {
    .room-booking-progress li {
        font-size: .72rem;
        padding-inline: 0;
    }

    .room-booking-total-bar {
        align-items: stretch;
        bottom: max(.5rem, env(safe-area-inset-bottom));
        flex-direction: column;
        width: calc(100% - 1rem);
    }
}
