/* ===== Language Switcher ===================================
   Dotyczy tylko wersji desktop (> 760px).
   Na mobile mobile_nav.css przejmuje layout i styl.
============================================================ */

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: 4px;
    flex-shrink: 0;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 9px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    color: #5a6a7a;
    background: transparent;
    border: 1.5px solid transparent;
    transition: color 0.15s, background 0.15s, border-color 0.15s;
    cursor: pointer;
    line-height: 1;
    min-width: 30px;
    min-height: 30px;
}

.lang-btn:hover {
    color: #152334;
    background: rgba(0,0,0,0.05);
    border-color: rgba(0,0,0,0.09);
}

.lang-btn-active {
    color: #0f766e;
    background: rgba(15,118,110,0.09);
    border-color: rgba(15,118,110,0.22);
}

.lang-btn-active:hover {
    background: rgba(15,118,110,0.14);
}

/* Separator od nav na desktop */
.site-header .lang-switcher {
    border-left: 1px solid rgba(15,23,42,0.1);
    padding-left: 8px;
    margin-left: 6px;
}
