/* Product cards: keep product information visible below each image. */
.product {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.product-pic {
  flex: 0 0 auto;
}

.product-pic::after {
  display: none !important;
}

.product-info,
.product:hover .product-info {
  background: #fff;
  bottom: auto;
  color: #111;
  display: block;
  flex: 1 1 auto;
  left: auto;
  opacity: 1;
  padding: 16px 4px 8px;
  position: static;
  transform: none;
  transition: none;
  visibility: visible;
  width: 100%;
}

.product-name {
  margin: 0 0 6px;
}

.product-name a,
.product-name a:hover {
  color: #111;
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.product-name a.text-split {
  -webkit-line-clamp: 2;
}

.product-price,
.product-price p,
.product-price .price-new,
.product-price .price-old {
  color: #555;
}

.product-price p {
  margin: 3px 0;
}

@media (max-width: 768px) {
  .product-info,
  .product:hover .product-info {
    padding: 11px 2px 5px;
  }

  .product-name a,
  .product-name a:hover {
    font-size: 14px;
    line-height: 1.35;
  }

  .product-price,
  .product-price p,
  .product-price .price-new,
  .product-price .price-old {
    font-size: 13px;
  }
}
