Hello,
Try to add the following code snippet to the Custom CSS area in Theme Settings.
.single-product .vertical-navigation.opened-menu .categories-menu-dropdown {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;   
      top: 125%;
}
.single-product .vertical-navigation.opened-menu:hover .categories-menu-dropdown {
    visibility: visible;
    opacity: 1; 
    top: 100%;
    pointer-events: visible;
    -webkit-transition:
        opacity .2s ease,
        visibility .0s ease,
        top .2s ease;
    transition:
        opacity .2s ease,
        visibility .0s ease,
        top .2s ease;
}
Kind Regards
XTemos Studio