/* المنتجات الثابتة - عرض منتجين بالجوال */
@media (max-width:768px){

section .s-products-grid,
section .products-grid,
.s-block-products-list {

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

}

/* كرت المنتج */
.s-product-item{
width:100% !important;
margin:0 !important;
padding:0 !important;
border-radius:14px;
overflow:hidden;
background:#fff;
}

/* الصورة */
.s-product-item img{
width:100%;
height:auto;
object-fit:cover;
}

/* اسم المنتج */
.s-product-name{
font-size:13px !important;
line-height:1.4;
min-height:38px;
}

/* السعر */
.s-product-price{
font-size:14px !important;
font-weight:700;
}

/* زر السلة */
.s-product-card-content button{
width:100%;
font-size:12px;
padding:8px;
border-radius:10px;
}

}