.product-card { position: relative; overflow: hidden; flex-shrink: 0; }
.product-card img { width: 100%; height: 100%; transition: transform 0.4s; display: block; }
.product-card .info {
  position: absolute;
  bottom: 0em; left: 0;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 2em 1.5em;
  width: 100%;
}
.product-card .title {
  font-weight: 400; margin: 0; font-size: 1.25em;
}
.product-card .price {
  font-weight: bold; font-size: 1em;
}

.product-card--button {
    margin: auto 0 0;
    color: black;
    flex-shrink: 0;
    cursor: pointer;
    display: inline-block;
    position: relative;
    text-decoration: none;
    z-index: 0;
    font-size: 0.66em;
    padding: 1em 2em;
    font-weight: bold;
    transition: transform 0.4s;
}
.product-card--button:before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #FFD100;
  box-shadow: 0px 0px 10px 5px rgba(0,0,0,0);
  transition: box-shadow 0.2s;
  transform: skew(-10deg,0);
}
.product-card--button:hover {
  transform: translateY(-0.25em);
}
.product-card--button:hover:before {
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
}
.product-card:hover img {
  transform: scale(1.05);
}
