/* ================================
   EBZ Fullscreen Menu Overlay
================================ */

/* Overlay-Grundzustand */
#fullscreen-menu-overlay.fullscreen-menu {
  position: fixed;
  inset: 0;
  z-index: 999999;

  width: 100vw;
  height: 100vh;
  min-height: 100vh;

  background: #ffffff;

  display: none;
  overflow-y: auto;
  overflow-x: hidden;

  overscroll-behavior: contain;
}

/* Overlay geöffnet */
body.fullscreen-menu-open #fullscreen-menu-overlay.fullscreen-menu {
  display: flex;
}

/* Body sperren, wenn Menü offen ist */
html.fullscreen-menu-open,
body.fullscreen-menu-open {
  overflow: hidden;
}

/* Optional: Divi/Theme Builder-Abstände im Overlay neutralisieren */
#fullscreen-menu-overlay.fullscreen-menu {
  padding: 0 !important;
  margin: 0 !important;
}

/* Falls Divi der Section innen automatische Abstände gibt */
#fullscreen-menu-overlay.fullscreen-menu.et_pb_section {
  padding: 0 !important;
}