/* Переключатель языков */
.lang-switcher {
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.lang-switcher a {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.2s;
}

.lang-switcher a:hover {
    transform: scale(1.1);
}

.lang-switcher img {
    width: 24px;
    height: 16px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 3px;
}

.lang-current {
    font-weight: bold;
    color: #ffdd00;
}