/* Make menu items vertically centered in ALL header states */
#primary-menu > ul {
  display: flex;
  align-items: center;
}

/* Phone button */
#primary-menu ul li a.button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 45px;
  padding: 0 22px;
  background-color: #ff6600 !important;
  color: #fff !important;
  font-weight: bold;
  border-radius: 25px !important;
  text-decoration: none;
  line-height: 1;
  margin-top: 0 !important; /* IMPORTANT */
  transition: background 0.3s;
}

/* Micro-adjust ONLY the button list item (safe) */
#primary-menu ul li:last-child {
  position: relative;
  top: 1px; /* adjust 0–2px if needed */
}


