/* 🌍 Стили для переключателя языков */
.language-switcher .dropdown-toggle {
    border-radius: 8px;
    padding: 8px 12px;
    transition: all 0.3s ease;
    background: rgba(67, 89, 113, 0.1);
}

.language-switcher .dropdown-toggle:hover {
    background: rgba(67, 89, 113, 0.2);
    transform: translateY(-1px);
}

.language-switcher .dropdown-menu {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border: none;
    padding: 8px 0;
    margin-top: 8px;
}

.language-switcher .dropdown-item {
    padding: 10px 20px;
    transition: all 0.2s ease;
    border-radius: 8px;
    margin: 2px 8px;
    font-weight: 500;
}

.language-switcher .dropdown-item:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateX(4px);
}

.language-switcher .dropdown-item.active {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    font-weight: 600;
}

.language-flag {
    font-size: 1.2em;
    margin-right: 8px;
}

/* Анимация при переключении */
@keyframes languageSwitch {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

.language-switched {
    animation: languageSwitch 0.3s ease-out;
}
