.product-image {
  margin-bottom: 2px;
}
.product-image img {
  width: 100%;
  transition: opacity 0.2s ease;
}
.product-hover {
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 1;
}
.product-info {
  height: 4rem;
  /* border-bottom: 2px solid currentColor; */
  transition: all 0.2s ease;
}
.product-title {
  line-height: 1.2;
  transition: all 0.2s ease;
  /* padding-right: 3rem; */
  font-size: 13px;
}
.product-title a {
  color: var(--beo-body-color);
}
.product:hover .product-image img {
  transform: scale(1.1);
    transition: all 0.2s ease;

}
.product:hover .product-info {
 
  color: #000;
}
.product:hover .product-title {
  color: #000;
}
.product:hover .product-title a {
  color: #000;
}
.product:hover .product-hover {
  opacity: 1;
}

.text-white .product {
  --beo-primary: #000000;
  --beo-white: #41449f;
  --beo-body-color: $#000000;
}
