/* ============================================================
   PACIFICO COLLECTIVE — LANG SWITCHER
   Small, nav-right, same type-face/size as nav links.
   Uses the site's existing cream/navy tokens. No brand restyle.
   ============================================================ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  padding-left: 1.5rem;
  -webkit-font-smoothing: antialiased;
}
.lang-switcher button {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-light, #443a35);
  transition: color 0.2s, border-color 0.2s, opacity 0.2s;
  line-height: 1;
}
.lang-switcher button:hover { color: var(--ink, #112250); opacity: 0.8; }
.lang-switcher button.active {
  color: var(--ink, #112250);
  border-bottom: 2px solid var(--royal-blue, #112250);
  padding-bottom: 1px;
}
.lang-switcher-sep {
  color: var(--ink-light, #443a35);
  opacity: 0.45;
  font-size: 11px;
  line-height: 1;
}
@media (max-width: 768px) {
  .lang-switcher { gap: 0.4rem; padding-left: 0.75rem; }
}