/* Shared language switcher, used on every page (marketing + chat) */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 4px;
}
.lang-switch-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 8px 32px 8px 14px;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.2;
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.05) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 10px center / 13px 13px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}
.lang-switch-select:hover {
    color: #fff;
    border-color: rgba(230, 72, 58, 0.4);
    background-color: rgba(230, 72, 58, 0.1);
}
.lang-switch-select:focus-visible {
    outline: none;
    border-color: rgba(230, 72, 58, 0.55);
    box-shadow: 0 0 0 3px rgba(230, 72, 58, 0.18);
}
.lang-switch-select option {
    color: #1a1a1a;
    background: #fff;
    font-weight: 500;
}

