.produit-card {
    background: white;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(226, 82, 82, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .produit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  }
  
  .produit-img {
    max-height: 230px;
    object-fit: cover;
    width: 100%;
    border-radius: 0; /* pas de bords arrondis */
    transition: transform 0.3s ease;
  }
  
  .produit-img:hover {
    transform: scale(1.05);
  }
  
  .like-btn {
    position: absolute;
    bottom: 0px;
    right: 15px;
    font-size: 1.5rem;
    color: #ccc;
    transition: color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
  }
  
  .like-btn:hover {
    transform: scale(1.2);
  }
  
  .like-btn.liked {
    color: red;
  }
  
  .produit-card h5 {
    margin-top: 15px;
    font-weight: 600;
  }
  


  .produit-card {
    background: #fff;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(222, 126, 126, 0.08);
    position: relative;
  }
  
  .produit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  }
  
  .produit-img {
    width: 100%;
    height: auto;
  }
  
  
  .ratings {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #f39c12;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .stars {
    font-size: 1.1rem;
    letter-spacing: 2px;
  }
  
  .nb-avis {
    color: #666;
    font-size: 0.8rem;
  }
  