.language-switcher {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  gap: 6.4px;
  align-items: center;
  width: auto;
  max-width: calc(100vw - 24px);
  background: #ffffff;
  color: #111111;
  border: 1px solid #d0d7de;
  border-radius: 4.8px;
  padding: 6.4px 8px;
  font-family: Arial, sans-serif;
  font-size: 11.2px;
  line-height: 1.2;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.language-switcher label {
  margin: 0;
  color: #111111;
  font-weight: 700;
  white-space: nowrap;
}

.language-switcher select {
  min-width: 106px;
  border: 1px solid #b8c0cc;
  border-radius: 3.2px;
  padding: 4.8px;
  font: inherit;
  background: #ffffff;
  color: #111111;
}

@media (max-width: 600px) {
  .language-switcher {
    width: calc(100vw - 24px);
    justify-content: space-between;
  }

  .language-switcher select {
    min-width: 0;
    flex: 1;
  }
}
