
/* Base wrapper */
.mommm { position: relative; }

/* Trigger button */
.mommm__trigger{
  display:inline-flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
  border:1px solid rgba(0,0,0,0.10);
  background: transparent;
  padding: 10px 14px;
  border-radius: 999px;
  transition: all 250ms ease;
}
.mommm__trigger:focus{ outline: none; box-shadow: 0 0 0 2px rgba(0,0,0,0.08); }
.mommm__trigger:hover{ transform: translateY(-1px); }

/* Hamburger lines (default icon style if no Elementor icon) */
.mommm__burger{ width: 22px; display:flex; flex-direction:column; gap:6px; align-items:flex-end; }
.mommm__burger span{ display:block; height:1px; width:100%; background: currentColor; transition: all 250ms ease; }
.mommm__burger span:nth-child(2){ width: 68%; }

/* Overlay container (visibility animated via JS) */
.mommm__overlay{
  position: fixed;
  inset: 0;
  z-index: 9999;
  visibility: hidden;
}
.mommm__overlay-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  background: var(--mommm-bg, #F9F8F5);
  transform: translateY(-100%);
}
.mommm__overlay-inner{
  position:relative;
  z-index:2;
  height:100%;
  width: calc(100% - 48px);
  max-width: var(--mommm-inner-max, 1200px);
  margin: 0 auto;
  padding: 92px 0 40px;
  opacity: 0;
  transform: translateY(30px);
  display:flex;
  gap: 32px;
}

/* Columns desktop */
.mommm__col1{ width: 25%; border-right: 1px solid rgba(0,0,0,0.05); padding-right: 28px; overflow:auto; }
.mommm__col2{ width: 25%; padding: 0 18px; }
.mommm__col3{ width: 50%; padding-left: 18px; }

