/*
Theme Name: Zeroy
Theme URI: https://moletongrid.com/
Author: MOLETONG
Description: MOLETONG production theme with responsive media, reviewed English content and reversible release tooling.
Version: 3.0.0
License: GPL v2 or later
Text Domain: zeroy
*/

/*
 * The original submenu begins below a 10px empty gap. Crossing that gap fires
 * mouseleave, so the menu disappears before it can be clicked. The transparent
 * border below provides the same visual spacing while keeping one hit area.
 */
@media (hover: hover) and (pointer: fine) and (min-width: 1025px) {
  #mlt-header .mlt-nav > .mlt-has-dropdown > .mlt-dropdown {
    top: 100% !important;
    margin-top: 0 !important;
    border-top-color: transparent !important;
    border-top-width: 10px !important;
    background-clip: padding-box;
    z-index: 1000;
    transition: opacity 160ms ease, transform 160ms ease, visibility 0s linear 160ms;
  }

  #mlt-header .mlt-nav > .mlt-has-dropdown:hover > .mlt-dropdown,
  #mlt-header .mlt-nav > .mlt-has-dropdown:focus-within > .mlt-dropdown,
  #mlt-header .mlt-nav > .mlt-has-dropdown.mlt-open > .mlt-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0s;
  }
}

@media (prefers-reduced-motion: reduce) {
  #mlt-header .mlt-dropdown {
    transition: none !important;
  }
}
