/* JPRO nav — horizontal text links below header (not pills) */
.jpro-header-menu,
.t1-header-menu.jpro-header-menu {
  background: transparent;
  border-top: none;
  width: 100%;
}

.jpro-header-menu .t1-header-menu-scroll {
  overflow: visible;
}

.jpro-header-menu .jpro-nav-list,
.jpro-header-menu .t1-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0 2px;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.jpro-header-menu .jpro-nav-list::-webkit-scrollbar {
  display: none;
}

.jpro-header-menu .t1-menu-item {
  position: relative;
  flex: 0 0 auto;
}

.jpro-header-menu .jpro-nav-link,
.jpro-header-menu .t1-menu-link {
  font-family: 'Montserrat', var(--theme-font-sans, sans-serif);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #1a1a1a;
  padding: 14px 10px;
  border-radius: 0;
  background: transparent;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
  display: inline-block;
}

.jpro-header-menu .jpro-nav-link:hover,
.jpro-header-menu .t1-menu-link:hover {
  color: var(--theme-nav-active, #e14b5a);
  background: transparent;
}

.jpro-header-menu .t1-menu-link.is-active,
.jpro-header-menu .jpro-nav-link.is-active,
.jpro-header-menu .t1-menu-item.is-active > .t1-menu-link {
  color: var(--theme-nav-active, #e14b5a);
  background: transparent;
}

.jpro-header-menu .t1-submenu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  min-width: 180px;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 0;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 30;
}

.jpro-header-menu .t1-menu-item:hover > .t1-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.jpro-header-menu .t1-submenu-link {
  display: block;
  padding: 8px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #333;
  text-decoration: none;
}

.jpro-header-menu .t1-submenu-link:hover {
  color: var(--theme-nav-active, #e14b5a);
  background: #f7f7f7;
}

.jpro-header-menu .t1-menu-mobile {
  display: block;
}

.jpro-header-menu .t1-menu-mobile-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.jpro-header-menu .t1-menu-mobile-list li {
  list-style: none !important;
}

.jpro-header-menu .t1-menu-mobile-list a {
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #091654;
  padding: 14px 8px;
  text-decoration: none;
  border-bottom: 1px solid #eef0f5;
  display: block;
  background: transparent;
}

.jpro-header-menu .t1-menu-mobile-list a:visited {
  color: #091654;
}

.jpro-header-menu .t1-menu-mobile-list a:hover,
.jpro-header-menu .t1-menu-mobile-list a.is-active {
  color: #1a56c4;
  background: #f0f5ff;
}