/* Product Cards styles - Background image for Product cards */

.product-card:hover {
    background: 
        url('../images/_car_buffing.jpg'), /* Background image */
        linear-gradient(#051a37, #051a37); /* Color fade */
    background-size: cover; /* Cover the entire area */
    background-position: center; /* Center the image */
    background-blend-mode: overlay; /* Blend the color fade with the image */
    opacity: 85%;
}

/*.card {
  transition: all 0.5s;
}*/

/* Text Color */
.product-card .card-title {
  color:#053722
}

.product-card .card-text {
  color:#5a5e64
}

.product-card:hover .card-text,
.product-card:hover .card-title{
  color: #ffffff;
}

.product-card .card-text{
  text-align: start;
}