.mobile-fixed-menu {
    display: none;
}

@media (max-width: 768px) {
    body .page-footer-cart {
        display: none !important;
    }
    .mobile-fixed-menu {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 100;
        padding: 8px 0;
    }
    
    .mobile-fixed-menu__wrapper {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }
    
    .mobile-fixed-menu__wrapper::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Edge */
    }
    
    .mobile-fixed-menu__item {
        flex: 0 0 33%;
        text-align: center;
        min-width: 70px;
    }
    
    .mobile-fixed-menu__link {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: black;
        font-size: 12px;
        padding: 0 5px;
        position: relative;
    }
    
    .mobile-fixed-menu__icon {
        width: 24px;
        height: 24px;
        margin-bottom: 4px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mobile-fixed-menu__basket-count {
        line-height: 18px;
        position: absolute;
        top: 0;
        right: 31%;
        background: black;
        border-radius: 50%;
        width: 18px;
        height: 18px;
        color: white;
        font-size: 10px;
    }
    
    .mobile-fixed-menu__icon img {
        max-width: 100%;
        max-height: 100%;
    }
    
    .mobile-fixed-menu__text {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
    }
    
    .mobile-fixed-menu__item--active .mobile-fixed-menu__link {
        color: #96e2fe; /* Цвет для активного пункта меню */
    }
    
    /* Добавляем отступ для контента, чтобы он не скрывался за меню */
    body {
        padding-bottom: 60px;
    }
}