/* Hide Language Selector - Keep in DOM but invisible and non-interactive */

.languages {
    display: none !important;
}

/* Alternative method - if display:none causes issues, use this instead:
.languages {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}
*/
