

/* Ensure the product list is displayed in a grid with 4 columns */ .product-list { display: flex; flex-wrap: wrap; justify-content: center; } .product-list-item { width: 22%; /* Adjust to fit 4 items per row, accounting for margins */ margin: 1%; /* Adjust margin as needed */ } /* Mobile Responsiveness */ @media (max-width: 768px) { .product-list-item { width: 45%; /* 2 items per row on tablets */ } } @media (max-width: 480px) { .product-list-item { width: 90%; /* 1 item per row on mobile */ } }