.navigation-menu {
  display: flex;
  flex: 1;
  justify-content: flex-end;
}

.navigation-menu__toggle,
.navigation-menu__control {
  display: none;
}

.site-header a:focus-visible,
.site-header button:focus-visible,
.navigation-menu__toggle:focus-visible + .navigation-menu__control {
  outline: 3px solid #f47721;
  outline-offset: 3px;
}

.site-header nav a,
.site-header .link-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.eyebrow {
  color: #087066;
}

.product-strip .eyebrow {
  color: #62c8d4;
}

.status {
  border-color: #087066;
  color: #087066;
}

@media (max-width: 960px) {
  .navigation-menu {
    flex: 0 0 auto;
  }

  .site-header {
    position: relative;
    align-items: center;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .navigation-menu__control {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 700;
  }

  .navigation-menu__toggle {
    position: absolute;
    display: block;
    width: 44px;
    height: 44px;
    margin: 0;
    opacity: 0;
    cursor: pointer;
  }

  .navigation-menu__toggle:not(:checked) ~ nav {
    display: none;
  }

  .navigation-menu__toggle:checked ~ nav {
    display: flex;
  }

  .site-header nav {
    position: absolute;
    z-index: 20;
    top: calc(100% + 1px);
    right: var(--space);
    width: min(22rem, calc(100vw - 2 * var(--space)));
    padding: 0.65rem;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 12px 30px rgb(7 24 38 / 16%);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-header nav a,
  .site-header .link-button {
    width: 100%;
    min-height: 48px;
    padding: 0.7rem 0.85rem;
  }

  .site-header nav form {
    width: 100%;
  }
}
