/* =========================================================================
   Elite Mega Menu — Stylesheet
   Targets: .emm-nav and all descendants.
   Variables are set per-widget via Elementor selectors; these are defaults.
   ========================================================================= */

/* ── Reset / Base ─────────────────────────────────────────────────────── */
.emm-nav *,
.emm-nav *::before,
.emm-nav *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.emm-nav {
  --emm-duration: 250ms;
  --emm-delay:    0ms;
  --emm-easing:   cubic-bezier(0.16, 1, 0.3, 1);
  --emm-cols:     3;

  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  font-family: inherit;
  line-height: 1;
}

.emm-nav ul {
  list-style: none;
}

.emm-nav a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.emm-nav button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

/* ── Desktop bar / Mobile bar ─────────────────────────────────────────── */
.emm-desktop-bar {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 20px;
}

.emm-mobile-bar {
  display: none;
  align-items: center;
  width: 100%;
  gap: 10px;
}

/* ── Nav logo ─────────────────────────────────────────────────────────── */
.emm-nav-logo-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* Grid stacking: both logos occupy the same cell so layout never shifts */
.emm-nav-logo-link {
  display: inline-grid;
  align-items: center;
}

.emm-nav-logo-default,
.emm-nav-logo-scrolled {
  grid-area: 1 / 1;
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

/* Scrolled logo hidden until threshold is crossed */
.emm-nav-logo-scrolled {
  opacity: 0;
  pointer-events: none;
}

.emm-nav-logo-default img,
.emm-nav-logo-scrolled img {
  display: block;
  max-height: 40px;
  width: auto;
  height: auto;
}

/* Swap logos on scroll/sticky — only opacity changes, layout stays the same */
.emm-nav.emm-logo-scrolled .emm-nav-logo-default,
.emm-nav.emm-sticky .emm-nav-logo-default {
  opacity: 0;
  pointer-events: none;
}
.emm-nav.emm-logo-scrolled .emm-nav-logo-scrolled,
.emm-nav.emm-sticky .emm-nav-logo-scrolled {
  opacity: 1;
  pointer-events: auto;
}

/* Reverse order when logo is on the right */
.emm-desktop-bar.emm-logo-right {
  flex-direction: row-reverse;
}

/* ── Mobile bar logo ──────────────────────────────────────────────────── */
.emm-mobile-bar-logo {
  flex: 1;
  display: inline-flex;
  align-items: center;
}

.emm-mobile-bar-logo img {
  display: block;
  max-height: 36px;
  width: auto;
  height: auto;
}

/* ── Desktop menu ─────────────────────────────────────────────────────── */
.emm-menu {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  width: 100%;
}

/* Alignment helpers */
.emm-menu.emm-align-left      { justify-content: flex-start; }
.emm-menu.emm-align-center    { justify-content: center; }
.emm-menu.emm-align-right     { justify-content: flex-end; }
.emm-menu.emm-align-justified { justify-content: space-between; }

/* ── Top-level item ───────────────────────────────────────────────────── */
.emm-item {
  position: relative;
}

.emm-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  color: inherit;
  white-space: nowrap;
  position: relative;
  transition: color var(--emm-duration) var(--emm-easing),
              background var(--emm-duration) var(--emm-easing);
}

.emm-link.emm-icon-after { flex-direction: row-reverse; }

/* ── Pointer / hover indicator ────────────────────────────────────────── */
.emm-pointer-underline .emm-link::after,
.emm-pointer-overline  .emm-link::after,
.emm-pointer-dot       .emm-link::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--emm-duration) var(--emm-easing);
}

.emm-pointer-underline .emm-link::after { bottom: 4px; border-radius: 2px; }
.emm-pointer-overline  .emm-link::after { top: 4px;    border-radius: 2px; }

.emm-pointer-dot .emm-link::after {
  bottom: 4px;
  left: 50%;
  right: auto;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  margin-left: -2px;
}

.emm-pointer-underline .emm-item:hover > .emm-link::after,
.emm-pointer-underline .emm-item.emm-active > .emm-link::after,
.emm-pointer-underline .emm-item.current-menu-item > .emm-link::after,
.emm-pointer-overline  .emm-item:hover > .emm-link::after,
.emm-pointer-overline  .emm-item.emm-active > .emm-link::after,
.emm-pointer-dot       .emm-item:hover > .emm-link::after,
.emm-pointer-dot       .emm-item.emm-active > .emm-link::after {
  transform: scaleX(1);
}

