/* ESSA Translate — Frontend Language Switcher */
.essa-lang-switcher {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 6px;
    align-items: center;
}

.essa-lang-switcher li a {
    display: inline-block;
    padding: 4px 10px;
    border: 1px solid currentColor;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.6;
    transition: opacity .2s, background .2s;
}

.essa-lang-switcher li a:hover {
    opacity: 1;
}

.essa-lang-switcher li.active a {
    opacity: 1;
    background: currentColor;
}

.essa-lang-switcher li.active a span {
    color: #fff;
    mix-blend-mode: difference;
}
