.language-switcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(34, 36, 39, 0.16);
  border-radius: 999px;
  background: rgba(250, 249, 247, 0.92);
  color: #222427;
  font: 700 11px/1 "Geist Mono", monospace;
  letter-spacing: 0.08em;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.language-switcher:hover {
  border-color: #097860;
  background: #ffffff;
  color: #097860;
}

.language-switcher.is-floating {
  position: fixed;
  top: 18px;
  right: 20px;
  z-index: 120;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.cat-header .language-switcher,
header .language-switcher:not(.is-floating) {
  margin-left: 4px;
}

@media (max-width: 720px) {
  .language-switcher.is-floating {
    top: 12px;
    right: 12px;
  }
}

@media print {
  .language-switcher { display: none !important; }
}
