@media screen and (max-width: 768px) {
    /* Hide desktop nav links */
    .nav-links {
        display: none !important;
    }
    
    /* Hide desktop language switcher */
    .language-switcher-desktop {
        display: none !important;
    }
    
    /* Show mobile burger button */
    .mobile-only {
        display: block !important;
    }
    
    /* Sidenav menu - SIMPLE BLACK & WHITE */
    .sidenav {
        height: 100vh !important;
        width: 280px;
        position: fixed !important;
        z-index: 1001;
        top: 0 !important;
        right: -280px !important;
        left: auto !important;
        background-color: #ffffff;
        padding-top: 60px;
        transition: right 0.3s ease !important;
        overflow-y: auto !important;
        overflow-x: visible !important;
        border-left: 1px solid #e0e0e0;
    }
    
    /* Active class */
    .sidenav.active {
        right: 0 !important;
        left: auto !important;
    }
    
    /* Sidenav menu links - SIMPLE STYLING */
    .sidenav a {
        padding: 15px 20px;
        text-decoration: none;
        font-size: 16px;
        font-weight: 400;
        color: #333333;
        display: block;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .sidenav a:hover {
        background-color: #f8f8f8;
        color: #000000;
    }
    
    /* CRITICAL: Fix overflow on UL elements */
    .sidenav ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
        overflow: visible !important;
    }
    
    .sidenav > ul {
        overflow: visible !important;
    }
    
    /* Close btn - SIMPLE DESIGN */
    .sidenav .close {
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 30px;
        color: #333333;
        cursor: pointer;
        font-weight: 300;
    }
    
    .sidenav .close:hover {
        color: #000000;
    }
    
    /* Simple burger icon */
    .burger-icon span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #333333;
        margin: 4px 0;
    }
    
    /* SIMPLE MOBILE DROPDOWN STYLES */
    .sidenav .has-dropdown {
        overflow: visible !important;
        position: relative !important;
    }
    
    .sidenav .has-dropdown > a {
        position: relative !important;
        font-weight: 500;
        background-color: #f8f8f8;
    }
    
    .sidenav .has-dropdown > a::after {
        content: "+" !important;
        position: absolute !important;
        right: 20px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        font-size: 18px !important;
        color: #666666 !important;
        font-weight: 300 !important;
    }
    
    .sidenav .has-dropdown > a.dropdown-active::after {
        content: "−" !important;
        color: #333333 !important;
    }
    
    /* Simple dropdown menu styles */
    .sidenav .dropdown-menu {
        display: block !important;
        position: static !important;
        background-color: #f5f5f5 !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        min-width: auto !important;
        opacity: 1 !important;
        transform: none !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.3s ease !important;
    }
    
    .sidenav .dropdown-menu.active {
        max-height: 300px !important;
        overflow: visible !important;
    }
    
    .sidenav .dropdown-menu li {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: visible !important;
    }
    
    .sidenav .dropdown-menu li a {
        padding: 12px 20px 12px 40px !important;
        font-size: 15px !important;
        font-weight: 400 !important;
        color: #555555 !important;
        border-left: none !important;
        border-bottom: 1px solid #eeeeee !important;
        display: block !important;
        background-color: #f5f5f5 !important;
    }
    
    .sidenav .dropdown-menu li a:hover {
        color: #000000 !important;
        background-color: #eeeeee !important;
    }
    
    /* Simple mobile language switcher */
    .mobile-language-switcher {
        margin-top: 20px;
        padding: 20px;
        border-top: 1px solid #e0e0e0;
        background-color: #fafafa;
        overflow: visible !important;
    }
    
    .mobile-language-switcher .language-switcher {
        display: flex;
        flex-direction: row;
        gap: 10px;
        padding: 0;
        justify-content: center;
    }
    
    .mobile-language-switcher .lang-link {
        padding: 8px 12px;
        font-size: 14px;
        font-weight: 400;
        color: #666666;
        text-decoration: none;
        border: 1px solid #dddddd;
        background-color: #ffffff;
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    .mobile-language-switcher .lang-link:hover,
    .mobile-language-switcher .lang-link.active {
        color: #000000;
        background-color: #f0f0f0;
        border-color: #cccccc;
    }
}

/* Hide mobile menu on desktop/PC */
@media screen and (min-width: 769px) {
    .sidenav {
        display: none !important;
    }
    
    .mobile-only {
        display: none !important;
    }
    
    .burger-icon {
        display: none !important;
    }
}
