/* assets/css/custom.css – ganz am Ende laden! */

.quanto-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;                                  /* wieder hinzufügen */
  background-color: rgba(var(--color-black-rgb), 0.6); /* wieder hinzufügen */ 
  z-index: 999999;                              /* wieder hinzufügen */
  height: auto !important;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.8s;
  pointer-events: none !important;
}

/* Menü offen → Overlay+Inhalt anzeigen */
.quanto-menu-wrapper.quanto-body-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto !important;
}

/* Toggle-Button immer vorne */
.quanto-menu-toggle {
  position: relative;
  z-index: 1000000 !important;
}