/* Mobile Language Switcher Fix - Consolidated into main styles.css */
/* This file now serves as a fallback for legacy compatibility */
/* All mobile navigation fixes have been moved to the main styles.css file */

/* Fallback styles for browsers that might not load the main CSS */
@media (max-width: 767.98px) {
    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-width: 44px;
        min-height: 44px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
        position: relative;
    }
    
    .menu-toggle span {
        display: block;
        height: 3px;
        width: 25px;
        background-color: var(--primary-color);
        border-radius: 3px;
        transition: all 0.3s ease;
        margin: 2px 0;
    }
}