/* HotelShift platform nav — shared chrome (Step 2). Styled from design tokens.
   Kept in its own file so it never conflicts with styles.css edits. */
.hs-platnav {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1.25rem;
  background: var(--navy-900);
  border-bottom: 2px solid var(--gold);
}
.hs-platnav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  line-height: 1;
}
.hs-platnav__icon {
  display: block;
  width: 30px;
  height: 30px;
  background: #ffffff;
  border-radius: 7px;
  padding: 3px;
  box-sizing: border-box;
}
.hs-platnav__name {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
}
.hs-platnav__wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: #ffffff;            /* "Hotel" white on the navy bar */
}
.hs-platnav__wordmark .hs-shift {
  color: var(--gold);        /* "Shift" gold, echoing the logo */
}
.hs-platnav__product {
  position: relative;
  padding-left: 0.65rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: #c8d3e4;            /* light slate */
}
.hs-platnav__product::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1.05em;
  background: rgba(255, 255, 255, 0.22);
}
@media (max-width: 520px) {
  .hs-platnav__product { display: none; }   /* keep the brand compact on phones */
}
