@media screen and (max-width: 1200px) {
    .submenu-section .submenu-item:last-child {
    margin-bottom: 10px;
}
/* Masquer les sous-menus imbriqués par défaut */
.nested-submenu {
  display: none;
  list-style: none;
  padding-left: 20px;
  margin: 0;
}
.nested-submenu-item {
    font-weight: 400 !important;
}

/* Afficher les sous-menus imbriqués lorsqu'ils sont actifs */
.nested-submenu.active {
  display: block;
  font-weight: 400;
}

.submenu-title.has-nested-submenu.active {
    font-weight: 500;
}

.submenu-title.has-nested-submenu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 20px; /* Espace pour l'icône */
}

.submenu-title.has-nested-submenu::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="black" viewBox="0 0 18 18"><path d="M4.5 7.333 9.167 12l4.666-4.667"></path></svg>') no-repeat center;
  background-size: contain;
}

/* Pivoter l'icône lorsque le menu est actif */
.submenu-title.has-nested-submenu.active::after {
  transform: rotate(180deg);
}


    .submenu-container-mobile li {
  margin-bottom: 0px !important;
}
    /* Indicator for submenus */
.submenu-indicator {
    margin-left: 8px;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.has-submenu.active .submenu-indicator {
    transform: rotate(90deg);
}

/* Nested submenus */
.subsubmenu-mobile {
    display: none;
    padding-left: 20px;
}

.subsubmenu-mobile.active {
    display: block;
}
.nav__items-mobile {
    display: flex;
    flex-wrap: nowrap; /* Empêcher les éléments de passer à la ligne */
    padding: 0 20px; /* Ajouter un padding pour éviter que les éléments touchent les bords */
    list-style: none;
    margin: 0;
    overflow-x: auto; /* Permet le défilement horizontal si nécessaire */
      scroll-behavior: smooth; /* Scroll fluide */
    -webkit-overflow-scrolling: touch;
}

 .nav__item-mobile {
     text-transform: uppercase;
	 vertical-align: top;
	 text-align: center;
	 color: white;
	 font-size: 14px;
	 line-height: 40px;
	 font-family: Helvetica, Arial, sans-serif;
	 font-weight: 400;
     height: 50px;
     transition: color 0.3s ease;
     width: auto; /* Adapter la largeur à la taille du texte */
     flex-shrink: 0;
    white-space: nowrap; /* Empêcher le texte de passer à la ligne */
    padding: 0px 15px;
}

.nav__item-mobile:last-child {
  padding-right: 30px;
}
.page-id-731 #qodef-page-mobile-header.scrolled {
    background-color: white;
}
.page-id-731 #qodef-page-mobile-header.scrolled .qodef-svg--search,
.page-id-731 #qodef-page-mobile-header.scrolled .qodef-svg--cart {
    fill: black; /* Change SVG fill to black */
    color: black; /* Change text color to black */
}


/* Fixed Bottom Bar */
.mobile-bottom-bar {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #e4e4e4;
    padding: 10px;
    z-index: 1000;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    align-items: center;
    height: 56px;
}

.mobile-bottom-bar.active {
    display: flex;
}

.bottom-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.bottom-bar-icon {
    font-size: 20px;
    width: 20px;
}

.bottom-bar-text {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}

#qodef-page-mobile-header {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  position: fixed !important;
  width: 100% !important;
  top: 0 !important;
  z-index: 1000;
}

    .submenu-with-image {
        position: relative;
        width: 100%;
        height: 230px;
        overflow: hidden;
        padding-left: 0px !important;
        border-bottom: 0px !important;
        padding-bottom: 10px !important;
    }

    /* Lien contenant l'image et le texte */
    .submenu-with-image a {
        display: block;
        position: relative;
        height: 100%;
        color: white;
        font-size: 30px;
        font-weight: bold;
        text-align: center;
        text-decoration: none;
    }

    /* Image */
    .submenu-with-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1; /* L'image reste derrière le texte */
    }

    /* Titre du sous-menu */
    .submenu-with-image .submenu-title {
        position: absolute;
        top: 50%;
        left: 50%;
		padding-left: 0;
        transform: translate(-50%, -50%);
        z-index: 2; /* Le texte doit être au-dessus de l'image */
        color: white;
		font-family: "barlow condensed";
        font-size: 35px;
        line-height: 1.2em;
        font-weight: 600;
        width: 360px !important;
        border: 0px;
    }
 
    