.emm-pointer-background .emm-link:hover,
.emm-pointer-background .emm-item.emm-active > .emm-link {
  background: rgba(0, 0, 0, 0.06);
  border-radius: 6px;
}

/* ── Arrow ────────────────────────────────────────────────────────────── */
.emm-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  transition: transform var(--emm-duration) var(--emm-easing);
  /* pointer-events: auto so the arrow is independently clickable */
  cursor: pointer;
  border-radius: 3px;
}

.emm-arrow:hover {
  background: rgba(0, 0, 0, .06);
}

.emm-chevron {
  display: block;
  flex-shrink: 0;
  transition: none;
}

.emm-item.emm-open > .emm-link .emm-arrow,
.emm-item:focus-within > .emm-link .emm-arrow {
  transform: rotate(180deg);
}

/* ── Scale-up hover indicator ──────────────────────────────────────────── */
/* Ensure no parent clips the scaled link */
.emm-pointer-scale-up,
.emm-pointer-scale-up .emm-item {
  overflow: visible;
}

.emm-pointer-scale-up .emm-link {
  transform-origin: center;
  transition: transform var(--emm-duration) var(--emm-easing),
              color      var(--emm-duration) var(--emm-easing),
              background var(--emm-duration) var(--emm-easing);
}

.emm-pointer-scale-up .emm-item:hover > .emm-link,
.emm-pointer-scale-up .emm-item.emm-active > .emm-link,
.emm-pointer-scale-up .emm-item.current-menu-item > .emm-link {
  transform: scale(1.12);
}

/* ── Badge ────────────────────────────────────────────────────────────── */
.emm-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  padding: 2px 6px;
  letter-spacing: .04em;
  text-transform: uppercase;
  pointer-events: none;
}

.emm-badge-square    { border-radius: 2px; }
.emm-badge-rounded   { border-radius: 6px; }
.emm-badge-pill      { border-radius: 999px; }

.emm-badge-new  { background-color: #10b981; color: #fff; }
.emm-badge-hot  { background-color: #ef4444; color: #fff; }
.emm-badge-sale { background-color: #f59e0b; color: #fff; }

/* ── Icons ────────────────────────────────────────────────────────────── */
.emm-item-icon,
.emm-sub-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  width: 16px;
  height: 16px;
  transition: color var(--emm-duration) var(--emm-easing);
}

.emm-item-desc {
  display: none; /* shown in fancy large-item layouts */
}

/* ── Dropdown container ───────────────────────────────────────────────── */
.emm-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 8px 40px rgba(0, 0, 0, .12);
  z-index: 9999;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;

  /* Animation origin */
  transition:
    opacity      var(--emm-duration) var(--emm-easing),
    transform    var(--emm-duration) var(--emm-easing),
    visibility   0ms                 linear var(--emm-duration);
}

/* Full-width dropdown anchors to nav edges */
.emm-dropdown.emm-dropdown-full {
  left: 0;
  right: 0;
  width: 100% !important;
}

/* Smart right-edge flip for items near viewport right */
.emm-item.emm-flip-left .emm-dropdown {
  left: auto;
  right: 0;
}

/* ── Dropdown open state ──────────────────────────────────────────────── */
.emm-item.emm-open > .emm-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity    var(--emm-duration) var(--emm-easing),
    transform  var(--emm-duration) var(--emm-easing),
    visibility 0ms                 linear 0ms;
}

/* ── Per-animation transforms ─────────────────────────────────────────── */
/* slide-up (default) */
.emm-anim-slide-up  { transform: translateY(8px); }
.emm-item.emm-open > .emm-anim-slide-up  { transform: translateY(0); }

/* slide-down */
.emm-anim-slide-down { transform: translateY(-8px); }
.emm-item.emm-open > .emm-anim-slide-down { transform: translateY(0); }

/* scale */
.emm-anim-scale { transform: scale(.95); transform-origin: top left; }
.emm-item.emm-open > .emm-anim-scale { transform: scale(1); }

