    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }

    .menu-toggle {
      position: relative;
      cursor: pointer;
      width: 30px;
      height: 30px;
      background-color: #1a001a;
      border: 1px solid #ff2aa8;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: #ff2aa8;
      border-radius: 6px;
    }

#notif-dot-menu-toggle {
  display: none;
  position: absolute;
  top: 4px;
  right: 4px;
  width: 10px;
  height: 10px;
  background-color: rgb(236, 21, 21);
  border-radius: 50%;
  box-shadow: 0 0 4px #f6a;
  animation: blink 1s infinite ease-in-out;
}

#notif-dot {
  display: none;
  width: 10px;
  height: 10px;
  background-color: rgb(236, 21, 21);
  border-radius: 50%;
  box-shadow: 0 0 4px #f6a;
  animation: blink 1s infinite ease-in-out;
  margin-left: 5px;
  vertical-align: middle;
  position: static; /* ✅ clé : remet un flux normal pour le lien messagerie */
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px; /* espace entre le bouton langue et le menu */
}

.lang-switch-header {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-switch-header a {
  color: #ff2aa8;
  text-decoration: none;
  font-weight: bold;
  font-size: 2em;
  display: flex;
  align-items: center;
}

.lang-switch-header a span {
  margin-left: 5px;
}