@media (max-width: 849px) {
    body {
        padding-bottom: 70px;
    }

    .ann-mobile-bottom-menu {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9999;
        display: flex;
        background: #fff;
        border-top: 1px solid #e5e5e5;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, .08);
        padding-bottom: env(safe-area-inset-bottom);
    }

    .ann-mobile-bottom-menu .ann-bottom-item {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        color: #444;
        text-decoration: none;
        font-size: 12px;
        line-height: 1.2;
        background: #fff;
    }

    .ann-mobile-bottom-menu .ann-bottom-item:hover,
    .ann-mobile-bottom-menu .ann-bottom-item:focus,
    .ann-mobile-bottom-menu .ann-bottom-item:active {
        color: #f68b1e;
        text-decoration: none;
    }

    .ann-mobile-bottom-menu .ann-icon {
        width: 22px;
        height: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ann-mobile-bottom-menu .ann-icon svg {
        width: 22px;
        height: 22px;
        display: block;
    }

    .ann-mobile-bottom-menu .ann-label {
        font-weight: 500;
        white-space: nowrap;
    }

    .ann-cart-icon {
        position: relative;
    }

    .ann-cart-count {
        position: absolute;
        top: -4px;
        right: -6px;
        min-width: 16px;
        height: 16px;
        padding: 0 4px;
        border-radius: 999px;
        background: #f68b1e;
        color: #fff;
        font-size: 10px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }

    .ann-cart-count:empty {
        display: none;
    }

    .ann-contact-wrap {
        position: relative;
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: stretch;
        background: #fff;
    }

    .ann-contact-toggle {
        appearance: none;
        -webkit-appearance: none;
        width: 100%;
        min-width: 0;
        border: 0;
        border-radius: 0;
        background: #fff;
        margin: 0;
        padding: 8px 4px;
        display: flex;
        flex: 1;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        color: #444;
        font-size: 12px;
        line-height: 1.2;
        text-decoration: none;
        box-shadow: none;
        cursor: pointer;
    }

    .ann-contact-toggle:hover,
    .ann-contact-toggle:focus,
    .ann-contact-toggle:active {
        color: #f68b1e;
        background: #fff;
        text-decoration: none;
        outline: none;
        box-shadow: none;
    }

    .ann-contact-toggle .ann-icon {
        width: 22px;
        height: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ann-contact-toggle .ann-icon svg {
        width: 22px;
        height: 22px;
        display: block;
    }

    .ann-contact-toggle .ann-label {
        text-transform: none;
    }

    .ann-contact-wrap.is-open .ann-contact-toggle {
        color: #f68b1e;
    }

    .ann-contact-popover {
        position: absolute;
        left: 50%;
        bottom: 100%;
        transform: translateX(-50%);
        width: 200px;
        height: 150px;
        background: #fff;
        border-radius: 14px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        padding: 12px 12px 10px;
        margin-bottom: 12px;
        display: none;
        z-index: 100001;
        text-align: left;
        overflow: visible;
    }

    .ann-contact-popover::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -8px;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 9px solid transparent;
        border-right: 9px solid transparent;
        border-top: 9px solid #fff;
        z-index: 2;
    }

    .ann-contact-wrap.is-open .ann-contact-popover {
        display: block;
    }
}

@media (min-width: 850px) {
    .ann-mobile-bottom-menu {
        display: none !important;
    }
}
