/* Scope rules to off-canvas only to avoid desktop effects */
.mc-offcanvas-ready li.menu-item-has-children > .sub-menu{
  max-height: 0;
  overflow: hidden;
  transition: max-height 240ms ease;
  will-change: max-height;
}

.mc-offcanvas-ready li.menu-item-has-children.mc-open > .sub-menu{
  max-height: 800px; /* large enough for typical lists */
}

/* remove any default toggle icons if present (optional) */
.mc-offcanvas-ready li.menu-item-has-children .submenu-toggle{
  display: none !important;
}