.lang-switcher {
  position: absolute;
  top: 92px;
  right: 16px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(0,0,0,.16);
  border-radius: 11px;
  box-shadow: 0 4px 18px rgba(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 {
  font: inherit;
  font-size: .9rem;
  color: #1a1a1a;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 1px 2px;
  max-width: 46vw;
}

.lang-switcher select:focus { outline: none; }
.lang-switcher select option { color: #1a1a1a; background: #fff; }

@media (prefers-color-scheme: dark) {
  .lang-switcher {
    background: rgba(28,30,48,.92);
    border-color: rgba(255,255,255,.18);
    box-shadow: 0 4px 18px rgba(0,0,0,.5);
  }

  .lang-switcher select { color: #e8e8e8; }
  .lang-switcher select option { color: #e8e8e8; background: #1c2040; }
}

@media (max-width: 820px) {
  .lang-switcher {
    top: 78px;
    right: 10px;
  }
}
