/* Language Switcher Styles - Clean Circle */
.lang-switcher {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Saira', sans-serif;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
    backdrop-filter: blur(10px);
}

.lang-switcher:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.lang-switcher:active {
    transform: scale(0.95);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Hide buttons in mobile header - they'll be in the expanded menu */
    .lang-switcher,
    .theme-switcher {
        display: none !important;
    }

    /* Show buttons only when menu is open */
    .menu.menu-open .lang-switcher,
    .menu.menu-open .theme-switcher {
        display: inline-flex !important;
        position: relative !important;
        top: auto !important;
        right: auto !important;
        margin: 15px 10px !important;
        width: 36px !important;
        height: 36px !important;
        font-size: 12px !important;
    }
}

@media (max-width: 480px) {
    /* Buttons remain hidden in mobile, shown only in expanded menu */
    .menu.menu-open .lang-switcher,
    .menu.menu-open .theme-switcher {
        width: 32px !important;
        height: 32px !important;
        font-size: 11px !important;
        margin: 12px 8px !important;
    }
}

/* Dark theme support */
@media (prefers-color-scheme: dark) {
    .lang-switcher {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.1);
    }
}