/* Hide all sub-menu-lv3 by default */
.children.sub-menu.sub-menu-lv3 {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 200px;
  z-index: 999;
}

/* Show sub-menu-lv3 only when hovering li in sub-menu-lv2 */
.children.sub-menu.sub-menu-lv2 > li:hover > .children.sub-menu.sub-menu-lv3 {
  display: block;
}

/* Optional: Ensure sub-menu-lv2 is positioned correctly */
.children.sub-menu.sub-menu-lv2 {
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 200px;
  z-index: 998;
}

/* Hide sub-menu-lv2 by default, show on hover of li in menu cấp 1 */
.children.sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 200px;
  z-index: 998;
}

.use-dropdown:hover > .children.sub-menu {
  display: block;
  padding-top: 0px;
}

/* Ensure parent li is position: relative for dropdowns */
.use-dropdown {
  position: relative;
}

.children.sub-menu.sub-menu-lv2 a {
  color: #575757 !important;
}
.children.sub-menu.sub-menu-lv2 a:hover {
  color: #fff !important;
}