/* Fixed dock: Book online (primary) · Call · Email icon — Option A */

:root {
    --parkway-sticky-h: 4.35rem;
}

body.parkway-has-sticky-cta {
    padding-bottom: calc(var(--parkway-sticky-h) + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 992px) {
    body.parkway-has-sticky-cta {
        padding-bottom: calc(5.75rem + env(safe-area-inset-bottom, 0px));
    }
}

.parkway-sticky-cta {
    position: fixed;
    z-index: 100090;
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
    padding: 0.55rem 0.65rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
    margin: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.08);
    flex-wrap: nowrap;
}

.parkway-sticky-cta__book {
    flex: 1 1 auto;
    text-align: center;
    padding-top: 0.65rem !important;
    padding-bottom: 0.65rem !important;
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
}

.parkway-sticky-cta__call {
    flex: 1 1 auto;
    text-align: center;
    padding-top: 0.65rem !important;
    padding-bottom: 0.65rem !important;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
}

.parkway-sticky-cta__tel {
    font-weight: 600;
}

.parkway-sticky-cta__mail {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    min-width: 3rem;
    border-radius: 4px;
    color: #24262d;
    background: rgba(0, 0, 0, 0.06);
    font-size: 1.25rem;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.parkway-sticky-cta__mail:hover,
.parkway-sticky-cta__mail:focus-visible {
    background: rgba(0, 0, 0, 0.1);
    color: #000;
}

@media (min-width: 992px) {
    .parkway-sticky-cta {
        left: auto;
        right: 1.25rem;
        bottom: 1.25rem;
        width: auto;
        max-width: min(420px, calc(100vw - 2.5rem));
        padding: 0.65rem 0.85rem;
        padding-bottom: 0.65rem;
        border-radius: 12px;
        border: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    }

    .parkway-sticky-cta__book,
    .parkway-sticky-cta__call {
        font-size: 0.85rem;
    }
}

@media (max-width: 380px) {
    .parkway-sticky-cta__tel {
        display: none;
    }

    .parkway-sticky-cta__call span:first-child {
        margin-right: 0;
    }
}
