/* Flexbox container voor productafbeeldingen naast elkaar */
.product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Ruimte tussen de producten */
    justify-content: space-between;
    margin-top: 20px;
}

.product-item {
    flex: 1 1 30%; /* Zorgt ervoor dat elk product ongeveer 30% van de breedte inneemt */
    background-color: #fff;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.product-item h4 {
    color: #3366ff;
    margin-bottom: 10px;
}

.product-item p {
    font-size: 1rem;
    color: #333;
}

/* Verklein de product items op mobiele schermen */
@media (max-width: 768px) {
    .product-item {
        flex: 1 1 100%; /* Zorgt ervoor dat op kleinere schermen elk product een volle rij in beslag neemt */




