/* === Force center alignment for WooCommerce cart/checkout === */
@media only screen and (min-width:1000px){
  body.woocommerce-checkout .entry-content .alignwide,
  body.woocommerce-cart .entry-content .alignwide {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: auto !important;
    max-width: 100% !important;
  }

  body.woocommerce-checkout .entry-content > .woocommerce,
  body.woocommerce-cart .entry-content > .woocommerce {
    max-width: 980px !important;
    margin: 0 auto !important;
    float: none !important;
    padding: 0 20px !important;
    box-sizing: border-box;
  }
}
