/* Language toggle (EN / ES) */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 2px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
.lang-toggle button {
  background: transparent;
  border: 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}
.lang-toggle button:hover {
  color: #fff;
}
.lang-toggle button.is-active {
  background: #fff;
  color: #0a0a0a;
}

/* Mobile menu variant — larger touch target */
.lang-toggle-mobile {
  background: rgba(255,255,255,0.04);
}
.lang-toggle-mobile button {
  font-size: 0.85rem;
  padding: 8px 16px;
}
