@media (max-width: 991px) {
    /* Hide original menu items on mobile, keep #menu-main-menu visible for toggle */
    #menu-main-menu > .menu__item {
        display: none !important;
    }
    /* Hide menu-right (promo images) on mobile */
    .menu-right {
        display: none !important;
    }
    /* Slide menu container */
    .slide-menu {
        overflow: hidden;
        position: relative;
    }
    .sm-panels {
        position: relative;
        overflow: hidden;
        transition: height 0.3s ease;
    }
    .sm-panel {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }
    .sm-panel.sm-active {
        transform: translateX(0);
    }
    .sm-panel.sm-left {
        transform: translateX(-100%);
    }
    /* Menu items */
    .sm-item {
        display: flex;
        align-items: stretch;
    }
    .sm-item .sm-link {
        flex: 1;
        display: flex;
        padding: 12px 15px;
        text-decoration: none;
        min-height: 44px;
        box-sizing: border-box;
        align-items: center;
        color: #fff;
        gap: 10px;
    }
    .sm-link .menuItem__thumb {
        width: 50px;
        height: 50px;
        object-fit: contain;
        flex-shrink: 0;
    }
    /* Drill-down arrow */
    .sm-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        cursor: pointer;
        flex-shrink: 0;
        color: #fff;
    }
    .sm-arrow::after {
        content: '';
        display: block;
        width: 8px;
        height: 8px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(-45deg);
    }
    /* Back button */
    .sm-back {
        display: flex;
        align-items: center;
        padding: 12px 15px;
        cursor: pointer;
        font-weight: 600;
        min-height: 44px;
        box-sizing: border-box;
        color: #fff;
    }
    .sm-back::before {
        content: '';
        display: inline-block;
        width: 8px;
        height: 8px;
        border-left: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg);
        margin-right: 10px;
        flex-shrink: 0;
    }
    /* Brand grid inside slide panel */
    .sm-panel .brand-grid {
        list-style: none;
        margin: 0;
        padding: 10px 15px;
    }
    .sm-panel .brand-grid li {
        padding: 5px 0;
    }
    .sm-panel .text-center {
        padding: 10px 15px;
    }
}
@media (min-width: 992px) {
    .slide-menu {
        display: none !important;
    }
    .menuItem__thumb {
        display: none !important;
    }
}