/* WdDom Market Style */


.wddom-market-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(280px,1fr));

gap:25px;

margin:30px 0;

direction:rtl;

}




.wddom-product-card{

background:#0b0b0b;

border:1px solid rgba(0,255,136,.25);

border-radius:22px;

overflow:hidden;

box-shadow:
0 10px 35px rgba(0,0,0,.25);

transition:.3s;

color:#fff;

}




.wddom-product-card:hover{

transform:translateY(-6px);

border-color:#00ff88;

box-shadow:
0 15px 45px rgba(0,255,136,.15);

}





.wddom-product-image{

height:220px;

overflow:hidden;

background:#111;

}




.wddom-product-image img{

width:100%;

height:100%;

object-fit:cover;

}





.no-image{

height:100%;

display:flex;

align-items:center;

justify-content:center;

font-size:40px;

font-weight:bold;

color:#00ff88;

}





.wddom-product-content{

padding:20px;

}





.wddom-product-content h3{

margin:0 0 12px;

font-size:21px;

color:#00ff88;

}





.wddom-type{

display:inline-block;

background:#00ff88;

color:#000;

padding:5px 12px;

border-radius:20px;

font-size:12px;

font-weight:bold;

margin-bottom:12px;

}





.wddom-product-content p{

color:#ccc;

font-size:14px;

line-height:1.7;

min-height:60px;

}





.wddom-price{

margin:15px 0;

font-size:20px;

}



.wddom-price del{

color:#888;

font-size:14px;

margin-left:10px;

}



.wddom-price strong{

color:#00ff88;

}





.wddom-delivery{

font-size:13px;

color:#aaa;

margin-bottom:18px;

}





.wddom-actions{

display:flex;

gap:10px;

}




.wddom-actions a{

flex:1;

text-align:center;

padding:11px;

border-radius:12px;

text-decoration:none;

background:#222;

color:white;

font-size:14px;

transition:.3s;

}





.wddom-actions a:hover{

background:#333;

}





.wddom-actions .buy{

background:#00c853;

color:#fff;

font-weight:bold;

}




.wddom-actions .buy:hover{

background:#00e676;

}





@media(max-width:600px){


.wddom-market-grid{

grid-template-columns:1fr;

}


.wddom-product-image{

height:190px;

}


}