/* zoom */
.emm-anim-zoom { transform: scale(.9); transform-origin: top center; }
.emm-item.emm-open > .emm-anim-zoom { transform: scale(1); }

/* flip-x */
.emm-anim-flip-x { transform: perspective(400px) rotateX(-8deg); transform-origin: top center; }
.emm-item.emm-open > .emm-anim-flip-x { transform: perspective(400px) rotateX(0deg); }

/* fade (no transform shift) */
.emm-anim-fade { transform: none; }

/* ── Dropdown inner grid ──────────────────────────────────────────────── */
.emm-dropdown-inner {
  display: grid;
  grid-template-columns: repeat(var(--emm-cols, 1), 1fr);
  column-gap: 32px;
  padding: 20px 24px;
}

/* Fallback for wp-sub (list style, no grid) */
.emm-dropdown-inner.emm-wp-sub {
  display: block;
  padding: 8px 0;
}

/* ── Sub-menu list ────────────────────────────────────────────────────── */
.emm-sub-menu {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0;
}

.emm-col-heading {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #888;
  padding: 0 10px 8px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.emm-sub-link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  color: #333;
  font-size: 14px;
  transition: color var(--emm-duration) var(--emm-easing),
              background var(--emm-duration) var(--emm-easing);
}

.emm-sub-link:hover {
  background: rgba(0, 0, 0, .04);
  color: inherit;
}

.emm-sub-label {
  display: block;
  font-weight: 500;
  line-height: 1.4;
}

.emm-sub-desc {
  display: block;
  font-size: 12px;
  color: #888;
  line-height: 1.4;
  margin-top: 2px;
}

/* ── Sticky ───────────────────────────────────────────────────────────── */
.emm-nav.emm-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  animation: emm-sticky-in .3s var(--emm-easing);
}

@keyframes emm-sticky-in {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

/* ── Hamburger (fallback toggle) ──────────────────────────────────────── */
.emm-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  cursor: pointer;
  border-radius: 6px;
  font-size: 20px;
  line-height: 1;
  transition: background var(--emm-duration) ease;
  overflow: hidden;
}

/* Constrain icon/SVG inside the toggle to prevent unexpected growth */
.emm-toggle i,
.emm-toggle svg:not(.emm-hamburger svg) {
  width: 1em;
  height: 1em;
  max-width: 1em;
  max-height: 1em;
  display: block;
  flex-shrink: 0;
}

.emm-toggle:hover { background: rgba(0,0,0,.06); }
.emm-toggle:focus-visible { outline: 2px solid currentColor; outline-offset: 2px; }

.emm-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}

.emm-hamburger span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--emm-duration) var(--emm-easing),
              opacity   var(--emm-duration) ease;
}

/* Animate hamburger → X */
.emm-nav.emm-mobile-open .emm-hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.emm-nav.emm-mobile-open .emm-hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.emm-nav.emm-mobile-open .emm-hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile bar layout ────────────────────────────────────────────────── */
.emm-mobile-bar {
  justify-content: flex-end;
}

/* Toggle position via prefix_class on Elementor wrapper */
.emm-toggle-pos-left .emm-mobile-bar  { justify-content: flex-start; }
.emm-toggle-pos-left .emm-toggle      { order: -1; }
.emm-toggle-pos-right .emm-mobile-bar { justify-content: flex-end; }
.emm-toggle-pos-right .emm-toggle     { order: 2; }

/* ── Mobile Overlay ───────────────────────────────────────────────────── */
.emm-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 1099;
  opacity: 0;
  transition: opacity var(--emm-duration) ease;
  cursor: pointer;
}

.emm-overlay.emm-visible {
  opacity: 1;
}

/* ── Mobile Panel (Off-canvas / Fullscreen) ───────────────────────────── */
.emm-mobile-panel {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 1100;
  width: 300px;
  max-width: 100vw;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px;
  box-shadow: 4px 0 24px rgba(0,0,0,.12);
  transition: transform var(--emm-duration) var(--emm-easing);
  overscroll-behavior: contain;
}

/* Slide from left (default) */
.emm-mobile-panel.emm-side-left {
  left: 0;
  right: auto;
  transform: translateX(-110%);
}

/* Slide from right */
.emm-mobile-panel.emm-side-right {
  right: 0;
  left: auto;
  transform: translateX(110%);
}

