/* Product hover */
.product-parent-wrapper{


.product-card {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: $text-white;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.product-card img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.product-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:$overlay-bg;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.product-card .content {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px;
    align-self: flex-end;
}

.product-card .content h3 {
    margin: 0;
    font-size: 18px;
    color: $text-white;
    margin:0;
}

.product-card .content .arrow {
    font-size: 24px;
    color: $text-white;
    margin:0;
    line-height: 24px;

}

.product-card:hover img {
    transform: scale(1.1);
}

.product-card:hover .overlay {
    opacity: 1;
}


}