
.product-detail {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}

/* Afbeelding styling */
.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .product-detail {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .product-info {
        width: 100%;
        padding: 0 10px;
    }
}