.cs-lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 4px;
    list-style: none;
    border-radius: 12px;
    background: #eef2f7;
}

.cs-lang-switcher__item {
    margin: 0;
}

.cs-lang-switcher__item a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 28px;
    padding: 0 10px;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    color: #6e7b93;
    background: transparent;
    transition: background-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.cs-lang-switcher__item a:hover,
.cs-lang-switcher__item a:focus {
    color: #102246;
    background: rgba(16, 34, 70, 0.08);
}

.cs-lang-switcher__item.is-current a {
    color: #fff;
    background: linear-gradient(135deg, #081634 0%, #1a2f59 100%);
    box-shadow: 0 6px 16px rgba(8, 22, 52, 0.22);
}
