.site-i18n-switcher {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 2147483647;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.86);
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  font-size: 13px;
  line-height: 1;
  backdrop-filter: blur(8px);
}

.site-i18n-switcher__label {
  font-weight: 600;
  white-space: nowrap;
}

.site-i18n-switcher select {
  height: 28px;
  min-width: 112px;
  border: 0;
  border-radius: 999px;
  padding: 0 26px 0 10px;
  background: #fff;
  color: #111;
  font-size: 13px;
  outline: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .site-i18n-switcher {
    right: 10px;
    bottom: 72px;
    padding: 7px 8px;
    gap: 6px;
    font-size: 12px;
  }

  .site-i18n-switcher select {
    min-width: 96px;
    height: 26px;
    font-size: 12px;
  }
}