.products-list .col:hover .content .product-img {
    transform: scale(1.05);
}

.products-list .col .content {
    text-align: center;
}

.products-list .col .content:hover {
    text-decoration: none;
}

.products-list .col .content .product-img {
    border-radius: 6px;
    background-position: center;
    background-size: cover;
    transition: all ease 1s;
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    transition: all ease 1s;
}

.products-list .col .content .product-img:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.products-list .col .content h3 {
    font-size: 20px !important;
    color: black;
    margin: 10px 0 0;
    position: relative;
    top: 0;
    transition: all ease 0.5s;
}

.products-list .col .content .price-section>span {
    display: inline-block;
    padding: 5px 10px;
    font-weight: bold;
    font-size: 18px;
}

.products-list .col .content .price-section>span.old-price {
    font-weight: 400;
    color: darkred !important;
    text-decoration: line-through;
}

.products-list .col .content .price-section>span.reduced-price {
    color: green !important;
}

.products-list .col .content .reduction-label>span {
    color: white !important;
    background-color: green;
    display: inline-block;
    padding: 4px 10px;
}

.products-list .col .content .rating svg {
    color: goldenrod !important;
    width: 18px;
    height: 16px;
}

.products-list .col .content .rating svg * {
    color: goldenrod !important;
}