/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 29 2025 | 23:58:35 */
/* Default: menu hidden and non-interactive */
.wp-block-outermost-mega-menu__menu-container {
  opacity: 0;
  visibility: hidden;
  pointer-events: none; /* Prevent clicks/interactions */
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* When menu is open: make visible and clickable */
.wp-block-outermost-mega-menu__menu-container.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto; /* Allow interaction only when visible */
}