.mobile-bottom-bar {
    display: none;
}

@media (max-width: 767px) {
    body {
        padding-bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
    }

    body.is-menu-open {
        padding-bottom: 0;
    }

    .mobile-bottom-bar {
        position: fixed;
        inset-inline: 0;
        bottom: 0;
        z-index: 45;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        background: #fff;
        border-top: 1px solid var(--border);
        box-shadow: 0 -8px 24px -12px rgba(42, 18, 24, 0.18);
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }

    .mobile-bottom-bar__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.25rem;
        min-height: 4.25rem;
        padding: 0.65rem 0.5rem;
        text-decoration: none;
        transition: background-color 0.2s ease, color 0.2s ease;
    }

    .mobile-bottom-bar__item svg {
        width: 1.25rem;
        height: 1.25rem;
        flex-shrink: 0;
    }

    .mobile-bottom-bar__item span {
        font-size: 0.625rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        line-height: 1;
    }

    .mobile-bottom-bar__item--call {
        color: var(--burgundy);
        background: #fff;
    }

    .mobile-bottom-bar__item--call:active {
        background: var(--cream);
    }

    .mobile-bottom-bar__item--whatsapp {
        color: #fff;
        background: var(--olive);
    }

    .mobile-bottom-bar__item--whatsapp:active {
        background: var(--olive-dark);
    }

    .mobile-bottom-bar__item--book {
        color: #fff;
        background: var(--burgundy);
    }

    .mobile-bottom-bar__item--book:active {
        background: var(--burgundy-dark);
    }

    .floating-cta {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .mobile-bottom-bar {
        display: none !important;
    }
}
