/* Static-hosting fallback for the original Luxury Presence side menu. */
#global-sidemenu.static-nav-ready {
  position: fixed;
  inset: 0;
  width: 100% !important;
  height: 100vh;
  height: 100dvh;
  background: rgba(0, 0, 0, 0);
  transition: background-color .3s ease, visibility .3s ease;
  z-index: 10000;
}

#global-sidemenu.static-nav-ready.visible { background: rgba(0, 0, 0, .38); }

#global-sidemenu.static-nav-ready .sidebar {
  position: absolute;
  right: 0;
  top: 0;
  max-width: 100%;
  height: 100vh;
  height: 100dvh;
  transform: translateX(100%);
  transition: transform .3s ease-in;
}

#global-sidemenu.static-nav-ready.visible .sidebar { transform: translateX(0); }
body.static-nav-open { overflow: hidden; }

/* Keep the primary section navigation legible without Luxury Presence/WOW JS. */
@media (min-width: 679px) {
  #global-navbar .navigation {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  #global-navbar .navigation ul {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  #global-navbar .navigation__item,
  #global-navbar .navigation__link {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  #global-navbar .navigation__link {
    color: #fff !important;
    text-transform: uppercase !important;
  }
}

@media (max-width: 678px) {
  #global-navbar .navigation {
    display: none !important;
  }
}
