
/* === LANGUAGE SWITCH VISIBILITY FIX === */

/* ensure header doesn't clip elements */
.site-header {
  overflow: visible !important;
}

/* keep language switch always visible */
.site-header .lang-switch {
  flex: 0 0 auto !important;
  white-space: nowrap !important;
}

/* prevent nav from cutting last item */
.site-header .site-nav {
  flex-wrap: nowrap !important;
  overflow: visible !important;
}

/* ensure enough space so it doesn't disappear */
@media (min-width: 981px) {
  .site-header .site-nav {
    padding-right: 40px !important;
  }
}

/* mobile: keep switch inside dropdown */
@media (max-width: 980px) {
  .site-header .lang-switch {
    display: flex !important;
    width: 100% !important;
    justify-content: flex-start !important;
    margin-top: 8px !important;
  }
}