/* Fullscreen */
.emm-mobile-panel.emm-mobile-fullscreen {
  width: 100vw;
  left: 0;
  right: 0;
  transform: translateX(-100%);
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Inline dropdown style */
.emm-mobile-panel.emm-mobile-dropdown {
  position: static;
  transform: none;
  box-shadow: none;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--emm-duration) var(--emm-easing);
  padding: 0;
}

.emm-mobile-panel.emm-mobile-dropdown.emm-panel-open {
  max-height: 80vh;
}

/* Open state for all panel types */
.emm-mobile-panel.emm-panel-open:not(.emm-mobile-dropdown) {
  transform: translateX(0) !important;
}

/* ── Mobile Panel Parts ───────────────────────────────────────────────── */
.emm-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.emm-mobile-logo {
  max-height: 40px;
  width: auto;
}

.emm-mobile-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  transition: background var(--emm-duration) ease;
  margin-left: auto;
  overflow: hidden;
}

/* Constrain icon/SVG inside the close button to prevent it from growing */
.emm-mobile-close i,
.emm-mobile-close svg {
  width: 1em;
  height: 1em;
  max-width: 1em;
  max-height: 1em;
  display: block;
  flex-shrink: 0;
}

.emm-mobile-close:hover { background: rgba(0,0,0,.06); }
.emm-mobile-close:focus-visible { outline: 2px solid currentColor; }

.emm-mobile-body {
  flex: 1;
  overflow-y: auto;
}

.emm-mobile-footer {
  padding-top: 20px;
  flex-shrink: 0;
}

/* ── Mobile menu items ────────────────────────────────────────────────── */
.emm-mobile-menu {
  display: flex;
  flex-direction: column;
}

.emm-mobile-item + .emm-mobile-item {
  border-top: 1px solid rgba(0,0,0,.06);
}

.emm-mobile-item-row {
  display: flex;
  align-items: center;
}

.emm-mobile-link {
  display: block;
  flex: 1;
  padding: 13px 4px;
  font-size: 15px;
  font-weight: 500;
  color: inherit;
  transition: color var(--emm-duration) ease;
}

.emm-mobile-link:hover { opacity: .75; }

.emm-mobile-expand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  flex-shrink: 0;
  font-size: 14px;
  transition: background var(--emm-duration) ease;
}

.emm-mobile-expand:hover { background: rgba(0,0,0,.05); }
.emm-mobile-expand:focus-visible { outline: 2px solid currentColor; }

.emm-expand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--emm-duration) var(--emm-easing);
}

.emm-mobile-expand[aria-expanded="true"] .emm-expand-icon {
  transform: rotate(180deg);
}

/* Accordion sub-menu */
.emm-mobile-sub {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-left: 12px;
  border-left: 2px solid rgba(0,0,0,.08);
  margin-left: 4px;
  margin-bottom: 4px;
  max-height: 0;
  transition: max-height var(--emm-duration) var(--emm-easing);
}

.emm-mobile-sub:not([hidden]) {
  max-height: 600px;
}

.emm-mobile-sub-link {
  font-size: 14px;
  font-weight: 400;
  padding: 10px 4px;
  color: #555;
}

/* Mobile CTA button */
.emm-mobile-cta {
  display: block;
  width: 100%;
  padding: 13px 20px;
  background: #111;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: opacity var(--emm-duration) ease;
}

.emm-mobile-cta:hover { opacity: .85; color: #fff; }

/* ── Fullscreen mobile adjustments ────────────────────────────────────── */
.emm-mobile-fullscreen .emm-mobile-menu {
  align-items: center;
}

.emm-mobile-fullscreen .emm-mobile-link {
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 700;
  padding: 12px 8px;
  text-align: center;
}

.emm-mobile-fullscreen .emm-mobile-sub-link {
  font-size: 1rem;
  font-weight: 400;
}

.emm-mobile-fullscreen .emm-mobile-item + .emm-mobile-item {
  border-top: none;
}

/* ── Focus / keyboard styles ──────────────────────────────────────────── */
.emm-link:focus-visible,
.emm-sub-link:focus-visible,
.emm-mobile-link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
  border-radius: 4px;
}

