/* Shop Page */


.shop-page{


padding:

140px 0 80px;


background:

var(--bg-main);


}



.shop-header{


text-align:center;


margin-bottom:50px;


}



.shop-header h1{


font-size:

45px;


color:white;


}





/* Product Grid */


.woocommerce ul.products{


display:grid!important;


grid-template-columns:

repeat(4,1fr);


gap:25px;


}



.skymabiz-product-card{


background:

var(--bg-card);


border:

1px solid var(--border-color);


border-radius:

24px;


padding:25px;


text-align:center;


transition:.3s;


}




.skymabiz-product-card:hover{


transform:

translateY(-8px);


box-shadow:

var(--shadow-blue);


}




.product-thumb img{


height:220px;


object-fit:contain;


margin:auto;


}




.skymabiz-product-card h3{


font-size:18px;


margin:20px 0;


}




.product-price{


color:

var(--sky-secondary);


font-size:18px;


font-weight:700;


}




.product-button .button{


display:block!important;


background:

linear-gradient(

135deg,

var(--sky-primary),

var(--sky-secondary)

)!important;


color:white!important;


border-radius:50px!important;


padding:12px!important;


margin-top:20px!important;


}
4) Responsive فروشگاه
اضافه شود:
@media(max-width:1000px){


.woocommerce ul.products{


grid-template-columns:

repeat(2,1fr);


}


}



@media(max-width:600px){


.woocommerce ul.products{


grid-template-columns:

1fr;


}



.shop-header h1{


font-size:32px;


}


}
