/**
 * Header Menu Fix (27.11.2025)
 * Гарантируем видимость меню на десктопе
 */

/* На десктопе (>1200px) меню ВСЕГДА видно */
@media (min-width: 1201px) {
    .bottom-line__list {
        display: flex !important;
        justify-content: center !important;
    }
}

/* На планшетах (768px-1200px) - показываем компактное меню */
@media (min-width: 769px) and (max-width: 1200px) {
    .bottom-line__list {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 5px !important;
    }
    
    .bottom-line__link-text {
        font-size: 12px !important;
    }
    
    .bottom-line__icon {
        width: 16px !important;
        height: 16px !important;
    }
}

/* На мобильных (<768px) - скрываем меню, показываем бургер */
@media (max-width: 768px) {
    .bottom-line__list {
        display: none !important;
    }
}
