

/** * Switch Order of * Product Details using * "Half" or "Wrap" Layout **/ #page .pdp-details { display: flex; flex-direction: column; /* Set Orders */ .pdp-details-title { order: 1; } .pdp-details-excerpt { order: 6; } .product-variants { order: 3; } .product-quantity-input { order: 1; } .pdp-details-price { order: 1; } .sqs-add-to-cart-button-wrapper { order: 2; } & > * { margin: 8px 0px; } @media (max-width: 767px) { .pdp-details-title { order: 1; } .pdp-details-excerpt { order: 6; } .product-variants { order: 4; } .product-quantity-input { order: 1; } .pdp-details-price { order: 1; } .sqs-add-to-cart-button-wrapper { order: 2; } } }