/* Product switcher injected into Firewall and WAF guide pages */

.product-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
  font-size: 0.8125rem;
}

.product-nav a {
  text-decoration: none;
  color: var(--text-secondary, #5c6370);
  font-weight: 500;
  padding: 0.3rem 0.65rem;
  border-radius: 5px;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}

.product-nav a:hover {
  color: var(--toorce-red, #c41e3a);
  background: rgba(196, 30, 58, 0.06);
}

.product-nav a.active {
  color: #fff;
  background: var(--toorce-red, #c41e3a);
}

.product-nav-home {
  font-weight: 600 !important;
}

.product-nav-divider {
  width: 1px;
  height: 18px;
  background: var(--border, #e2e5ea);
  margin: 0 0.25rem;
}

@media (max-width: 900px) {
  .product-nav {
    display: none;
  }
}

@media (min-width: 901px) {
  .site-header {
    flex-wrap: nowrap;
  }

  .site-header .breadcrumb {
    display: none;
  }
}
