/* === Mega Menu New - 7c5d0848 === */

.mmn-nav-7c5d0848 {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 4px;
  background: #fff;
  box-sizing: border-box;
  width: 100%;
  height: 56px;
}
.mmn-nav-7c5d0848__list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  gap: 4px; /* Added spacing between items for clear background visibility */
}
.mmn-item-7c5d0848 {
  position: relative;
  margin: 0;
  padding: 0;
}

/* Specific button reset to override global theme button backgrounds (e.g. pink buttons) */
button.mmn-item-7c5d0848__trigger,
a.mmn-item-7c5d0848__trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 14px;
  height: 56px;
  font-size: 13.5px;
  line-height: 56px;
  color: #6b7280;
  cursor: pointer;
  background: transparent !important; /* Neutralize theme button pink fallbacks */
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  font-family: inherit;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  transition: color .15s ease, background-color .15s ease;
  outline-offset: 2px;
}

/* Highly specific resets to beat deep theme focus/hover rules like button:hover or [type=button]:hover */
.mmn-nav-7c5d0848 ul.mmn-nav-7c5d0848__list li.mmn-item-7c5d0848 button.mmn-item-7c5d0848__trigger:hover,
.mmn-nav-7c5d0848 ul.mmn-nav-7c5d0848__list li.mmn-item-7c5d0848 button.mmn-item-7c5d0848__trigger:focus,
.mmn-nav-7c5d0848 ul.mmn-nav-7c5d0848__list li.mmn-item-7c5d0848 a.mmn-item-7c5d0848__trigger:hover,
.mmn-nav-7c5d0848 ul.mmn-nav-7c5d0848__list li.mmn-item-7c5d0848 a.mmn-item-7c5d0848__trigger:focus {
  background: transparent !important;
  background-color: transparent !important;
  text-decoration: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Let Elementor custom control overrides still apply using wrapper selectors */
.mmn-nav-7c5d0848 .mmn-item-7c5d0848__trigger:hover {
  color: #111827;
}
.mmn-nav-7c5d0848 .mmn-item-7c5d0848__trigger.is-active {
  color: #111827;
}
.mmn-item-7c5d0848__trigger.is-active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: #185FA5;
  border-radius: 2px 2px 0 0;
}
.mmn-arrow-7c5d0848 {
  width: 10px;
  height: 10px;
  display: block;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.mmn-arrow-7c5d0848 svg {
  width: 100%;
  height: 100%;
}
.mmn-item-7c5d0848--open .mmn-arrow-7c5d0848 {
  transform: rotate(180deg);
}

.mmn-dropdown-7c5d0848 {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: auto;
  min-width: 200px;
  max-width: calc(100vw - 16px);
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  z-index: 9999;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

/* Animations */
.mmn-nav-7c5d0848[data-animation="fade-slide"] .mmn-dropdown-7c5d0848 {
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.mmn-nav-7c5d0848[data-animation="fade-slide"] .mmn-item-7c5d0848--open .mmn-dropdown-7c5d0848 {
  transform: translateY(0);
}
.mmn-nav-7c5d0848[data-animation="fade"] .mmn-dropdown-7c5d0848 {
  transition: opacity .18s ease, visibility .18s;
}
.mmn-nav-7c5d0848[data-animation="none"] .mmn-dropdown-7c5d0848 {
  transition: none;
}

.mmn-item-7c5d0848--open .mmn-dropdown-7c5d0848 {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mmn-dropdown-7c5d0848__inner {
  padding: 20px;
}

.mmn-cta-7c5d0848 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding: 8px 18px;
  background: #185FA5;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity .15s ease;
}
.mmn-cta-7c5d0848:hover {
  opacity: .85;
  color: #fff;
}

/* Editor preview mode styling - Fix vertical stacks by keeping nav list horizontal in the editor */
.elementor-editor-active .mmn-nav-7c5d0848 {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  height: 56px !important;
}
.elementor-editor-active .mmn-nav-7c5d0848__list {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
}
.elementor-editor-active .mmn-item-7c5d0848 {
  position: relative !important;
}
/* Revert editor override fallback dropdown behavior so it behaves like frontend overlay */
.elementor-editor-active .mmn-dropdown-7c5d0848 {
  position: absolute !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
}
.elementor-editor-active .mmn-item-7c5d0848--open .mmn-dropdown-7c5d0848 {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

/* Mobile Responsive Adjustments */
@media (max-width: 767px) {
  .mmn-nav-7c5d0848 {
    flex-wrap: wrap;
    height: auto;
    padding: 12px;
    gap: 12px;
  }
  .mmn-nav-7c5d0848__list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 4px;
  }
  .mmn-item-7c5d0848 {
    width: 100%;
  }
  .mmn-item-7c5d0848__trigger {
    width: 100%;
    justify-content: space-between;
    height: 44px;
    line-height: 44px;
    padding: 0 12px;
  }
  .mmn-dropdown-7c5d0848 {
    position: static;
    width: 100% !important;
    max-width: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    box-shadow: none;
    border: none;
    border-top: 1px solid #f3f4f6;
  }
  .mmn-item-7c5d0848--open .mmn-dropdown-7c5d0848 {
    display: block;
  }
  .mmn-cta-7c5d0848 {
    width: 100%;
    margin-left: 0;
    margin-top: 8px;
  }
}
