.mme-hamburger {
  display: inline-block;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  z-index: 1002;
}
.mme-hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px;
  background-color: #000;
  transition: all 0.3s ease;
}

.entete-accueil .mme-hamburger span {
	background-color: #FFFFFF;
}

.mme-popup {
  position: fixed;
  top: 0;
  left: -320px;
  width: 280px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 6px rgba(0,0,0,0.2);
  overflow-y: auto;
  transition: left 0.4s ease;
  z-index: 2002;
  padding: 20px;
  padding-top: 60px;
}

.mme-popup.open {
  left: 0;
}

.mme-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0.4);
  display: none;
  z-index: 2001;
}

.mme-overlay.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.mme-close {
  background: none;
  border: none;
  font-size: 30px;
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
}

.mme-menu {
  list-style: none;
  padding-left: 0;
  text-align: left;
}

.mme-menu li {
  margin-bottom: 20px;
  margin-top: 20px;
}

.mme-menu a {
  text-decoration: none;
  color: #333;
}

.mme-menu .sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-left: 15px;
  list-style: none;
  padding-left: 10px;
  border-left: 2px solid #ccc;
}

.mme-menu .menu-item-has-children > a::after {
  content: ">";
  float: right;
  margin-left: 8px;
  font-size: 16px;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.mme-menu .menu-item-has-children.open > a::after {
  transform: rotate(180deg);
}

