/* Book Now — brand frame around the LimoAnyWhere widget */

.booking-banner.breadcumb-wrapper {
    background-image: var(--booking-banner);
    background-size: cover;
    background-position: center 60%;
    min-height: clamp(160px, 28vw, 280px);
}

.booking-page {
    --booking-ink: #141416;
    --booking-gold: #e8b46f;
    --booking-paper: #f6f5f3;
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(232, 180, 111, 0.12), transparent 55%),
        linear-gradient(180deg, #1a1a1c 0%, var(--booking-ink) 28%, #0e0e10 100%);
    padding-top: clamp(2.5rem, 5vw, 3.75rem);
    padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.booking-page__shell {
    max-width: 920px;
    margin: 0 auto;
    padding: clamp(1.35rem, 3vw, 2rem);
    border-radius: 18px;
    background: var(--booking-paper);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.booking-page__intro {
    margin: 0 0 1.35rem;
    text-align: center;
}

.booking-page__eyebrow {
    display: block;
    margin: 0 0 0.45rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--booking-gold);
}

.booking-page__title {
    margin: 0 0 0.55rem;
    font-family: Newsreader, Georgia, serif;
    font-size: clamp(1.55rem, 2.8vw, 2rem);
    line-height: 1.2;
    color: var(--booking-ink);
}

.booking-page__support {
    margin: 0 auto;
    max-width: 36rem;
    font-size: 0.98rem;
    line-height: 1.5;
    color: rgba(20, 20, 22, 0.72);
}

.booking-page__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin: 1.15rem 0 1.5rem;
}

.booking-page__actions .vs-btn2 {
    min-height: 44px;
}

.booking-page__trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem 1rem;
    margin: 0 0 1.35rem;
    padding: 0;
    list-style: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(20, 20, 22, 0.62);
}

.booking-page__trust li {
    position: relative;
}

.booking-page__trust li:not(:last-child)::after {
    content: "·";
    position: absolute;
    right: -0.65rem;
    color: rgba(20, 20, 22, 0.35);
}

.booking-note {
    margin: 0 0 1.25rem;
    padding: 1rem 1.15rem;
    border-radius: 12px;
    background: var(--booking-ink);
    color: #fff;
    text-align: left;
}

.booking-note__label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--booking-gold);
}

.booking-note__name {
    margin: 0 0 0.4rem;
    font-family: Newsreader, Georgia, serif;
    font-size: 1.25rem;
    line-height: 1.3;
}

.booking-note__help {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.78);
}

.booking-widget {
    position: relative;
    min-height: 420px;
}

.booking-widget-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    padding: 2rem 1rem;
}

.booking-widget-loader__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.15rem;
}

.booking-widget-loader__ring {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 1.5px solid rgba(20, 20, 22, 0.12);
    border-top-color: var(--booking-gold);
    border-right-color: rgba(232, 180, 111, 0.35);
    animation: booking-loader-spin 0.95s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.booking-widget-loader__label {
    margin: 0;
    font-family: Newsreader, Georgia, serif;
    font-size: 1.05rem;
    font-style: italic;
    letter-spacing: 0.01em;
    color: rgba(20, 20, 22, 0.58);
}

@keyframes booking-loader-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .booking-widget-loader__ring {
        animation: none;
        border-color: rgba(232, 180, 111, 0.45);
        border-top-color: var(--booking-gold);
        opacity: 0.85;
    }
}

.booking-widget .ores4iframe {
    border: none;
    border-radius: 12px;
    width: 100%;
}

.booking-widget-timeout {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    min-height: 280px;
    padding: 1.5rem 1rem;
    text-align: center;
    border-radius: 12px;
    background: rgba(20, 20, 22, 0.04);
}

.booking-widget.is-timed-out .booking-widget-loader,
.booking-widget.is-timed-out #bro_reservation {
    display: none !important;
}

.booking-widget.is-timed-out .booking-widget-timeout {
    display: flex;
}

.booking-widget-timeout__title {
    margin: 0;
    font-family: Newsreader, Georgia, serif;
    font-size: 1.35rem;
    line-height: 1.25;
    color: var(--booking-ink);
}

.booking-widget-timeout__text {
    margin: 0;
    max-width: 26rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(20, 20, 22, 0.7);
}

.booking-widget-timeout .vs-btn2 {
    min-height: 44px;
}

.booking-page__fallback {
    margin: 1.25rem 0 0;
    text-align: center;
    font-size: 0.92rem;
    line-height: 1.5;
    color: rgba(20, 20, 22, 0.68);
}

.booking-page__fallback a {
    color: var(--booking-ink);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(232, 180, 111, 0.7);
    text-underline-offset: 0.2em;
}

.booking-page__fallback a:hover {
    color: var(--booking-gold);
    text-decoration-color: var(--booking-gold);
}

@media (max-width: 767px) {
    .booking-page__shell {
        padding: 1.15rem 1rem 1.35rem;
        border-radius: 14px;
    }

    .booking-page__actions .vs-btn2 {
        width: 100%;
        max-width: 22rem;
        justify-content: center;
    }

    .booking-page__trust {
        gap: 0.35rem 0.85rem;
        font-size: 0.78rem;
    }

    .booking-widget,
    .booking-widget-loader {
        min-height: 360px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .booking-page__shell {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    }
}
