/* Language switcher — Terminal Archive style (lives in titlebar) */
.lang-switcher {
  display: inline-flex;
  gap: 2px;
  align-items: center;
}

.lang-btn {
  padding: 2px 8px;
  font-size: 10px;
  font-family: 'Roboto Mono', ui-monospace, monospace;
  color: rgba(230, 224, 233, 0.45);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  text-transform: lowercase;
  letter-spacing: 0.3px;
  transition: color 0.12s, background 0.12s, border-color 0.12s;
}

.lang-btn:hover {
  color: #E6E0E9;
  background: rgba(208, 188, 255, 0.08);
}

.lang-btn.active {
  color: #D0BCFF;
  border-color: rgba(208, 188, 255, 0.35);
  background: rgba(208, 188, 255, 0.10);
}

/* hide the old nav-item-lang anchor if present from old layouts */
.nav-item-lang { display: none; }
