.product-card {
  margin-left: 12px;
}
.rtl .product-card {
  margin-left: 0;
  margin-right: 12px;
}
@media (max-width: 991px) {
  .product-card {
    margin-left: 8px;
  }
  .rtl .product-card {
    margin-left: 0;
    margin-right: 8px;
  }
}
.product-card__mask {
  position: absolute;
  top: 4px;
  left: 8px;
  right: 8px;
  bottom: -4px;
  border-radius: 16px;
  opacity: 0.01;
  background: var(--secondary);
  z-index: 1;
  transition: all 0.3s 
ease;
}
.product-card:hover .product-card__mask {
  top: -8px;
  bottom: 8px;
}
.product-card__image {
  width: 145px;
  height: 145px;
  margin-left: -24px;
}
.rtl .product-card__image {
  margin-left: 0;
  margin-right: -24px;
}
@media (max-width: 991px) {
  .product-card__image {
    width: 120px;
    height: 140px;
  }
}
.product-card__content {
  width: calc(100% - 124px);
  overflow: hidden;
}
@media (max-width: 991px) {
  .product-card__content {
    width: calc(100% - 120px);
  }
}
.product-card__title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 52px;
}
