
.lang-switcher {
    position: relative;
    display: inline-block;
}

.lang-switcher__current {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px solid var(--main-blue-dark);
    border-radius: 40px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--main-blue);
    cursor: pointer;
    transition: all 0.2s;
    background-color: #fff;
}

.lang-switcher__current:hover {
    background-color: none;
    border-color: var(--main-blue);
}

.lang-switcher__icon {
    stroke: var(--main-blue);
}

.lang-switcher__dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: white;
    border: 1px solid var(--main-blue-dark);
    border-radius: 12px;
    padding: 6px 0;
    min-width: 160px;
    box-shadow: 0 8px 24px var(--main-blue-dark);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    list-style: none;
    margin: 0;
    z-index: 100;
}

.lang-switcher:hover .lang-switcher__dropdown,
.lang-switcher__current:focus+.lang-switcher__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-switcher__dropdown li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 14px;
    color: var(--main-blue-dark__80);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.15s;
}

.lang-switcher__dropdown li a:hover {
    background-color: var(--bg-light);
    color: var(--main-blue);
}

.lang-switcher__dropdown li a.active {
    background-color: var(--main-blue-secondary-dark);
    color: white;
    font-weight: 600;
    pointer-events: none;
}