.booking-cta {
    position: fixed;
    bottom: 0;
    left: 50%;
    z-index: 60;
    width: min(100%, 720px);
    padding: 0 0 env(safe-area-inset-bottom);
    transform: translateX(-50%);
    pointer-events: none;
}

.booking-cta-bar {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 40px;
    align-items: center;
    height: 42px;
    padding: 0 4px;
    border-radius: 0 0 22px 22px;
    background: linear-gradient(135deg, #13233c, #071326);
    color: #fff;
    box-shadow: 0 -5px 18px rgba(15, 23, 42, .2);
    pointer-events: auto;
}

.booking-cta-bar::before {
    content: "";
}

.booking-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 0;
    padding: 8px 2px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
}

.booking-cta a > span {
    font-size: 17px;
}

.booking-cta a strong {
    overflow: hidden;
    font-size: clamp(16px, 4.4vw, 19px);
    font-weight: 800;
    letter-spacing: -.035em;
    text-overflow: ellipsis;
}

.booking-cta-share {
    display: grid;
    width: 32px;
    height: 32px;
    padding: 0;
    place-items: center;
    justify-self: end;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, .045);
    cursor: pointer;
}

.booking-cta-share svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.booking-cta--dual .booking-cta-bar {
    grid-template-columns: 1fr 1fr;
    width: 80%;
    margin: 0 auto;
    height: auto;
    min-height: 64px;
    padding: 10px 19px;
    border-radius: 0;
    background: #fefcf7;
    box-shadow: 0 -1px 0 #e6e1d3, 0 -8px 24px rgba(34, 34, 34, .06);
    gap: 20px;
}

.booking-cta--dual .booking-cta-bar::before {
    display: none;
}

.booking-cta--dual a {
    width: 100%;
    min-width: 0;
    display: flex;
    color: inherit;
}

.booking-cta--room-guide .booking-cta-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: auto;
    min-height: 56px;
    padding: 8px 12px;
    border-radius: 0;
    background: #fefcf7;
    color: #2a2118;
    box-shadow: 0 -1px 0 #e6e1d3, 0 -8px 24px rgba(34, 34, 34, .06);
}

.booking-cta--room-guide .booking-cta-bar::before { display: none; }

.booking-cta--room-guide .booking-cta-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 22px;
    border-radius: 999px;
    background: #5a3e2b;
    color: #fefcf7;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}