.mommm__main-item{
  width:100%;
  background: transparent;
  border: 0;
  padding: 12px 0;
  text-align:left;
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size: 28px;
  line-height: 1.15;
  color: var(--mommm-main-color, rgba(0,0,0,0.40));
  transition: all 250ms ease;
  cursor:pointer;
}
.mommm__main-item:hover{ color: var(--mommm-main-color-active, #111); }
.mommm__main-item.is-active{ color: var(--mommm-main-color-active, #111); padding-left: 16px; }
.mommm__main-item .mommm__arrow{
  opacity:0;
  transform: translateX(-6px);
  transition: all 250ms ease;
  color: var(--mommm-accent, #D4A056);
}
.mommm__main-item.is-active .mommm__arrow{
  opacity:1;
  transform: translateX(0);
}

.mommm__col2 .mommm__eyebrow{
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--mommm-accent, #D4A056);
  margin-bottom: 8px;
}
.mommm__col2 .mommm__title{
  font-size: 20px;
  margin: 0 0 16px;
  color: var(--mommm-title-color, #111);
}
.mommm__sub a{
  display:block;
  padding: 6px 0;
  font-size: 14px;
  color: var(--mommm-sub-color, rgba(0,0,0,0.60));
  text-decoration:none;
  transition: all 250ms ease;
}
.mommm__sub a:hover{ color: var(--mommm-accent, #D4A056); transform: translateX(8px); }

.mommm__feature{
  position:relative;
  width:100%;
  height: 100%;
  min-height: 420px;
  border-radius: 4px;
  overflow:hidden;
  background: #eee;
}
.mommm__feature img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transform: scale(1.04);
}
.mommm__feature img.is-show{
  animation: mommmFadeIn 500ms ease-out forwards;
}
@keyframes mommmFadeIn{
  from { opacity:0; transform: scale(1.05); }
  to { opacity:1; transform: scale(1); }
}
.mommm__feature-overlay{ position:absolute; inset:0; background: rgba(0,0,0,0.10); }
.mommm__feature-caption{
  position:absolute;
  left: 24px;
  bottom: 24px;
  color:#fff;
}
.mommm__feature-caption .mommm__quote{ font-size: 26px; font-style: italic; margin:0; }
.mommm__feature-caption .mommm__meta{ font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 10px; opacity: .85; }

/* Footer in column 1 */
.mommm__footer{
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.mommm__footer .mommm__iconlist{
  display:flex;
  flex-direction:column;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .12em;
  color: rgba(0,0,0,0.45);
}
.mommm__iconlist a{
  color: inherit;
  text-decoration:none;
  display:flex;
  align-items:center;
  gap: 10px;
  transition: color 250ms ease;
}
.mommm__iconlist a:hover{ color: rgba(0,0,0,0.85); }
.mommm__iconlist svg{ width: 16px; height: 16px; }

/* Close button inside overlay (top right) */
.mommm__close{
  position: fixed;
  right: 24px;
  top: 24px;
  z-index: 10000;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  opacity: 0;
  pointer-events:none;
  transition: opacity 250ms ease, transform 250ms ease;
}
.mommm__close.is-show{
  opacity: 1;
  pointer-events:auto;
}
.mommm__close:hover{ transform: translateY(-1px); }

/* Mobile */
@media (max-width: 767px){
  .mommm__overlay-inner{
    width: calc(100% - 36px);
    padding: 88px 0 24px;
    display:block;
    gap: 0;
  }
  .mommm__col1, .mommm__col2, .mommm__col3{ width:100%; border:0; padding:0; }
  .mommm__col2, .mommm__col3{ display:none; }
  .mommm__mobile-item{
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding-bottom: 14px;
    margin-bottom: 14px;
  }
  .mommm__mobile-head{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background: transparent;
    border:0;
    padding: 8px 0;
    cursor:pointer;
  }
  .mommm__mobile-head .mommm__label{ font-size: 30px; line-height: 1.08; color: var(--mommm-title-color, #111); }
  .mommm__chev{
    width: 18px; height: 18px;
    color: rgba(0,0,0,0.35);
    transition: transform 250ms ease;
  }
  .mommm__mobile-item.is-open .mommm__chev{ transform: rotate(90deg); }
  .mommm__mobile-body{
    max-height: 0;
    overflow:hidden;
    opacity:0;
    transition: max-height 450ms ease, opacity 450ms ease, margin-top 450ms ease;
    margin-top: 0;
  }
  .mommm__mobile-item.is-open .mommm__mobile-body{
    max-height: 520px;
    opacity:1;
    margin-top: 10px;
  }
  .mommm__mobile-sub{
    padding-left: 12px;
    border-left: 1px solid rgba(0,0,0,0.10);
    margin-left: 2px;
  }
  .mommm__mobile-preview{
    margin-top: 14px;
    height: 140px;
    border-radius: 4px;
    overflow:hidden;
    background:#eee;
    position:relative;
  }
  .mommm__mobile-preview img{ width:100%; height:100%; object-fit:cover; opacity:.65; }
}

/* hide scrollbar utility */
.mommm__col1::-webkit-scrollbar{ width: 4px; }
.mommm__col1::-webkit-scrollbar-thumb{ background: var(--mommm-accent, #D4A056); border-radius: 4px; }


/* Main items hover behavior: no background, smooth slide right, dim siblings */
.mommm__main-item{ background: transparent !important; }
.mommm__main:hover .mommm__main-item{ opacity: .35; }
.mommm__main:hover .mommm__main-item.is-active{ opacity: 1; }
.mommm__main-item:hover{ opacity: 1 !important; transform: translateX(16px); }
.mommm__main-item{ transition: transform 300ms ease, opacity 300ms ease, color 250ms ease, padding-left 250ms ease; }
.mommm__main-item.is-active{ transform: translateX(16px); }

/* Prevent Elementor button hover background bleed */
.mommm__main-item:hover,
.mommm__main-item:focus{ background: transparent !important; }

/* Close button style vars */
.mommm__close{
  color: var(--mommm-close-color, #111);
  background: var(--mommm-close-bg, rgba(255,255,255,0.75));
  border-color: var(--mommm-close-border, rgba(0,0,0,0.12));
  font-size: var(--mommm-close-size, 16px);
}
.mommm__close:hover{
  color: var(--mommm-close-color-hover, #111);
  background: var(--mommm-close-bg-hover, rgba(255,255,255,0.90));
  border-color: var(--mommm-close-border-hover, rgba(0,0,0,0.18));
}


/* Sub items smooth fade + blur */
.mommm__sub a{
  opacity:0;
  filter: blur(6px);
  transform: translateY(6px);
}
.mommm__sub.is-visible a{
  opacity:1;
  filter: blur(0);
  transform: translateY(0);
}
.mommm__sub a{
  transition: opacity 400ms ease, filter 400ms ease, transform 400ms ease;
}



/* col2 + col3 unified switch animation */
.mommm__col2-content,
.mommm__feature,
.mommm__feature-caption,
.mommm__quote,
.mommm__meta{
  transition: opacity 420ms ease, filter 420ms ease, transform 420ms ease;
}
.mommm__col2-content.is-exit,
.mommm__feature.is-exit{
  opacity:0;
  filter: blur(8px);
  transform: translateY(8px);
}
.mommm__col2-content.is-enter,
.mommm__feature.is-enter{
  opacity:1;
  filter: blur(0);
  transform: translateY(0);
}

/* ensure default visible */
.mommm__col2-content,
.mommm__feature{
  opacity:1;
  filter: blur(0);
  transform: translateY(0);
}

/* Minimal luxury arrow: line draws + head appears */
.mommm__arrow{
  display:inline-flex;
  align-items:center;
  justify-content:flex-end;
  width:34px;
  height:14px;
  margin-left:14px;
  position:relative;
}
.mommm__arrow-line{
  position:absolute;
  left:0;
  right:10px;
  top:50%;
  height:1px;
  background: currentColor;
  transform-origin:left center;
  transform: scaleX(0);
  opacity:0;
  transition: transform 320ms ease, opacity 320ms ease;
}
.mommm__arrow-head{
  position:absolute;
  right:0;
  top:50%;
  width:8px;
  height:8px;
  border-right:1px solid currentColor;
  border-top:1px solid currentColor;
  transform: translateY(-50%) rotate(45deg) scale(0.6);
  opacity:0;
  transition: transform 320ms ease, opacity 320ms ease;
}
.mommm__main-item:hover .mommm__arrow-line,
.mommm__main-item.is-active .mommm__arrow-line{
  transform: scaleX(1);
  opacity:1;
}
.mommm__main-item:hover .mommm__arrow-head,
.mommm__main-item.is-active .mommm__arrow-head{
  transform: translateY(-50%) rotate(45deg) scale(1);
  opacity:1;
}

/* remove previous arrow overrides if any */


/* elementor-focus-reset: remove Elementor default focus ring/box-shadow */
.mommm__trigger:focus,
.mommm__trigger:focus-visible,
.mommm__close:focus,
.mommm__close:focus-visible,
.mommm__main-item:focus,
.mommm__main-item:focus-visible,
.mommm__animated-arrow:focus,
.mommm__animated-arrow:focus-visible,
.mommm__sub a:focus,
.mommm__sub a:focus-visible{
  outline: none !important;
  box-shadow: none !important;
}

/* mommm-animated-arrow (minimal luxury) */
.mommm__animated-arrow{
  display:inline-flex;
  align-items:center;
  gap:16px;
  position:relative;
  color: inherit;
  text-decoration:none;
  transition: color .2s ease;
}
.mommm__animated-arrow .the-arrow{
  width:64px;
  transition: all .2s ease;
}
.mommm__animated-arrow .the-arrow.-left{
  position:absolute;
  left:0;
  top:50%;
  transform: translateY(-50%);
}
.mommm__animated-arrow .the-arrow > .shaft{
  display:block;
  height:1px;
  background: currentColor;
  position:relative;
  transition: all .2s ease;
  will-change: transform, width;
}
.mommm__animated-arrow .the-arrow > .shaft:before,
.mommm__animated-arrow .the-arrow > .shaft:after{
  content:'';
  position:absolute;
  top:0;
  right:0;
  height:1px;
  background: currentColor;
  transition: all .2s ease;
}
.mommm__animated-arrow .the-arrow.-left > .shaft{
  width:0;
  opacity:.65;
}
.mommm__animated-arrow .the-arrow.-left > .shaft:before,
.mommm__animated-arrow .the-arrow.-left > .shaft:after{
  width:0;
  opacity:.65;
  transform: rotate(0);
}
.mommm__animated-arrow .the-arrow.-right > .shaft{
  width:64px;
  transition-delay:.2s;
}
.mommm__animated-arrow .the-arrow.-right > .shaft:before,
.mommm__animated-arrow .the-arrow.-right > .shaft:after{
  width:8px;
  transition-delay:.3s;
}
.mommm__animated-arrow .the-arrow.-right > .shaft:before{ transform-origin: top right; transform: rotate(40deg); }
.mommm__animated-arrow .the-arrow.-right > .shaft:after{ transform-origin: bottom right; transform: rotate(-40deg); }

.mommm__animated-arrow .main{
  display:inline-flex;
  align-items:center;
  transition: transform .2s ease;
}
.mommm__animated-arrow .main .text{ line-height:1; }

.mommm__main-item:hover .mommm__animated-arrow .the-arrow.-left > .shaft{
  width:64px;
  opacity:1;
  transition-delay:.1s;
}
.mommm__main-item:hover .mommm__animated-arrow .the-arrow.-left > .shaft:before,
.mommm__main-item:hover .mommm__animated-arrow .the-arrow.-left > .shaft:after{
  width:8px;
  opacity:1;
  transition-delay:.1s;
  transform: rotate(40deg);
}
.mommm__main-item:hover .mommm__animated-arrow .the-arrow.-left > .shaft:after{
  transform: rotate(-40deg);
}
.mommm__main-item:hover .mommm__animated-arrow .main{
  transform: translateX(80px);
}
.mommm__main-item:hover .mommm__animated-arrow .the-arrow.-right > .shaft{
  width:0;
  transform: translateX(200%);
  transition-delay:0s;
}
.mommm__main-item:hover .mommm__animated-arrow .the-arrow.-right > .shaft:before,
.mommm__main-item:hover .mommm__animated-arrow .the-arrow.-right > .shaft:after{
  width:0;
  transition-delay:0s;
  transform: rotate(0);
}

/* Neutralize legacy arrow styles (JS now uses mommm__animated-arrow) */
.mommm__arrow{ display:none !important; }


/* global-button-reset : remove Elementor pink hover/focus inside widget */
.mommm,
.mommm *{
  --e-global-color-primary: inherit;
}

.mommm button,
.mommm [type=button],
.mommm [type=submit]{
  outline: none !important;
  box-shadow: none !important;
}

.mommm button:hover,
.mommm button:focus,
.mommm button:focus-visible,
.mommm [type=button]:hover,
.mommm [type=button]:focus,
.mommm [type=button]:focus-visible,
.mommm [type=submit]:hover,
.mommm [type=submit]:focus,
.mommm [type=submit]:focus-visible{
  outline: none !important;
  box-shadow: none !important;
  background-image: none !important;
}

/* Featured image dynamic styling */
.mommm__image{
  width: var(--mommm-img-w, 100%);
  height: var(--mommm-img-h, auto);
  border-radius: var(--mommm-img-radius, 0);
  overflow: hidden;
}
.mommm__image img{
  width:100%;
  height:100%;
  object-fit: cover;
}


/* global-button-pink-override: neutralize theme's button focus/hover styles inside the widget/overlay */
.elementor-widget-medusa_offcanvas_mega_menu button:focus,
.elementor-widget-medusa_offcanvas_mega_menu button:hover,
.elementor-widget-medusa_offcanvas_mega_menu [type=button]:focus,
.elementor-widget-medusa_offcanvas_mega_menu [type=button]:hover,
.elementor-widget-medusa_offcanvas_mega_menu [type=submit]:focus,
.elementor-widget-medusa_offcanvas_mega_menu [type=submit]:hover{
  outline: none !important;
  box-shadow: none !important;
}

/* specifically keep our colors on trigger/close/main items even if theme applies background/color */
.elementor-widget-medusa_offcanvas_mega_menu .mommm__trigger:hover,
.elementor-widget-medusa_offcanvas_mega_menu .mommm__trigger:focus,
.elementor-widget-medusa_offcanvas_mega_menu .mommm__trigger:focus-visible,
.elementor-widget-medusa_offcanvas_mega_menu .mommm__close:hover,
.elementor-widget-medusa_offcanvas_mega_menu .mommm__close:focus,
.elementor-widget-medusa_offcanvas_mega_menu .mommm__close:focus-visible,
.elementor-widget-medusa_offcanvas_mega_menu .mommm__main-item:hover,
.elementor-widget-medusa_offcanvas_mega_menu .mommm__main-item:focus,
.elementor-widget-medusa_offcanvas_mega_menu .mommm__main-item:focus-visible{
  background: inherit;
}


/* Jami arrow button (main items) */
.mommm__main-item .jami-link{
  color: currentColor;
  cursor: pointer;
  font-weight: 400;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.mommm__main-item .jami-link--arrowed{
  height: 2rem;
  line-height: 2rem;
}

.mommm__main-item .arrow-icon{
  position: relative;
  top: -1px;
  transition: transform .45s cubic-bezier(.22,.61,.36,1);
}

.mommm__main-item .arrow-icon--circle{
  transition: stroke-dashoffset .45s cubic-bezier(.22,.61,.36,1);
  stroke-dasharray: 95;
  stroke-dashoffset: 95;
}

.mommm__main-item:hover .arrow-icon{
  transform: translate3d(6px,0,0);
}

.mommm__main-item:hover .arrow-icon--circle{
  stroke-dashoffset: 0;
}

/* smoother main label shift */

/* smooth-main-hover-v2: avoid jitter by animating only inner link, not the parent button */
.mommm__main-item{ transform:none !important; }
.mommm__main-item .jami-link{ will-change: transform; transition: transform .55s cubic-bezier(.22,.61,.36,1); }
.mommm__main-item:hover .jami-link{ transform: translate3d(6px,0,0); }

/* media-overflow-hidden */
.mommm__media{ overflow:hidden; }
.mommm__media img{ width:100%; display:block; }


/* close-icon-fix */
.mommm__close,
.mommm__close svg,
.mommm__close span,
.mommm__close i{
  line-height: 1;
}
