/* Contenitore hamburger */
.oxymb-hamburger {
  width: 28px;
  height: 24px;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1002; /* sopra il menu */
}

.oxymb-hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #11989c;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Tema scuro */
.oxymb-hamburger-dark span {
  background: #ffffff;
}

/* Animazione hamburger → X */
.oxymb-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.oxymb-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.oxymb-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Sfondo menu mobile */
#oxymb-menu.mm-light.mm-light--opened {
  background-color: #ffffff !important;
  z-index: 1001;
}
