/* Shared language switcher */
.lang-switcher {
    position: fixed;
    top: 16px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e6e6e6;
    border-radius: 999px;
    padding: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(8px);
}

.lang-switcher button {
    border: none;
    background: transparent;
    color: #666;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 999px;
    cursor: pointer;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease;
}

.lang-switcher button:hover {
    color: #1f6ece;
    background: #eef4f8;
}

.lang-switcher button.active {
    color: #fff;
    background: #406880;
}

@media (max-width: 992px) {
    .lang-switcher {
        top: 10px;
        right: 10px;
    }

    .lang-switcher button {
        padding: 5px 8px;
        font-size: 0.75rem;
    }
}