#menu__toggle_mobile {
    display:none;
  opacity: 0;
}
#menu__toggle_mobile:checked + .menu__btn_mobile > span {
  transform: rotate(45deg);
      background-color: grey; /* Change la couleur de la croix */
}
#menu__toggle_mobile:checked + .menu__btn_mobile > span::before {
  top: 0;
  transform: rotate(0deg);
      background-color: grey; /* Change la couleur de la croix */
}
#menu__toggle_mobile:checked + .menu__btn_mobile > span::after {
  top: 0;
  transform: rotate(90deg);
      background-color: grey; /* Change la couleur de la croix */
}
#menu__toggle_mobile:checked ~ .menu__box {
  left: 0 !important;
}
.menu__btn_mobile.menu-open {
    width: 21px; /* Width when menu is open */
}
.menu__btn_mobile {
    position: relative;
    display: block;
    width: 25px;
    height: 21px;
    cursor: pointer;
    z-index: 1;
    margin-bottom: -2px;
    margin-left: 8px;
    margin-top: 19px;
}
.menu__btn_mobile > span,
.menu__btn_mobile > span::before,
.menu__btn_mobile > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: black;
  transition-duration: .25s;
}
.menu__btn_mobile > span::before {
  content: '';
  top: -6px;
}
.menu__btn_mobile > span::after {
  content: '';
  top: 6px;
}

 .nav-mobile.active {
            display: block;
            transform: translateX(0);
        }
.nav-mobile {
    display: none;
    overflow-x: auto;
    overflow-y: hidden;
    position: absolute;
    width: 100%;
    height: 54px;
    padding-top: 6px;
    background: white;
    top: 69px;
    left: 0;
    white-space: nowrap;
    border-top: 1px solid #cecece;
    position: fixed;
}

   .nav__content-mobile {
	 position: relative;
	 width: 100%;
	 transition: width 1s cubic-bezier(0.49, -0.3, 0.68, 1.23);
    transform: scale(0.98);
    will-change: transform;
    user-select: none;
    cursor: pointer;
    overflow-y: hidden;
    white-space: nowrap;
}

.nav__item-mobile.has-submenu.active .nav__item-text::after {
  transform: rotate(180deg);
}

.nav__item-mobile.active {
    color: white !important;
 	font-weight: 600 !important;
 	border-bottom: 5px solid black;
}

.nav__items-mobile::-webkit-scrollbar {
  display: none;
}


 .nav__item-text-mobile {
	 display: block;
}


.submenu-container-mobile {
  overflow-y: auto; /* Ensure it can scroll vertically */
  height: calc(100vh - 170px); /* Adjust the height based on your header height */
  position: fixed;
  top: 122px;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  padding: 10px;
  list-style: none;
  transform-origin: top center;
  transition: transform 0.6s ease, opacity 0.6s ease;
  z-index: 50;
  border-top: 1px solid #e4e4e4;
  opacity: 0;
  transform: scaleY(0);
  text-transform: uppercase;
}

.submenu-container-mobile.active {
  opacity: 1;
  transform: scaleY(1);
}

.submenu-container-mobile ul {
  margin: 0; /* Supprime les marges par défaut */
  padding: 0; /* Supprime les espacements par défaut */
  list-style: none; /* Supprime les puces */
}


.submenu-container-mobile li:hover {
  background-color: #f0f0f0;
}

#shortcode-menu-mobile {
  display: none; /* Masquer par défaut */
  max-height: 0; /* Hauteur initiale à 0 pour éviter qu'il prenne de la place */
  overflow: hidden; /* Empêcher le débordement */
  transition: max-height 0.6s ease, opacity 0.6s ease; /* Transition fluide */
}

#shortcode-menu-mobile.active {
  display: block; /* Afficher le conteneur lorsque actif */
  max-height: 1000px; /* Augmenter la hauteur maximale pour afficher le contenu */
  opacity: 1; /* Rendre visible */
}

