/* Products navbar dropdown — matches contractmanufacturer.in flyout style */
.nav-dropdown-menu {
  position: absolute;
  left: 0;
  top: 1.75rem;
  z-index: 60;
  min-width: 220px;
  padding: 6px 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.14);
  overflow: visible;
}

.nav-dropdown-link {
  display: block;
  padding: 9px 18px;
  color: #374151;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.nav-dropdown-link:hover {
  color: var(--color-heading3, #16a34a);
}

.nav-dropdown-link--highlight {
  color: var(--color-heading3, #16a34a);
  font-weight: 700;
}

/* Nested category (Repellent, Wellness) */
.nav-dropdown-nested {
  position: relative;
}

.nav-dropdown-nested-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 18px;
  color: #374151;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
  cursor: default;
  user-select: none;
  transition: color 0.15s ease;
}

.nav-dropdown-nested:hover > .nav-dropdown-nested-trigger {
  color: var(--color-heading3, #16a34a);
}

.nav-dropdown-nested-arrow {
  flex-shrink: 0;
  transform: rotate(-90deg);
  opacity: 0.75;
}

/* Flyout submenu — hidden until hover */
.nav-dropdown-flyout {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  z-index: 70;
  min-width: 240px;
  padding: 6px 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.14);
}

.nav-dropdown-nested:hover > .nav-dropdown-flyout {
  display: block;
}

.nav-dropdown-flyout-link {
  display: block;
  padding: 9px 18px;
  color: #374151;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.15s ease;
}

.nav-dropdown-flyout-link:hover {
  color: var(--color-heading3, #16a34a);
}
