/**
 * Мобильное меню - всплывающая панель справа
 * ===========================================
 */

/* Кнопка гамбургер-меню */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 8px;
    right: 20px;
    z-index: 9998;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: 0.3s;
}

/* Оверлей (затемнение фона) */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Панель меню справа */
.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100%;
    background-color: white;
    z-index: 10000;
    transition: right 0.3s;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-menu-panel.active {
    right: 0;
}

/* Кнопка закрытия */
.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #333;
    padding: 5px;
    line-height: 1;
}

/* Содержимое меню */
.mobile-menu-content {
    padding: 60px 0 20px;
}

/* Кнопка Заказать звонок в меню */
.mobile-menu-callback {
    display: block;
    width: calc(100% - 40px);
    margin: 20px auto;
    padding: 15px 20px;
    background: linear-gradient(135deg, #e63946 0%, #ff6b35 100%);
    color: white !important;
    text-align: center;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.mobile-menu-callback:hover {
    background: linear-gradient(135deg, #d62839 0%, #e65a2a 100%);
    color: white !important;
}

/* Пункты меню - КНОПКИ НА ВСЮ ШИРИНУ */
.mobile-menu-item {
    display: block;
    width: 100%;
    padding: 18px 20px;
    margin: 0;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: background-color 0.3s;
    border: none;
    background: white;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-item:hover,
.mobile-menu-item.active {
    background-color: #ff5722;
    color: white;
}

/* Подменю */
.mobile-submenu {
    display: none;
    background-color: #f9f9f9;
}

.mobile-submenu.active {
    display: block;
}

.mobile-submenu a {
    display: block;
    width: 100%;
    padding: 15px 30px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-submenu a:hover {
    background-color: #ff5722;
    color: white;
}

/* Стрелка для подменю */
.mobile-menu-item.has-submenu::after {
    content: ' ▼';
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s;
}

.mobile-menu-item.has-submenu.open::after {
    transform: rotate(180deg);
}

/* Показывать только на мобильных */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Скрываем десктопное меню */
    .desktop-nav {
        display: none !important;
    }
    
    /* Скрываем стандартный burger когда есть mobile-menu-toggle */
    .burger {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .mobile-menu-toggle,
    .mobile-menu-overlay,
    .mobile-menu-panel {
        display: none !important;
    }
}
