.sticky-menu-mobile {
    display: none !important;
}

@media (max-width: 1199.98px) {
    body:has(.sticky-menu-mobile) {
        /* padding-bottom: calc(96px + env(safe-area-inset-bottom)); */
    }

    .sticky-menu-mobile {
        position: fixed;
        right: 14px;
        bottom: calc(12px + env(safe-area-inset-bottom));
        left: 14px;
        z-index: 990;
        display: block !important;
        width: auto;
        max-width: 460px;
        margin: 0 auto;
        padding: 8px 9px;
        background: #2d8abb;
        border: 1px solid rgba(28, 43, 74, 0.1);
        border-radius: 24px;
        box-shadow: 0 16px 45px rgba(28, 43, 74, 0.2), 0 2px 8px rgba(28, 43, 74, 0.08);
        transform: none;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .sticky-menu-mobile ul {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(0, 1fr);
        align-items: center;
        gap: 6px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .sticky-menu-mobile__item {
        min-width: 0;
        padding: 0;
    }

    .sticky-menu-mobile a {
        display: flex;
        min-width: 0;
        min-height: 62px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        /* padding: 8px 6px; */
        color: #5d6578;
        text-decoration: none;
        border-radius: 18px;
        transition: color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
        -webkit-tap-highlight-color: transparent;
    }

    /* .sticky-menu-mobile a:hover,
    .sticky-menu-mobile a:focus,
    .sticky-menu-mobile a:active {
        color: #000000;
        background: #e9f8f6;
        box-shadow: inset 0 0 0 1px rgba(5, 122, 115, 0.1);
        transform: translateY(-2px);
    } */

    .sticky-menu-mobile__icon {
        display: inline-flex;
        width: 34px;
        height: 34px;
        align-items: center;
        justify-content: center;
        background: #f1f4f8;
        color: inherit;
        border-radius: 14px;
        box-shadow: inset 0 -1px 0 rgba(28, 43, 74, 0.06);
        transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
    }

    .sticky-menu-mobile__icon em {
        color: inherit;
        font-size: 22px;
        line-height: 1;
    }

    /* .sticky-menu-mobile a:hover .sticky-menu-mobile__icon,
    .sticky-menu-mobile a:focus .sticky-menu-mobile__icon,
    .sticky-menu-mobile a:active .sticky-menu-mobile__icon {
        background: #d9f1ed;
        box-shadow: none;
    } */

    .sticky-menu-mobile__label {
        display: block;
        max-width: 100%;
        overflow: hidden;
        color: #fff;
        font-size: 11.5px;
        font-weight: 800;
        line-height: 1.1;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .sticky-menu-mobile__item--primary a {
        color: #fff;
        background: linear-gradient(135deg, #0b7f72, #0d5f9f);
        box-shadow: 0 10px 24px rgba(13, 95, 159, 0.28);
    }

    .sticky-menu-mobile__item--primary .sticky-menu-mobile__icon {
        background: rgba(255, 255, 255, 0.18);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
    }

    /* .sticky-menu-mobile__item--primary a:hover,
    .sticky-menu-mobile__item--primary a:focus,
    .sticky-menu-mobile__item--primary a:active {
        color: #fff;
        background: linear-gradient(135deg, #096d63, #0a528a);
        box-shadow: 0 12px 28px rgba(13, 95, 159, 0.34);
    } */

    /* .sticky-menu-mobile__item--primary a:hover .sticky-menu-mobile__icon,
    .sticky-menu-mobile__item--primary a:focus .sticky-menu-mobile__icon,
    .sticky-menu-mobile__item--primary a:active .sticky-menu-mobile__icon {
        background: rgba(255, 255, 255, 0.24);
    } */
}

@media (max-width: 360px) {
    .sticky-menu-mobile {
        right: 8px;
        left: 8px;
        padding: 7px;
        border-radius: 20px;
    }

    .sticky-menu-mobile ul {
        gap: 4px;
    }

    .sticky-menu-mobile a {
        min-height: 58px;
        padding-right: 4px;
        padding-left: 4px;
    }

    .sticky-menu-mobile__icon {
        width: 31px;
        height: 31px;
    }

    .sticky-menu-mobile__label {
        font-size: 10.5px;
    }
}

@media (min-width: 1200px) {
    .sticky-menu-mobile {
        display: none !important;
    }
}
