/* Language Switcher - Elegant Design */
.language-switcher {
    position: relative;
}

.lang-toggle-btn {
    width: 40px;
    height: 40px;
    background: var(--primary-bronze);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.lang-toggle-btn:hover {
    background: var(--accent-gold);
    transform: scale(1.1) rotate(5deg);
}

.current-flag {
    display: none;
}

.current-lang {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.lang-arrow {
    display: none;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1001;
    overflow: hidden;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    color: var(--primary-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.lang-option:hover {
    background: var(--light-bg);
}

.lang-option.active {
    background: linear-gradient(135deg, var(--primary-bronze), var(--accent-gold));
    color: var(--white);
}

.lang-option .lang-code {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .language-switcher {
        margin-right: 0;
    }
    
    .lang-toggle-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .current-flag {
        font-size: 16px;
    }
    
    .current-lang {
        display: none;
    }
    
    .lang-dropdown {
        right: 0;
        min-width: 140px;
    }
    
    .lang-option {
        padding: 10px 14px;
        font-size: 13px;
    }
}
