/* Demo-style grey product cards (Shop 50 look) */
.products-grid .product-col .product-inner,
ul.products li.product .product-inner {
    background: #f4f4f6;
    border-radius: 12px;
    padding: 14px 14px 22px;
    transition: box-shadow .3s;
}
.products-grid .product-col .product-inner:hover,
ul.products li.product .product-inner:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
}
.product-col .product-image {
    background: transparent;
    border: 0;
}
.product-col .product-image img {
    mix-blend-mode: multiply;
    border-radius: 8px;
}
.product-col .product-content {
    text-align: center;
    background: transparent;
    padding-top: 10px;
}