  /* Styles pour les items du menu */
  .thot-menu-item {
    position: relative;
    display: inline-block;
  }
  
  .thot-menu-link svg , .thot-submenu-link svg {
    margin-top: 3px;
    margin-right: 10px;
  }
  
  /* Style pour les liens principaux */
  .thot-menu-link {
    display: flex;
    align-items: left;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #000;
    transition: all 0.2s;
  }
  
  .thot-menu-link:hover {
    color: #333;
    background-color: #f3f4f6;
  }
  
  /* Style pour le bouton CTA */
  .thot-menu-cta {
    /*background: radial-gradient(circle at center, #C488F8, #8585F7);*/
    background:#000;
    border:1px solid #000;
    color: #f3f4f6;
  }
  
  .thot-menu-cta:hover {
    background-color: #000;
    color: white;
  }
  
  /* Style pour les icônes */
  .thot-menu-icon {
    margin-right: 0.5rem;
  }
  
  .thot-chevron {
    margin-left: 0.25rem;
    font-size: 0.75rem;
  }
  
  /* Style pour les sous-menus */
  .thot-submenu {
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 0.25rem;
    width: 14rem;
    background-color: white;
    border-radius: 0.375rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    z-index: 50;
  }
  
  /* Positionner le dernier sous-menu à droite */
  .thot-menu-item:last-child .thot-submenu {
    left: auto;
    right: 0;
    width: 16rem;
  }
  
  /* Afficher le sous-menu au survol */
  .thot-menu-item:hover .thot-submenu {
    opacity: 1;
    visibility: visible;
  }
  
  /* Style pour les liens du sous-menu */
  .thot-submenu-link {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #374151;
  }
  
  .thot-submenu-link:hover {
    background-color: #f3f4f6;
    color: #000;
  }
  
  /* Styles pour le menu mobile */
  .thot-mobile-button {
    display: none;
    color: #4b5563;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.25rem;
  }
  
  .thot-mobile-button:hover {
    color: #000;
  }

  .thot-desktop-menu {
    display:flex; 
    align-items: center;
  }
  
  .thot-mobile-menu {
    display: none;
    flex-direction: column;
    padding: 0.5rem 0 1rem;
  }

  .thot-mobile-menu {
    background-color: #fff;
  }
  
  .thot-mobile-submenu {
    display: none;
    padding-left: 1.5rem;
    margin-top: 0.25rem;
  }
  
  .thot-mobile-submenu.active {
    display: flex;
    flex-direction: column;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .thot-desktop-menu {
      display: none;
    }
    
    .thot-mobile-button {
      display: block;
    }
    
    .thot-mobile-menu.active {
      display: flex;
    }
  }