.dccm-product-grid{

    display:grid;
    gap:35px;

}


.dccm-product-grid.columns-3{
    grid-template-columns:repeat(3,1fr);
}


.dccm-product-card{

    background:#fff;

}


.dccm-product-image img{

    width:100%;
    height:300px;
    object-fit:cover;

}


.dccm-product-category{

    color:#999;
    font-size:14px;
    margin-top:15px;

}


.dccm-product-content h3{

    font-size:18px;
    margin:10px 0;

}


.dccm-product-price{

    font-weight:700;
    margin-bottom:15px;

}


.dccm-buy-button{

    display:inline-block;
    background:#c7aa74;
    color:#fff;
    padding:12px 30px;
    text-decoration:none;
    font-weight:600;

}


.dccm-buy-button:hover{

    opacity:.8;

}



@media(max-width:768px){

    .dccm-product-grid.columns-3{

        grid-template-columns:1fr;

    }

}