.mega-menu {
  position: relative;
}

.menu-level-1 {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-level-1 > li {
  position: relative;
  padding: 1rem;
}

.menu-level-1 > li > a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}

.menu-item.has-submenu:hover .mega-panel {
  display: flex;
}

.mega-panel {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  min-width: 1200px;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}


.mega-left {
  width: 260px;       /* largeur fix */
  min-width: 220px;
  max-width: 320px;
  background-color: #233737;
  padding: 1rem 0;
  flex-shrink: 0;     /* évite que la colonne rétrécisse si trop de colonnes à droite */
}

.menu-level-2 {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-level-2 li {
  padding: 0.75rem 1.5rem;
  cursor: pointer;
}

.menu-level-2 li:hover, .menu-level-2 .active {
  background-color: ##dedb00;
}

.submenu-title, .submenu-label, .submenu-arrow {
  color: #fff;
  text-decoration: none;

}

.submenu-title:hover {
  color: #fff;

}

.mega-right {
  flex: 1 1 0%;
  padding: 2rem;
  position: relative;
  background-color: #f5f5f5;
  overflow-x: auto;   /* optionnel : pour éviter les débordements */
  min-width: 0;
}

.submenu-columns {
  display: none;
  /*position: absolute;
  top: 0;
  left: 0;*/
  width: 100%;
}

.submenu-columns.active {
  display: flex !important;
  gap: 2rem;
}

.submenu-column {
  min-width: 150px;
}

.column-title {
  margin-bottom: 0.5rem;
  display: block;
  color: #333;
}

.submenu-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.submenu-column li a {
  color: #000;
  text-decoration: none;
  display: block;
  padding: 0.25rem 0;
}

.submenu-column li a:hover {
  color: #dedb00;
}

.menu-level-1 > li > a.is_parent::after {
  font-family: "fontello"; 
  content: "\f107"; 
  display: inline-block;
  margin-left: 4px;
  opacity: 0.7;
  position: relative;
  top: 0;
  font-weight: normal;
}

.menu-level-2 .submenu-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.menu-level-2 .submenu-label {
  flex: 1 1 auto;
}

.menu-level-2 .submenu-arrow {
  font-family: "fontello"; /* ou FontAwesome selon ta police */
  content: "\f105";        /* chevron right, FontAwesome */
  display: inline-block;
  font-size: 1em;
  opacity: 0.7;
  margin-left: 12px;
  /* si FontAwesome, ajoute font-weight: 900; */
}

/* Pour l'affichage du content via CSS */
.menu-level-2 .submenu-arrow::before {
  content: "\f105"; /* même unicode que plus haut */
}


.csmm-mobile-modal {
  position: fixed; left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(30,30,30,0.23);
  z-index: 9999;
  width: 90%; border-right: 1px #eee solid;
}
.csmm-mobile-panel {
  background: #fff;
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  padding: 0 0 48px 0;
  transition: transform 0.3s;
}
.csmm-mobile-list { list-style: none; margin: 0; padding: 0; }
.csmm-mobile-item { border-bottom: 1px solid #eee; }
.csmm-mobile-link {
  display: flex; align-items: center;
  width: 100%; padding: 12px;
  font-size: 1.08em; color: #111; background: none; border: none;
}
.csmm-mobile-chevron { margin-left: auto; font-size: 2em; line-height: 1em;}
.csmm-mobile-back {
  width: 100%; text-align: left;
  font-size: 1em; font-weight: 600; padding: 16px;
  background: none; border: none; color: #dedb00;
}
.csmm-mobile-close {
  position: absolute; right: 12px; top: 0;
  font-size: 2.5em; background: none; border: none; color: #444; z-index: 10;
  font-weight:bold;
}
.csmm-modal-open { overflow: hidden; }

#csmm-mobile-menu-root .csmm-mobile-list {margin-top:53px;}

#csmm-mobile-menu-root .csmm-mobile-link {}