.language-switcher {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 9px;
  border: 1px solid var(--line, #d9e1ea);
  border-radius: 999px;
  background: color-mix(in srgb, var(--panel, #fff) 92%, transparent);
  box-shadow: 0 8px 26px rgb(0 0 0 / 14%);
  color: var(--muted, #667085);
  font-size: 12px;
  backdrop-filter: blur(10px);
}

.language-switcher button {
  border: 0;
  padding: 2px 4px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.language-switcher button:hover,
.language-switcher button.is-active {
  color: var(--accent, #1b6fd8);
}

.language-switcher button.is-active {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 600px) {
  .language-switcher { right: 10px; bottom: 10px; }
}
