/* Checkout-only overrides (loaded by checkout/header.php on pages using the
   alternative checkout header, where <body> gets the .checkout_body class). */

/* Hide the main footer grid on all checkout-header pages */
body.checkout_body .footer-grid {
    display: none;
}

/* Extra spacing above the footer on checkout-header pages */
body.checkout_body .site-footer {
    padding-top: 3rem;
}

/* On small screens drop the footer/copyright top padding on checkout-header pages */
@media (max-width: 821.8px) {
    body.checkout_body .site-footer {
        padding-top: 0;
    }
    body.checkout_body .copyright {
        padding-top: 0;
    }
    /* clear the fixed order-products bar so it doesn't cover the footer text */
    body.checkout_body:not(:has(.clicked-title)) .site-footer {
        padding-bottom: 64px;
    }
}
