/**
 * i18n Language Switcher Styles
 */

.language-switcher {
    position: fixed !important;
    top: 30px !important;
    right: 100px !important;
    z-index: 10002 !important;
    display: inline-block !important;
    pointer-events: auto !important;
}

/* Mobile positioning */
@media (max-width: 768px) {
    .language-switcher {
        top: 20px !important;
        right: 80px !important;
    }
}

.lang-toggle-btn {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(186, 148, 79, 0.2);
    border: 2px solid rgba(186, 148, 79, 0.4);
    border-radius: 8px;
    color: #ba944f;
    cursor: pointer !important;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: auto !important;
    user-select: none;
    -webkit-user-select: none;
}

.lang-toggle-btn:hover {
    background: rgba(186, 148, 79, 0.3);
    border-color: rgba(186, 148, 79, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(186, 148, 79, 0.3);
}

.lang-icon {
    font-size: 1.2rem;
}

.lang-code {
    font-weight: 700;
    letter-spacing: 1px;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid rgba(186, 148, 79, 0.4);
    border-radius: 12px;
    padding: 0.5rem;
    min-width: 200px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(186, 148, 79, 0.2);
    backdrop-filter: blur(20px);
    z-index: 10003 !important;
    pointer-events: auto !important;
}

.lang-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer !important;
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    text-align: left;
    transition: all 0.2s ease;
    width: 100%;
    pointer-events: auto !important;
    user-select: none;
    -webkit-user-select: none;
}

.lang-option:hover {
    background: rgba(186, 148, 79, 0.2);
    color: #ba944f;
    transform: translateX(4px);
}

.lang-option.active {
    background: rgba(186, 148, 79, 0.3);
    color: #ba944f;
    font-weight: 600;
    border-left: 3px solid #ba944f;
}

.lang-flag {
    font-size: 1.5rem;
    width: 24px;
    text-align: center;
}

.lang-name {
    flex: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .lang-dropdown {
        right: 0;
        left: auto;
        min-width: 180px;
    }
    
    .lang-toggle-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .lang-code {
        display: none;
    }
}

/* Dark theme support */
.theme-light .lang-dropdown {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(186, 148, 79, 0.3);
}

.theme-light .lang-option {
    color: rgba(0, 0, 0, 0.9);
}

.theme-light .lang-option:hover {
    background: rgba(186, 148, 79, 0.1);
}

.theme-light .lang-option.active {
    background: rgba(186, 148, 79, 0.2);
}

/* High contrast mode */
.high-contrast .lang-toggle-btn {
    border-width: 3px;
}

.high-contrast .lang-option:focus {
    outline: 3px solid #ffffff;
    outline-offset: 2px;
}

