.myproduct-widget-group {
    display: flex;
    flex-wrap: wrap; 
    gap: 10px; /* espace entre les boutons */
	padding: 12px 0px;
}

.myproduct-widget-btn {
  flex: 1 1 calc(50% - 10px);  /* 2 boutons par ligne */							/* chaque bouton prend la même largeur */
  /*height: 40px;
  padding: 12px 0px;*/
  font-size: 12px;
  font-weight: 500;
  min-height: 40px;
	height: auto;
	padding: 8px 10px;
  border-radius: 6px;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  text-transform: uppercase;
  line-height:1.3em;
  color: var(--primary);
  background: var(--white);
  border: 1px solid var(--primary);
  text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
  transition: all linear 0.3s;
}

.myproduct-widget-btn i {
  margin-top: -2px;
  margin-left: 6px;
}

.myproduct-widget-btn2 {
  flex: 1 1 100%;   /* 2 boutons par ligne */
}	
	
.arrow-toggle {
    cursor: pointer;
    display: inline-block;
    transition: transform 0.3s ease;
}

.arrow-toggle[aria-expanded="true"] {
    transform: rotate(180deg);
}

#suggestions {
    background: white;
    border: 1px solid #ccc;
    position: absolute;

    z-index: 999;
}

#suggestions div {
    padding: 8px;
    cursor: pointer;
}

#suggestions div:hover {
    background: #f0f0f0;
}

#suggestions_pag {
    background: white;
    border: 1px solid #ccc;
    position: absolute;

    z-index: 999;
}

#suggestions_pag div {
    padding: 8px;
    cursor: pointer;
}

#suggestions_pag div:hover {
    background: #f0f0f0;
}