.product-listing {
    display: flex;
    /* gap: 10%; */
    padding-left: var(--page-padding-horizontal);
    padding-right: var(--page-padding-horizontal);
}
.product-image {
    flex-basis: 50%;
}
.product-image img {
    width: 80%;
}
.product-details {
    display: flex;
    flex-direction: column;
    flex-basis: 50%;
    width: 90%;
}
.product-price {
    margin-top: 0.5;
    margin-bottom: 0.5rem;
}
.product-title {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.product-listing .button {
    width: 100%
}

/* -- Mobile/Small screen support -- */
@media (max-width: 749px) {
    .product-listing {
        flex-direction: column;
        align-items: center;
    }
    .product-image img {
        width: 100%;
    }
    .product-details {
        margin-top: 1.5rem;
        width: 95%;
    }
}