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

@media (max-width: 760px) {
    html {
        scroll-padding-bottom:
            calc(
                76px
                + env(safe-area-inset-bottom)
            );
    }

    body {
        padding-bottom:
            calc(
                76px
                + env(safe-area-inset-bottom)
            );
    }

    .mobile-action-bar {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 9990;
        display: block;
        padding:
            8px
            10px
            calc(
                8px
                + env(safe-area-inset-bottom)
            );
        border-top:
            1px solid
            color-mix(
                in srgb,
                var(--site-border, #2a313d) 88%,
                transparent
            );
        background:
            color-mix(
                in srgb,
                var(--site-background, #090c11) 95%,
                transparent
            );
        box-shadow:
            0 -12px 32px rgba(0, 0, 0, 0.38);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .mobile-action-bar-inner {
        display: grid;
        gap: 8px;
        width: min(100%, 620px);
        margin: 0 auto;
    }

    .mobile-action-bar-count-1
    .mobile-action-bar-inner {
        grid-template-columns: 1fr;
    }

    .mobile-action-bar-count-2
    .mobile-action-bar-inner {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .mobile-action-button {
        display: flex;
        min-width: 0;
        min-height: 52px;
        align-items: center;
        justify-content: center;
        gap: 9px;
        padding: 7px 13px;
        overflow: hidden;
        border: 1px solid transparent;
        border-radius: 10px;
        color: #ffffff;
        text-decoration: none;
        box-shadow:
            0 8px 22px rgba(0, 0, 0, 0.2);
        transition:
            filter 150ms ease,
            transform 150ms ease;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-action-button:hover {
        filter: brightness(1.04);
    }

    .mobile-action-button:active {
        transform: scale(0.975);
    }

    .mobile-action-button-phone {
        color: #07101c;
        background:
            var(--site-primary, #f5a623);
    }

    .mobile-action-button-whatsapp {
        color: #ffffff;
        background:
            var(--site-whatsapp, #25d366);
    }

    .mobile-action-icon {
        display: grid;
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
        place-items: center;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.16);
    }

    .mobile-action-button-phone
    .mobile-action-icon {
        background: rgba(7, 16, 28, 0.1);
    }

    .mobile-action-icon svg {
        display: block;
        width: 18px;
        height: 18px;
    }

    .mobile-action-copy {
        display: grid;
        min-width: 0;
        gap: 2px;
        line-height: 1.05;
        text-align: left;
    }

    .mobile-action-copy small {
        overflow: hidden;
        opacity: 0.76;
        font-size: 7px;
        font-weight: 800;
        letter-spacing: 0.05em;
        text-overflow: ellipsis;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .mobile-action-copy strong {
        overflow: hidden;
        font-size: 12px;
        font-weight: 900;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mobile-action-bar-count-1
    .mobile-action-button {
        width: 100%;
    }

    .mobile-action-bar-count-1
    .mobile-action-copy {
        text-align: center;
    }
}

@media (max-width: 390px) {
    .mobile-action-bar {
        padding-right: 7px;
        padding-left: 7px;
    }

    .mobile-action-button {
        gap: 7px;
        padding-right: 9px;
        padding-left: 9px;
    }

    .mobile-action-icon {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    .mobile-action-copy strong {
        font-size: 11px;
    }
}