.product-category {
  /*padding: 2rem;*/
  margin-bottom: 2.5rem;
  /*background: var(--smoke-color2);*/
}
.product-card {
  position: relative;
  background-color: #fff;
  /*overflow: hidden;*/
  transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  -o-transition: .5s;
}
.product-card .product-img{
  position: relative;
  background-color: #fff;
  padding-top: 100%;
  overflow: hidden;
}
.product-card .product-img a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all ease 0.5s;
}
.product-card:hover .product-img > a > img {
  transform: scale(1.1);
}
.product-card:hover {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}
.product-card .product-content {
  padding: 1rem;
}
.product-card .product-categories {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.5rem;
}
.product-card .product-categories a {
  color: inherit;
  font-size: 0.875rem;
}
.product-card .product-categories a:hover {
  text-decoration: underline;
  color: var(--theme-color);
}
.product-card .product-title a {
  font-size: 1rem;
  color: var(--title-color);
}
.product-card .product-title .product-title-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; 
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5em;
  min-height: calc(1.5em * 3);
  max-height: calc(1.5em * 3);
  width: 100%;
}
.product-card .product-title a:hover {
  color: var(--theme-color);
}