/* =========================================================
   Top utility bar (contact info only).
   =========================================================
   The language switcher used to also live here (duplicating the one in
   the main header — see template-parts/header/language-switcher.php),
   which meant two separate "change language" controls on every page.
   That duplicate has been removed from inc/top-bar.php; the header
   switcher is now the single source of truth for changing language.
   ========================================================= */
.pharm-topbar {
  background: var(--pharm-primary-dark);
  color: var(--pharm-white);
  font-size: 13px;
}
.pharm-topbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}
.pharm-topbar a {
  color: var(--pharm-white);
  text-decoration: none;
  opacity: 0.9;
}
.pharm-topbar a:hover {
  opacity: 1;
  text-decoration: underline;
}
.pharm-topbar__contacts {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
