/* Avada/Fusion Builder's own nav.js normally repositions/reflows the
   dropdown while open; without it, both nav.fusion-main-menu AND each
   individual menu-item-has-children <li> ship overflow:hidden (present
   for other slide-in effects, e.g. the search overlay, and to clip a
   menu item's own hover-highlight bar respectively), and the .sub-menu
   is an absolutely-positioned child of that <li> — so it renders taller
   than the 150px-high nav/li box and gets clipped away entirely. The
   dropdown's own opacity/visibility hover toggle already works via the
   theme's stock CSS; only the clipping needs relaxing, and only while a
   dropdown item is actually being hovered, so the search overlay and
   each item's highlight-bar clipping are unaffected the rest of the
   time. */
.fusion-main-menu:has(.fusion-dropdown-menu:hover) {
  overflow: visible;
}
.fusion-dropdown-menu:hover {
  overflow: visible;
}