[1mdiff --git a/i18n-styles.css b/i18n-styles.css[m
[1mindex cf415fd..df7163b 100644[m
[1m--- a/i18n-styles.css[m
[1m+++ b/i18n-styles.css[m
[36m@@ -6,8 +6,9 @@[m
     position: fixed !important;[m
     top: 30px !important;[m
     right: 100px !important;[m
[31m-    z-index: 10000 !important;[m
[31m-    display: inline-block;[m
[32m+[m[32m    z-index: 10002 !important;[m
[32m+[m[32m    display: inline-block !important;[m
[32m+[m[32m    pointer-events: auto !important;[m
 }[m
 [m
 /* Mobile positioning */[m
[36m@@ -19,7 +20,7 @@[m
 }[m
 [m
 .lang-toggle-btn {[m
[31m-    display: flex;[m
[32m+[m[32m    display: flex !important;[m
     align-items: center;[m
     gap: 0.5rem;[m
     padding: 0.5rem 1rem;[m
[36m@@ -27,12 +28,15 @@[m
     border: 2px solid rgba(186, 148, 79, 0.4);[m
     border-radius: 8px;[m
     color: #ba944f;[m
[31m-    cursor: pointer;[m
[32m+[m[32m    cursor: pointer !important;[m
     font-family: 'Raleway', sans-serif;[m
     font-weight: 600;[m
     font-size: 0.9rem;[m
     transition: all 0.3s ease;[m
     backdrop-filter: blur(10px);[m
[32m+[m[32m    pointer-events: auto !important;[m
[32m+[m[32m    user-select: none;[m
[32m+[m[32m    -webkit-user-select: none;[m
 }[m
 [m
 .lang-toggle-btn:hover {[m
[36m@@ -64,7 +68,8 @@[m
     overflow-y: auto;[m
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(186, 148, 79, 0.2);[m
     backdrop-filter: blur(20px);[m
[31m-    z-index: 10001;[m
[32m+[m[32m    z-index: 10003 !important;[m
[32m+[m[32m    pointer-events: auto !important;[m
 }[m
 [m
 .lang-list {[m
[36m@@ -82,12 +87,15 @@[m
     border: none;[m
     border-radius: 8px;[m
     color: rgba(255, 255, 255, 0.9);[m
[31m-    cursor: pointer;[m
[32m+[m[32m    cursor: pointer !important;[m
     font-family: 'Raleway', sans-serif;[m
     font-size: 0.95rem;[m
     text-align: left;[m
     transition: all 0.2s ease;[m
     width: 100%;[m
[32m+[m[32m    pointer-events: auto !important;[m
[32m+[m[32m    user-select: none;[m
[32m+[m[32m    -webkit-user-select: none;[m
 }[m
 [m
 .lang-option:hover {[m
[1mdiff --git a/i18n.js b/i18n.js[m
[1mindex e926036..03e14de 100644[m
[1m--- a/i18n.js[m
[1m+++ b/i18n.js[m
[36m@@ -245,7 +245,12 @@[m [mclass I18n {[m
      */[m
     createLanguageSwitcher() {[m
         // Check if switcher already exists[m
[31m-        if (document.getElementById('language-switcher')) return;[m
[32m+[m[32m        if (document.getElementById('language-switcher')) {[m
[32m+[m[32m            console.log('ℹ️ Language switcher already exists');[m
[32m+[m[32m            return;[m
[32m+[m[32m        }[m
[32m+[m
[32m+[m[32m        console.log('🌍 Creating language switcher...');[m
 [m
         const switcher = document.createElement('div');[m
         switcher.id = 'language-switcher';[m
[36m@@ -309,33 +314,52 @@[m [mclass I18n {[m
             switcher.style.position = 'fixed';[m
             switcher.style.top = '30px';[m
             switcher.style.right = '100px'; // Position to left of menu toggle[m
[31m-            switcher.style.zIndex = '10000';[m
[32m+[m[32m            switcher.style.zIndex = '10002';[m
[32m+[m[32m            switcher.style.pointerEvents = 'auto';[m
             header.appendChild(switcher);[m
[32m+[m[32m            console.log('✅ Language switcher added to header');[m
         } else {[m
             // Fallback: add to body with fixed positioning[m
             switcher.style.position = 'fixed';[m
             switcher.style.top = '30px';[m
             switcher.style.right = '100px';[m
[31m-            switcher.style.zIndex = '10000';[m
[32m+[m[32m            switcher.style.zIndex = '10002';[m
[32m+[m[32m            switcher.style.pointerEvents = 'auto';[m
             document.body.appendChild(switcher);[m
[32m+[m[32m            console.log('✅ Language switcher added to body');[m
         }[m
 [m
[31m-        // Add event listeners[m
[32m+[m[32m        // Add event listeners with proper error handling[m
         const toggleBtn = document.getElementById('lang-toggle-btn');[m
         const dropdown = document.getElementById('lang-dropdown');[m
         const langOptions = switcher.querySelectorAll('.lang-option');[m
 [m
[32m+[m[32m        if (!toggleBtn) {[m
[32m+[m[32m            console.error('❌ Language toggle button not found');[m
[32m+[m[32m            return;[m
[32m+[m[32m        }[m
[32m+[m
[32m+[m[32m        if (!dropdown) {[m
[32m+[m[32m            console.error('❌ Language dropdown not found');[m
[32m+[m[32m            return;[m
[32m+[m[32m        }[m
[32m+[m
[32m+[m[32m        // Toggle button click handler[m
         toggleBtn.addEventListener('click', (e) => {[m
             e.stopPropagation();[m
[32m+[m[32m            e.preventDefault();[m
             const isVisible = dropdown.style.display !== 'none';[m
             dropdown.style.display = isVisible ? 'none' : 'block';[m
[32m+[m[32m            console.log(`🌍 Language dropdown ${isVisible ? 'closed' : 'opened'}`);[m
         });[m
 [m
[32m+[m[32m        // Language option click handlers[m
         langOptions.forEach(option => {[m
             option.addEventListener('click', async (e) => {[m
                 e.stopPropagation();[m
                 e.preventDefault();[m
                 const lang = option.dataset.lang;[m
[32m+[m[32m                console.log(`🌍 Language option clicked: ${lang}`);[m
                 if (lang && lang !== this.currentLanguage) {[m
                     try {[m
                         await this.setLanguage(lang);[m
[36m@@ -346,16 +370,38 @@[m [mclass I18n {[m
                     }[m
                 } else {[m
                     dropdown.style.display = 'none';[m
[32m+[m[32m                    console.log(`ℹ️ Language already set to ${lang}`);[m
                 }[m
             });[m
         });[m
 [m
         // Close dropdown when clicking outside[m
[31m-        document.addEventListener('click', (e) => {[m
[31m-            if (!switcher.contains(e.target)) {[m
[32m+[m[32m        // Use a named function so we can remove it if needed[m
[32m+[m[32m        this.closeDropdownHandler = (e) => {[m
[32m+[m[32m            if (switcher && dropdown && !switcher.contains(e.target)) {[m
                 dropdown.style.display = 'none';[m
             }[m
[31m-        });[m
[32m+[m[32m        };[m
[32m+[m[32m        document.addEventListener('click', this.closeDropdownHandler);[m
[32m+[m
[32m+[m[32m        // Verify the button is clickable[m
[32m+[m[32m        setTimeout(() => {[m
[32m+[m[32m            const verifyBtn = document.getElementById('lang-toggle-btn');[m
[32m+[m[32m            if (verifyBtn) {[m
[32m+[m[32m                console.log('✅ Language toggle button is ready and clickable');[m
[32m+[m[32m                // Test if button is visible and has proper styles[m
[32m+[m[32m                const styles = window.getComputedStyle(verifyBtn);[m
[32m+[m[32m                console.log('🌍 Button styles:', {[m
[32m+[m[32m                    display: styles.display,[m
[32m+[m[32m                    visibility: styles.visibility,[m
[32m+[m[32m                    opacity: styles.opacity,[m
[32m+[m[32m                    pointerEvents: styles.pointerEvents,[m
[32m+[m[32m                    zIndex: styles.zIndex[m
[32m+[m[32m                });[m
[32m+[m[32m            } else {[m
[32m+[m[32m                console.error('❌ Language toggle button not found after creation');[m
[32m+[m[32m            }[m
[32m+[m[32m        }, 100);[m
     }[m
 [m
     /**[m
