.product-image {
  margin-bottom: 2px;
  box-shadow: 0px 0px 5px 0px #484848;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
.product-image img {
  width: 100%;
  transition: opacity 0.2s ease;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
.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;
}
.product-title a {
  color: var(--beo-body-color);
}
.product:hover .product-image img {
  opacity: 0.4;
}
.product:hover .product-info {
  padding: 0 1rem;
  background-color: var(--beo-primary);
  color: var(--beo-white);
}
.product:hover .product-title {
  padding-right: 1rem;
  color: var(--beo-white);
}
.product:hover .product-title a {
  color: var(--beo-white);
}
.product:hover .product-hover {
  opacity: 1;
}

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