
.Header__logotxt {
  display: none !important;
}


#navBarContainer.Header__menuBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: nowrap;
}

/* Bloc logo */
.Header__logoPart {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  min-width: max-content;
}

/* Bloc menu */
.Header__navbtn {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  justify-content: flex-end;
}

/* Liste du menu */
.Header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px 18px;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Chaque entrée */
.Header__menuList,
.Header__nav > li,
.Header__nav a {
  white-space: nowrap;
  overflow: visible !important;
  text-overflow: clip !important;
  max-width: none !important;
}


.Header__nav a {
  display: inline-block;
  width: auto !important;
  min-width: max-content;
}


.Header__logotxt {
  white-space: nowrap;
}


@media (max-width: 991px) {
  #navBarContainer.Header__menuBox {
    gap: 12px;
  }

  .Header__nav {
    gap: 8px 12px;
  }
}