.submenu-title {
  border-bottom: 1px solid #80808057;
  padding-left: 20px;
  padding-bottom: 20px;
  padding-top: 20px;
  font-family: "Jost", sans-serif;
  font-size: 15px;
  color: #333;
  letter-spacing: 0;
  line-height: 25px;
  font-weight: 400;
}

.submenu-container-mobile li {
  padding-left: 20px;
  padding-bottom: 5px;
  padding-top: 20px;
    font-family: "Jost", sans-serif;
    font-size: 15px;
  color: #3d3e4f;
  letter-spacing: 0;
  line-height: 25px;
  font-weight: 300;
  text-transform: none;
}

.submenu-container-mobile li:last-child {
  border-bottom: none; /* Supprimer la bordure pour le dernier élément */
}

 .nav__item-mobile:nth-child(1) .nav__item-text-mobile {
	 transition-delay: 0.3s;
}
 .nav__cb-mobile:checked ~ .nav__content-mobile .nav__item-mobile:nth-child(1) .nav__item-text-mobile {
	 transition-delay: 0s;
}
 .nav__item-mobile:nth-child(2) .nav__item-text-mobile {
	 transition-delay: 0.2s;
}
 .nav__cb-mobile:checked ~ .nav__content-mobile .nav__item-mobile:nth-child(2) .nav__item-text-mobile {
	 transition-delay: 0.1s;
}
 .nav__item-mobile:nth-child(3) .nav__item-text-mobile {
	 transition-delay: 0.1s;
}
 .nav__cb-mobile:checked ~ .nav__content-mobile .nav__item-mobile:nth-child(3) .nav__item-text-mobile {
	 transition-delay: 0.2s;
}
 .nav__item-mobile:nth-child(4) .nav__item-text-mobile {
	 transition-delay: 0s;
}
 .nav__cb-mobile:checked ~ .nav__content-mobile .nav__item-mobile:nth-child(4) .nav__item-text-mobile {
	 transition-delay: 0.3s;
}


 .nav__btn-mobile:before {
	 margin-bottom: 10px;
}
 .nav__btn-mobile:hover:before, .nav__btn-mobile:hover:after {
	 background: #9f9f9f;
}
 .nav__cb-mobile:checked ~ .nav__btn-mobile:before {
	 transform: translateY(5px) rotate(-225deg);
}
 .nav__cb-mobile:checked ~ .nav__btn-mobile:after {
	 transform: translateY(-6px) rotate(225deg);
}
   /* Styles spécifiques à la page avec l'ID 731 */
.page-id-731 #menu__toggle_mobile:checked + .menu__btn_mobile > span,
.page-id-731 #menu__toggle_mobile:checked + .menu__btn_mobile > span::before,
.page-id-731 #menu__toggle_mobile:checked + .menu__btn_mobile > span::after {
  background-color: white; /* Change la couleur de la croix en blanc */
}

.page-id-731 #qodef-page-mobile-header .menu__btn_mobile > span,
.page-id-731 #qodef-page-mobile-header .menu__btn_mobile > span::before,
.page-id-731 #qodef-page-mobile-header .menu__btn_mobile > span::after {
  background-color: white; /* Change la couleur du menu en blanc */
}
.page-id-731 #menu__toggle_mobile.menu-open:checked + .menu__btn_mobile > span,
.page-id-731 #menu__toggle_mobile.menu-open:checked + .menu__btn_mobile > span::before,
.page-id-731 #menu__toggle_mobile.menu-open:checked + .menu__btn_mobile > span::after {
  background-color: grey;
}

.page-id-731 #qodef-page-mobile-header.menu-open .menu__btn_mobile > span,
.page-id-731 #qodef-page-mobile-header.menu-open .menu__btn_mobile > span::before,
.page-id-731 #qodef-page-mobile-header.menu-open .menu__btn_mobile > span::after {
  background-color: black; 
}

}
.page-id-731 #qodef-page-mobile-header.scrolled .menu__btn_mobile > span,
.page-id-731 #qodef-page-mobile-header.scrolled .menu__btn_mobile > span::before,
.page-id-731 #qodef-page-mobile-header.scrolled .menu__btn_mobile > span::after {
  background-color: black; 
}