How can I create a hover dropdown for collections on my website header?

Hello! I’d like my collection and subcollections to appear without clicking the mouse only when you put the mouse over “Straps” , “Accessories”

Like the one on this site: https://blvck.com/ (When you go over the MEN/WOMEN collection on header)

My site is: https://prestige-straps-the-finest-selection-of-watch-straps.myshopify.com/

Password: asd321

You need to simulate a Click event on hover. Here is an example -

$('myselector').hover(function(){  
    $(this).trigger('click');  
});