.product-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
   justify-content: center;
   padding: 20px;
}

.product-card {
   border: 1px solid #ccc;
   padding: 15px;
   width: 250px;
   text-align: center;
   background-color: white;
   border-radius: 8px;
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.product-card img {
   max-width: 100%;
   height: auto;
   margin-bottom: 10px;
}

.btn-ajouter-panier {
   margin-top: 10px;
   padding: 10px 20px;
   background-color: #0077cc;
   color: white;
   border: none;
   cursor: pointer;
   border-radius: 4px;
}
