/* Phase 15.1 — customer-aware header navigation only. */
.customer-aware-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.header-signout-form {
  display: inline-flex;
  margin: 0;
  padding: 0;
}
.header-nav-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: inherit;
  padding: 0;
  cursor: pointer;
}
.header-nav-button:hover,
.header-nav-button:focus-visible {
  text-decoration: underline;
}
.header-account-cta {
  white-space: nowrap;
}
@media (max-width: 720px) {
  .customer-aware-nav {
    gap: 10px 14px;
    justify-content: flex-end;
  }
}
