.cms-booking-cta {
    position: fixed;
    right: max(20px, env(safe-area-inset-right));
    bottom: max(22px, env(safe-area-inset-bottom));
    z-index: 70;
    pointer-events: auto;
}

.cms-booking-cta::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    width: 100%;
    height: 14px;
    content: "";
}

.cms-booking-cta__panel {
    position: absolute;
    right: 0;
    bottom: calc(100% + 12px);
    box-sizing: border-box;
    width: min(310px, calc(100vw - 40px));
    padding: 18px 20px;
    border: 1px solid rgba(214, 184, 170, 0.56);
    border-radius: 18px;
    background: rgba(255, 253, 250, 0.97);
    color: #4f413a;
    box-shadow: 0 22px 54px rgba(79, 65, 58, 0.18), 0 6px 18px rgba(159, 95, 74, 0.11);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.cms-booking-cta:hover .cms-booking-cta__panel,
.cms-booking-cta:focus-within .cms-booking-cta__panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.cms-booking-cta__panel-title {
    display: block;
    margin: 0 0 10px;
    color: #332822;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.28rem;
    font-weight: 600;
    line-height: 1.12;
}

.cms-booking-cta__panel-list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cms-booking-cta__panel-list li {
    position: relative;
    padding-left: 18px;
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.45;
}

.cms-booking-cta__panel-list li::before {
    position: absolute;
    top: 0.62em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #9f5f4a;
    content: "";
}

.cms-booking-cta .cms-booking-cta__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-width: 184px;
    min-height: 58px;
    padding: 9px 24px 10px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    background: linear-gradient(135deg, #8c776d 0%, #9f5f4a 58%, #6d4638 100%);
    color: #fffdfa;
    font-family: "Montserrat", system-ui, sans-serif;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 18px 42px rgba(79, 65, 58, 0.24), 0 6px 16px rgba(159, 95, 74, 0.2);
    pointer-events: auto;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.cms-booking-cta .cms-booking-cta__link:hover,
.cms-booking-cta .cms-booking-cta__link:focus-visible {
    color: #fffdfa;
    background: linear-gradient(135deg, #6d4638 0%, #9f5f4a 62%, #4f342b 100%);
    box-shadow: 0 22px 48px rgba(79, 65, 58, 0.3), 0 8px 18px rgba(159, 95, 74, 0.24);
    transform: translateY(-2px);
}

.cms-booking-cta .cms-booking-cta__link:focus-visible {
    outline: 3px solid rgba(159, 95, 74, 0.34);
    outline-offset: 5px;
}

.cms-booking-cta__label {
    display: block;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    line-height: 1.2;
    text-transform: uppercase;
}

.cms-booking-cta__hint {
    display: block;
    margin-top: 2px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.1;
}

body:has(.cms-booking-cta) .cms-public-footer {
    padding-bottom: calc(84px + env(safe-area-inset-bottom));
}

@media (prefers-reduced-motion: reduce) {
    .cms-booking-cta__panel,
    .cms-booking-cta .cms-booking-cta__link {
        transition-duration: 0.01ms;
    }
}

@media (max-width: 720px) {
    .cms-booking-cta::before,
    .cms-booking-cta__panel {
        display: none;
    }
}

@media (max-width: 620px) {
    .cms-booking-cta {
        right: 14px;
        bottom: max(12px, env(safe-area-inset-bottom));
        left: 14px;
    }

    .cms-booking-cta .cms-booking-cta__link {
        width: 100%;
        min-width: 0;
        min-height: 54px;
        box-sizing: border-box;
        padding: 8px 18px 9px;
    }

    body:has(.cms-booking-cta) .cms-public-footer {
        padding-bottom: calc(96px + env(safe-area-inset-bottom));
    }
}
