/* الكونتينر اللي فيه المنتجات */
.products-grid {
display: grid;
grid-template-columns: repeat(2, 1fr); /* جوج فالكولون */
gap: 16px; /* المسافة بين الكاردات */
padding: 10px;
}
/* الكارد ديال المنتج */
.product-card {
border: 1px solid #eee;
border-radius: 12px;
overflow: hidden;
background: #fff;
box-shadow: 0 4px 8px rgba(0,0,0,0.05);
text-align: center;
}