.wddom-template-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin:40px 0;

}


.wddom-template-card{

    background:#111;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #222;
    transition:0.3s;
    color:#fff;

}


.wddom-template-card:hover{

    transform:translateY(-8px);
    border-color:#00ff66;

}



.wddom-template-card img{

    width:100%;
    height:220px;
    object-fit:cover;
    display:block;

}



.wddom-template-content{

    padding:20px;
    text-align:right;

}



.wddom-template-content h3{

    margin:0 0 10px;
    font-size:22px;
    color:#fff;

}



.wddom-template-content p{

    color:#aaa;
    line-height:1.8;
    font-size:15px;

}



.wddom-template-content .category{

    display:inline-block;
    background:#00ff66;
    color:#000;
    padding:5px 12px;
    border-radius:20px;
    font-size:13px;
    margin-bottom:10px;

}



.wddom-template-content .price{

    color:#ffd700;
    font-size:18px;
    font-weight:bold;
    margin:15px 0;

}



.wddom-template-content a{

    display:inline-block;
    padding:10px 18px;
    border-radius:30px;
    text-decoration:none;
    margin:5px;
    font-weight:bold;

}



.wddom-template-content a:not(.order){

    background:#333;
    color:#fff;

}



.wddom-template-content .order{

    background:#00ff66;
    color:#000;

}



@media(max-width:600px){

    .wddom-template-grid{

        grid-template-columns:repeat(2,1fr);
        gap:12px;

    }


    .wddom-template-card img{

        height:140px;

    }


    .wddom-template-content{

        padding:12px;

    }


    .wddom-template-content h3{

        font-size:16px;

    }


    .wddom-template-content p{

        display:none;

    }


}

