.product-favoris {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.product-favoris svg {
  width: 40px !important;
  height: 37px !important;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.add-to-favoris svg path {
  fill: none;
  stroke: #f77f00;
  stroke-width: 30;
}

.is-favoris svg path {
  fill: #f77f00;
}

.product-favoris svg:hover {
  transform: scale(1.15);
}

