* {
  margin: 0;
  padding: 0;
  font-family:Arial, Helvetica, sans-serif;
}

.produits {
  display: flex;
  justify-content: center;
  padding: 100px;
  gap: 60px;
  flex-wrap: wrap;
}

.produitIMG img {
  width: 400px;
  max-width: 100%;
  border-radius: 10px;
}

.details {
  max-width: 500px;
}

.details h1 {
  font-size: 30px;
  margin-bottom: 25px;
  color: white;
}

.prix {
    text-decoration: line-through;
  font-size: 20px;
  margin: 10px 0;
  color: rgb(255, 0, 0);
}

.prix2 {
  font-size: 20px;
  margin: 10px 0;
  color: rgb(255, 255, 255);
}


.description {
 font-size: 16px;
  margin-bottom: 30px;
  color: white;
}
.panier {
  background-color:rgb(255, 64, 0);
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  font-size: 16px;
}

.panier:hover {
  background-color: #000000;
}
