.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.2rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.05);
}

.lang-switch__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    opacity: 0.45;
    line-height: 0;
    transition: opacity 0.15s ease, box-shadow 0.15s ease;
}

.lang-switch__item img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.lang-switch__item:hover {
    opacity: 0.8;
}

.lang-switch__item--active {
    opacity: 1;
    box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px var(--lp-accent, #2563eb);
}
