.produits {
  height: 100%;
}
.fondImage {
  padding-top: 100px;
  height: 40vh;
  background: url(images/abeille-fleur.jpeg) no-repeat center / cover;
  text-align: center;
}
.titreProd {
  width: 400px;
  display: inline-block;
  margin: 10px auto;
  padding: 10px;
  background: hsla(0, 0%, 100%, 0.75);
  border-radius: 15px;
}
.fiche {
  height: 100%;
}
.main {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

/* galerie images */
.galerie {
  width: 50%;
  position: relative;
  height: 100vh;
  object-fit: cover;
}
.displayImg {
  position: absolute;
  transform: translate3d(-50%, -50%, 0);
  top: 50%;
  left: 50%;
  width: 90%;
  /* opacity: 0; */
  transition: opacity 1s;
}

.precedent,
.suivant {
  background-color: silver;
  width: 40px;
  height: 40px;
  border-radius: 2px;
  color: #c96805;
  font-size: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: color 0.4s linear;
}

.precedent {
  left: 0;
}
.suivant {
  right: 0;
}

.precedent:hover,
.suivant:hover {
  color: #8b5e46;
  background: beige;
}

/* Div description */
.descriptif {
  padding: 15px;
  width: 50%;
}
.descriptif p,
h1,
h2 {
  margin: 10px;
  line-height: 25px;
}
.conversion,
.achatProduit {
  width: 80%;
  margin: 5px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  margin-bottom: 50px;
}
.quantite {
  padding: 10px;
  font-weight: bolder;
}
.quantite input {
  width: 40px;
  font-weight: bolder;
  text-align: center;
}
.achatProduit button {
  width: 90%;
  height: 50px;
  background: #c96805;
  margin: 5px;
}
.liste {
  display: block;
  font-weight: bolder;
  list-style: none;
  padding: 20px;
}
@media (max-width: 700px) {
  .achatProduit,
  .conversion {
    width: 100%;
  }
  .main {
    flex-direction: column;
  }
  .galerie {
    width: 100%;
    height: 50vh;
    object-fit: cover;
  }
  .descriptif {
    width: 100%;
  }
  .displayImg {
    width: 60%;
  }
}
