.localization-switcher {
    position: fixed;
    top: 76px;
    right: 16px;
    z-index: 1001;
    display: flex;
    gap: 4px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.82);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.24);
    font: 600 12px/1 Poppins, sans-serif;
    backdrop-filter: blur(8px);
}

.localization-switcher a {
    min-width: 32px;
    padding: 7px 8px;
    border-radius: 18px;
    color: #fff;
    text-align: center;
    text-decoration: none;
}

.localization-switcher a:hover,
.localization-switcher a:focus-visible {
    color: #222;
    background: #f9d700;
}

.localization-switcher a[aria-current="page"] {
    color: #222;
    background: #f9d700;
}

@media (max-width: 991px) {
    .localization-switcher {
        top: 58px;
        right: 10px;
    }
}
