/*
 * MHI — Product Layout Align
 * Version: 1.0.0
 * Author: Nabilskyi Serhii · @BEAST84
 *
 * Aligns the lower product description grid with the upper gallery/purchase grid.
 * Applies only to desktop shop mode. Catalog mode and mobile/tablet layouts are untouched.
 */

@media (min-width: 1200px) {
    html:not(.mhi-catalog-mode) #product-product .withrowformobile {
        grid-template-columns: minmax(0, 1.7fr) minmax(330px, 0.75fr) !important;
        gap: 28px !important;
    }

    html:not(.mhi-catalog-mode) #product-product .withrowformobile > .col-xl-8,
    html:not(.mhi-catalog-mode) #product-product .withrowformobile > .col-xl-4 {
        min-width: 0 !important;
    }
}
