/* =========================================================
   PRODUCT IMAGE BLOCK TEMPLATE
   ========================================================= */

.coops-product-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(6,31,74,0.06);
    transition: all 0.2s ease;
    height: 100%;
}

.coops-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(6,31,74,0.1);
}

.coops-product-card a {
    display: block;
    text-decoration: none;
}

.coops-product-image {
    overflow: hidden;
}

.coops-product-image img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.coops-product-card:hover img {
    transform: scale(1.04);
}

.coops-product-title {
    padding: 14px 14px 16px;
    color: #fff;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
	background-color:#061f4a;
	height:100%;
}

@media (max-width: 767px) {

    .coops-product-image img {
        height: 180px;
    }
}