#product-gallery {
  display: flex;
  overflow: auto;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
#product-gallery > a {
  display: block;
  margin-right: 10px;
}
#product-gallery > a > img {
  display: block;
  height: 400px;
}
@media screen and (max-width: 1040px) {
  #product-gallery > a > img {
    height: 300px;
  }
}
@media screen and (max-width: 680px) {
  #product-gallery > a > img {
    height: 200px;
  }
}
#product-description {
  padding: 20px;
  margin-bottom: 20px;
  background-color: white;
}
#product-description > div {
  margin-top: 20px;
}
#product-description > div:first-child {
  margin-top: 0;
}
#wishlist-button {
  display: inline-block;
  padding: 5px 20px;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  background-color: black;
  cursor: pointer;
}
#wishlist-button:hover > span {
  opacity: 0.8;
}
