.product-img {
  border: #ccc 3px solid;
  border-radius: 5px;
  background-color:  #ccc;
}
.product-img.box {
  max-height: 450px;
  min-height: 300px;
  max-width: 100%;
  /* min-width: 400px; */
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.product-img.big {
  width: auto;
  max-width: inherit;
  max-height: inherit;
  cursor: pointer;
}
.product-img.thumbnail {
  display: flex;
  justify-content: space-around;
  margin-top: 5px;
}
.product-img.small {
  width: 24%;
  height: auto;
  border: none;
  cursor: pointer;
}
.product-img.small:hover {
  transform: scale(1.02);
}
.product-info {
  background-color: #ccc;
  border-radius: 5px;
}
.product-info.option {
  padding: 25px;
  height: 100%;
  position: relative;
}
.product-info.price {
  position: absolute;
  bottom: 25px;/* Pour compenser le padding*/
  width: calc(100% - 50px);/* -50px Pour compenser le padding*/
  text-align: center;
}
