/* Language switcher — shared across uk / pl / en versions */
.lang-switcher{
    position:fixed;
    top:16px;
    right:16px;
    z-index:1200;
    display:flex;
    gap:2px;
    padding:4px;
    border-radius:999px;
    background:rgba(34,34,34,.55);
    backdrop-filter:blur(6px);
    -webkit-backdrop-filter:blur(6px);
    font-family:var(--font-heading, 'Helvetica Neue', Arial, sans-serif);
    font-size:12px;
    font-weight:600;
    letter-spacing:.5px;
    box-shadow:0 2px 10px rgba(0,0,0,.12);
}
.lang-switcher a{
    color:rgba(248,247,244,.78);
    text-decoration:none;
    padding:4px 9px;
    border-radius:999px;
    line-height:1;
    transition:color .2s ease, background .2s ease;
}
.lang-switcher a:hover{ color:#fff; }
.lang-switcher a.active{ color:#222; background:#B89F5D; }
@media (max-width:600px){
    .lang-switcher{ top:10px; right:10px; font-size:11px; }
    .lang-switcher a{ padding:4px 7px; }
}
