/* Стили для переключателя языков */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    padding: 4px 6px;
    border-radius: 4px;
    transition: all 0.2s ease;
    opacity: 0.7;
    text-decoration: none;
}

.lang-switcher:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

.lang-switcher.active {
    opacity: 1;
    background: rgba(255, 165, 0, 0.2);
}

.lang-switcher img {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .language-switcher {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .lang-switcher {
        padding: 6px 8px;
    }
    
    .lang-switcher img {
        width: 24px;
        height: 18px;
    }
}