/* ============================================================
   13. PRZEŁĄCZNIK JĘZYKA
   ============================================================ */
.rev-lang-switcher {
    position: relative;
    margin-top: 5px;
    font-family: "Bahnschrift", sans-serif;
}
.rev-lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #1c1c1b;
    cursor: pointer;
    transition: all 0.2s;
}
.rev-lang-current:hover {
    border-color: #e30613;
    color: #e30613;
}
.rev-lang-current svg {
    transition: transform 0.2s;
}
.rev-lang-current[aria-expanded="true"] svg {
    transform: rotate(180deg);
}
.rev-lang-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    background: #fff;
    border: 1px solid #ebebeb;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    min-width: 80px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: all 0.2s ease;
    z-index: 100;
}
.rev-lang-switcher:focus-within .rev-lang-dropdown,
.rev-lang-switcher.open .rev-lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.rev-lang-option {
    display: block;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #5c5c5c !important;
    text-decoration: none !important;
    transition: all 0.2s;
}
.rev-lang-option:hover {
    background: #f5f5f5;
    color: #1c1c1b !important;
}
.rev-lang-active {
    color: #e30613 !important;
}

