/* Cart page: stop sideways overflow */
body.woocommerce-cart {
  overflow-x: hidden;
}

/* Cart page: Afterpay spacing inside cart totals */
body.woocommerce-cart .cart_totals p.afterpay-paragraph,
body.woocommerce-cart .cart_totals p.afterpay-payment-info,
body.woocommerce-cart .cart_totals .afterpay-payment-info,
body.woocommerce-cart .cart_totals p[class*="afterpay"] {
  display: block;
  max-width: 100%;
  margin: 26px 0 16px !important;
  line-height: 1.45;
}

/* Keep checkout buttons from sitting too close to Afterpay */
body.woocommerce-cart .cart_totals .wc-proceed-to-checkout {
  padding-top: 0 !important;
}

body.woocommerce-cart .cart_totals .wc-proceed-to-checkout .checkout-button {
  margin-top: 0 !important;
}

/* Desktop: centre the cart without squeezing the table */
@media (min-width: 769px) {
  body.woocommerce-cart .entry-content {
    width: min(1500px, calc(100vw - 80px));
    max-width: 1500px;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box;
  }

  body.woocommerce-cart .entry-content > .woocommerce {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
  }
}

/* Mobile: only pad the outside, not every nested cart wrapper */
@media (max-width: 768px) {
  body.woocommerce-cart #main,
  body.woocommerce-cart .site-main,
  body.woocommerce-cart .content-area {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  body.woocommerce-cart .entry-content {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
  }

  body.woocommerce-cart .entry-content > .woocommerce {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }

  body.woocommerce-cart form.woocommerce-cart-form,
  body.woocommerce-cart .cart-collaterals,
  body.woocommerce-cart .cart_totals {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important;
    box-sizing: border-box !important;
  }

  body.woocommerce-cart .cart_totals p.afterpay-paragraph,
  body.woocommerce-cart .cart_totals p.afterpay-payment-info,
  body.woocommerce-cart .cart_totals .afterpay-payment-info,
  body.woocommerce-cart .cart_totals p[class*="afterpay"] {
    margin: 28px 0 18px !important;
    text-align: center;
    line-height: 1.5;
  }
}