/* Сегментований pill-перемикач мов УКР | ENG (спільний для обох меню) */
.lang-switch {
    position: relative;
    display: inline-flex;
    align-items: center;
    box-sizing: border-box;
    height: 30px;
    padding: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    vertical-align: middle;
    user-select: none;
}

/* Слайдер-підсвітка активної мови */
.lang-switch__thumb {
    position: absolute;
    top: 3px;
    bottom: 3px;
    left: 3px;
    width: calc(50% - 3px);
    border-radius: 999px;
    background: linear-gradient(135deg, #2b659f 0%, #1f589d 100%);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.lang-switch--en .lang-switch__thumb {
    transform: translateX(100%);
}

/* Опції: важливі розміри форсуємо, щоб не роздувались стилями меню (#mainmenu a) */
.lang-switch .lang-switch__option {
    position: relative;
    z-index: 1;
    flex: 1 1 0;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-width: 34px;
    height: 24px !important;
    padding: 0 10px !important;
    margin: 0 !important;
    border-radius: 999px;
    font-size: 11px !important;
    font-weight: 700;
    line-height: 1 !important;
    letter-spacing: 0.04em;
    text-transform: none;
    color: rgba(255, 255, 255, 0.78) !important;
    background: transparent !important;
    text-decoration: none !important;
    transition: color 0.25s ease;
    white-space: nowrap;
}

.lang-switch .lang-switch__option:hover {
    color: #ffffff !important;
}

.lang-switch .lang-switch__option:focus-visible {
    outline: 2px solid #7db4e8;
    outline-offset: 2px;
    border-radius: 999px;
}

.lang-switch .lang-switch__option.is-active {
    color: #ffffff !important;
    cursor: default;
    /* активна мова неклікабельна */
    pointer-events: none;
}

/* Всередині пунктів меню (_LayoutThird #mainmenu) */
#mainmenu .lang-switch-li {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

#mainmenu .lang-switch-li::before {
    content: none !important;
}

#mainmenu .lang-switch {
    margin-left: 14px;
}

@media (max-width: 992px) {
    #mainmenu .lang-switch {
        margin: 12px 0 4px 14px;
    }
}
