.shadow {
    -webkit-box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
}

.card-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 0.8rem;
    height: 120px;
}
.product-card__category-title {
  font-size: .75rem;
}

.product-card__title {
  font-size: 0.9rem;
  margin-bottom: 5px;

  &:hover {
    text-decoration: none;
    opacity: .7;
    transition-timing-function: ease-in;
    transition-duration: .2s;
    transition-property: opacity;
  }

  @media (min-width: 577px) {
    height: 83px;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    height: 56px;
  }
}

.product-card__link {

  &_img {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
  }

  &:hover {
    text-decoration: none;
  }
}

.product-card__img {
  position: relative;
  width: 100%;
  height: 300px;
  object-fit: cover;
}
