/*
 * CT_STEP08_1_112_PRODUCT_MOBILE_FIRST_PAINT_ORDER_CLS_SAFE_V1
 * Product mobile only.
 *
 * The template initially renders gallery -> summary -> tabs, while the
 * validated product runtimes reparent tabs below the gallery. Reserve that
 * final visual order from first paint so the summary does not shift after
 * deferred JavaScript runs.
 */
@media (max-width: 991.98px) {
  html body#product section#main.product-detail > .row.product-container,
  html body.page-product section#main.product-detail > .row.product-container {
    display: flex !important;
    flex-direction: column !important;
  }

  html body#product section#main.product-detail > .row.product-container > .ct-step08128-gallery-col,
  html body.page-product section#main.product-detail > .row.product-container > .ct-step08128-gallery-col {
    order: 1 !important;
  }

  html body#product section#main.product-detail > .row.product-container > .ct-step08128-tabs-row,
  html body.page-product section#main.product-detail > .row.product-container > .ct-step08128-tabs-row {
    order: 2 !important;
  }

  html body#product section#main.product-detail > .row.product-container > .ct-step08128-summary-col,
  html body.page-product section#main.product-detail > .row.product-container > .ct-step08128-summary-col {
    order: 3 !important;
  }
}
