/* ============================================================
   Falcon Group — Toggle ES / CA
   ============================================================ */

.fx-lang-toggle {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 9999px;
  overflow: hidden;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #083f59; /* falcon */
  line-height: 1;
}

.fx-lang-toggle button {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 5px 9px;
  cursor: pointer;
  color: inherit;
  font: inherit;
  transition: background 0.15s ease, color 0.15s ease;
}

.fx-lang-toggle button:hover {
  background: rgba(0, 0, 0, 0.05);
}

.fx-lang-toggle button.is-on {
  background: #083f59;
  color: #fff;
}

.fx-lang-toggle button + button {
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

@media print {
  .fx-lang-toggle { display: none !important; }
}
