/* Десктоп — справа сверху */
#custom-lang-switcher-container {
  position: fixed !important;
  top: 10px !important;
  right: 10px !important;
  left: auto !important;
  transform: none !important;
  z-index: 999999 !important;
}

/* Мобильная версия — по центру */
@media screen and (max-width: 980px) {
  #custom-lang-switcher-container {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    top: 10px !important;
  }
}