.site-header {
  background: #fff;
  border-bottom: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.site-header-container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
}
.mobile-menu-toggle {
  display: none;
}
.mobile-header-row {
  display: none;
}
.site-logo-row {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-logo-img {
  max-width: 275px;
  max-height: 82px;
  width: auto;
  height: auto;
  display: block;
}
.site-nav-row {
  border-top: 1px solid #edf0f2;
}
.site-nav-inner {
  min-height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.primary-menu {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu-item {
  position: relative;
}
.menu-link {
  height: 64px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  color: #75808a;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}
.menu-link:hover,
.menu-link:focus {
  color: #0e2235;
}
.category-bar {
  background: #546b60;
  color: #fff;
}
.category-bar .site-header-container {
  padding: 0 24px;
}
.category-mobile-toggle,
.category-mobile-button {
  display: none;
}
.category-menu {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  margin: 0;
  padding: 0;
  list-style: none;
}
.category-menu a {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  position: relative;
  transition: background .18s ease;
}
.category-menu a:hover {
  background: rgba(255, 255, 255, .08);
}
.category-menu a.is-active {
  background: transparent;
  color: #fff;
  font-weight: 600;
}
.category-menu a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: #bdd2bc;
}

@media (max-width: 768px) {
  .site-header {
    border-bottom: 0;
  }
  .site-logo-row {
    display: none;
  }
  .site-nav-row {
    display: none;
    border-top: 0;
  }
  .mobile-menu-toggle:checked ~ .site-nav-row {
    display: block;
  }
  .site-header-container {
    max-width: none;
    padding: 0;
  }
  .site-nav-inner {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
  }
  .site-nav-inner > div {
    display: none;
  }
  .primary-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .menu-link {
    width: 100%;
    height: 54px;
    justify-content: space-between;
    padding: 0 24px;
    border-bottom: 1px solid #edf0f2;
  }
  .mobile-header-row {
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 18px;
    background: #fff;
    border-top: 1px solid #edf0f2;
    border-bottom: 1px solid #edf0f2;
  }
  .mobile-header-row .site-logo-img {
    max-width: 205px;
    max-height: 68px;
  }
  .mobile-menu-button {
    width: 46px;
    height: 46px;
    border: 0;
    background: transparent;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 0;
    cursor: pointer;
  }
  .mobile-menu-button span {
    width: 22px;
    height: 3px;
    border-radius: 999px;
    background: #0b0b0b;
    display: block;
  }
  .category-bar .site-header-container {
    max-width: none;
    padding: 0;
  }
  .category-mobile-toggle {
    display: none;
  }
  .category-mobile-button {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 18px;
    color: #fff;
    font-size: .92rem;
    font-weight: 600;
    cursor: pointer;
  }
  .category-mobile-button > span:first-child {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
  }
  .category-mobile-chevron {
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
    border-right: 2px solid rgba(255,255,255,.92);
    border-bottom: 2px solid rgba(255,255,255,.92);
    transform: rotate(45deg) translateY(-2px);
    transition: transform .16s ease;
  }
  .category-mobile-toggle:checked + .category-mobile-button .category-mobile-chevron {
    transform: rotate(225deg) translateY(-2px);
  }
  .category-menu {
    display: none;
    grid-auto-flow: row;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(255,255,255,.16);
  }
  .category-mobile-toggle:checked ~ .category-menu {
    display: grid;
  }
  .category-menu a {
    min-height: 54px;
    justify-content: center;
    padding: 0 8px;
    font-size: .86rem;
    line-height: 1.35;
  }
  .category-menu a.is-active::after {
    height: 6px;
  }
}

@media (max-width: 480px) {
  .category-menu {
    grid-template-columns: 1fr;
  }
}
