.bouton-boutique {
    background-color: #f4a261; /* Orange-ish background */
    border: none;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .bouton-boutique:hover {
    background-color: #e76f51; /* Darker orange on hover */
  }
  
  .icon-boutique {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
  
  