/* ── WP sub-menu inside walker ────────────────────────────────────────── */
.emm-dropdown-inner.emm-wp-sub .emm-sub-menu {
  min-width: 200px;
  padding: 0;
}

.emm-dropdown-inner.emm-wp-sub .emm-sub-link {
  padding: 10px 16px;
  border-radius: 0;
  font-size: 14px;
}

/* ── Responsive: hide/show bars ───────────────────────────────────────── */
/* Default: desktop visible, mobile hidden.
   The JS swaps these at the breakpoint by adding .emm-is-mobile to .emm-nav */

.emm-nav.emm-is-mobile .emm-desktop-bar  { display: none; }
.emm-nav.emm-is-mobile .emm-mobile-bar   { display: flex; }
.emm-nav:not(.emm-is-mobile) .emm-mobile-panel,
.emm-nav:not(.emm-is-mobile) .emm-overlay { display: none !important; }

/* Elementor device preview helpers — also show mobile layout in editor */
@media (max-width: 991px) {
  .emm-desktop-bar { display: none; }
  .emm-mobile-bar  { display: flex; }
}

@media (min-width: 992px) {
  .emm-mobile-panel,
  .emm-overlay { display: none !important; }
}

/* ── Elementor editor overrides ───────────────────────────────────────── */

/* 1. Hide the full-screen overlay — it would trap clicks inside the iframe */
.emm-nav.emm-is-editor .emm-overlay {
  display: none !important;
}

/* 2. Always show the mobile bar so the hamburger is accessible at any
      viewport width in the editor canvas.                                */
.emm-nav.emm-is-editor .emm-mobile-bar {
  display: flex;
}

/* 3. Desktop submenus: use CSS :hover so they open regardless of whether
      Elementor intercepts JS mouse events.                               */
.emm-nav.emm-is-editor .emm-item.emm-has-dropdown:hover > .emm-dropdown {
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: none !important;
  transition: none;
}

/* 4. Mobile panel positioning: absolute so Elementor's responsive-preview
      CSS transform doesn't break position:fixed inside the iframe.      */
.emm-nav.emm-is-editor .emm-mobile-panel:not(.emm-mobile-dropdown) {
  position: absolute !important;
  top: 100% !important;
  bottom: auto !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: auto !important;
  max-height: 75vh !important;
  overflow-y: auto !important;
  z-index: 9999 !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .18) !important;
}

/* Primary open mechanism: JS adds emm-mobile-open to nav when toggle is
   clicked. This persists regardless of focus state, so clicking expand
   buttons inside the panel never accidentally closes it.               */
.emm-nav.emm-is-editor.emm-mobile-open .emm-mobile-panel:not(.emm-mobile-dropdown) {
  display: flex !important;
  transform: translateX(0) !important;
}

/* Secondary open mechanism via emm-panel-open class on the panel itself */
.emm-nav.emm-is-editor .emm-mobile-panel:not(.emm-mobile-dropdown).emm-panel-open {
  display: flex !important;
  transform: translateX(0) !important;
}

/* Tertiary CSS-only fallback: any element inside the whole nav has focus
   (toggle click gives it native focus; entire-nav :focus-within means
   interacting with any panel child keeps this true longer than
   .emm-mobile-bar:focus-within alone).                                  */
.emm-nav.emm-is-editor:focus-within .emm-mobile-panel:not(.emm-mobile-dropdown) {
  display: flex !important;
  transform: translateX(0) !important;
}

/* 5. Inline-dropdown panel: make it expand-visible in the editor so the
      user can see and style it. The max-height:0 default is overridden. */
.emm-nav.emm-is-editor .emm-mobile-panel.emm-mobile-dropdown {
  display: flex !important;
  max-height: 80vh !important;
  overflow-y: auto !important;
  padding: 20px !important;
}

/* ── Stacking context: ensures the nav and its Elementor wrapper float above
   subsequent Elementor sections (e.g. hero images that follow the header).
   If the hero still overlaps, raise the header Elementor *section* z-index
   to 10+ in Elementor → Advanced → Z-Index.                                 */
.elementor-widget-elite_mega_menu {
  position: relative;
  z-index: 100;
}

.emm-nav {
  position: relative;
  z-index: 100;
  overflow: visible;
}
