.lang-switcher {
  position: fixed;
  inset-block-start: 92px;
  inset-inline-end: 16px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 11px;
  background: rgba(255, 253, 247, 0.94);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.lang-switcher .lang-globe {
  font-size: 16px;
  line-height: 1;
}

.lang-switcher select {
  max-width: 46vw;
  padding: 1px 2px;
  border: 0;
  background: transparent;
  color: #111916;
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
}

.lang-switcher select:focus {
  outline: none;
}

.lang-switcher select option {
  background: #fffdf7;
  color: #111916;
}

@media (max-width: 760px) {
  .lang-switcher {
    inset-block-start: 78px;
    inset-inline-end: 10px;
  }
}

@media (prefers-color-scheme: dark) {
  .lang-switcher {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(13, 26, 22, 0.94);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
  }

  .lang-switcher select {
    color: #effaf6;
  }

  .lang-switcher select option {
    background: #0d1a16;
    color: #effaf6;
  }
}
