.lang-switch .lang-current {
    display: flex;
    gap: 6px;
    align-items: center;
    padding: 0;
    border: 0;
    background: none;
    line-height: 0;
    cursor: pointer;
}

.lang-switch .lang-current img {
    display: block;
    width: 26px;
    height: auto;
    border-radius: 3px;
}

.lang-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-modal[hidden] {
    display: none;
}

.lang-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
}

.lang-modal__box {
    position: relative;
    min-width: 260px;
    padding: 20px 22px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
}

.lang-modal__title {
    margin: 0 0 14px;
    color: #111;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
}

.lang-modal__options+.lang-modal__title {
    margin-top: 18px;
}

.lang-modal__options {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.lang-opt {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    min-width: 96px;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    background: #f9fafb;
    cursor: pointer;
    transition: border-color .15s;
}

.lang-opt:hover {
    border-color: #9ca3af;
}

.lang-opt.is-active {
    border-color: #7a1f3d;
}

.lang-opt img {
    width: 34px;
    height: auto;
    border-radius: 3px;
}

.lang-opt span {
    color: #111;
    font-size: 13px;
}

.lang-valuta {
    width: 100%;
    height: 40px;
    padding: 0 10px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    background: #f9fafb;
    color: #111;
    font: inherit;
    font-size: 14px;
}

.lang-valuta:focus {
    border-color: #7a1f3d;
    outline: none;
}

.lang-modal__nota {
    margin: 10px 0 0;
    color: #6b7280;
    font-size: 11px;
    line-height: 1.35;
    text-align: center;
}