/* Mobile Menu Styles - Full Screen */

/* Mobile menu - показываем только на мобильных */
@media (max-width: 768px) {
    /* Скрываем десктопное меню */
    .menu-backdrop,
    .menu-panel {
        display: none !important;
    }
    
    /* Показываем мобильное меню */
    .menu-mobile {
        display: none;
    }
    
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        z-index: 20000;
        overflow-y: auto;
        display: none;
        -webkit-overflow-scrolling: touch;
    }
    
    .menu-overlay.menu-overlay--open {
        display: block;
    }
    
    .menu-overlay.menu-overlay--open .menu-mobile {
        display: block;
    }
    
    /* Блокируем скролл body когда меню открыто */
    body.menu-open {
        overflow: hidden !important;
        position: fixed;
        width: 100%;
        height: 100%;
    }
    
    /* Mobile Menu Container */
    .menu-mobile {
        background: #ffffff;
        min-height: 100vh;
        position: relative;
        padding: 0;
        width: 100%;
    }
    
    /* Logo */
    .menu-mobile__logo {
        width: 112px;
        height: 55.86px;
        position: absolute;
        left: 16px;
        top: 49px;
    }
    
    .menu-mobile__logo img {
        width: 100%;
        height: 100%;
    }
    
    /* Close Button */
    .menu-mobile__close {
        width: 17.07px;
        height: 18.07px;
        position: absolute;
        right: 21px;
        top: 74px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
    }
    
    .menu-mobile__close img {
        width: 100%;
        height: 100%;
    }
    
    /* Menu Items Container */
    .menu-mobile__items {
        position: absolute;
        top: 129px;
        left: 0;
        width: 100%;
    }
    
    /* Menu Item */
    .menu-mobile__item {
        width: 100%;
        position: relative;
        border-top: 1px solid #8c8f96;
        padding: 18px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-decoration: none;
        transition: background 0.2s;
    }
    
    .menu-mobile__item:hover {
        background: #f6f6f7;
    }
    
    .menu-mobile__item-text {
        color: #000000;
        font-family: "Inter", sans-serif;
        font-size: 14px;
        font-weight: 700;
        flex: 1;
    }
    
    .menu-mobile__item--primary .menu-mobile__item-text {
        color: #0fc998;
    }
    
    .menu-mobile__item-icon {
        width: 8px;
        height: auto;
        margin-left: 8px;
    }
    
    /* Personal Cabinet - выделенный зеленый фон */
    .menu-mobile__cabinet {
        background: #0fc998;
        width: 100%;
        height: 64px;
        position: absolute;
        top: 520px;
        left: 0;
        display: flex;
        align-items: center;
        padding: 0 17px;
        text-decoration: none;
        border-top: 1px solid #000000;
        border-bottom: 1px solid #8c8f96;
    }
    
    .menu-mobile__cabinet-text {
        color: #ffffff;
        font-family: "Inter", sans-serif;
        font-size: 14px;
        font-weight: 700;
        flex: 1;
    }
    
    .menu-mobile__cabinet-icon {
        width: 21px;
        height: 24px;
    }
    
    /* Copyright */
    .menu-mobile__copyright {
        width: 100%;
        position: absolute;
        top: 694px;
        left: 17px;
        right: 17px;
    }
    
    .menu-mobile__copyright-text {
        color: #000000;
        font-family: "Inter", sans-serif;
        font-size: 8px;
        line-height: 8px;
        font-weight: 400;
    }
}

/* Desktop: используем стандартное меню */
@media (min-width: 769px) {
    .menu-mobile {
        display: none !important;
    }
}

