/*
 * Pre-order DOT notice — resources/views/partials/checkout-notice.blade.php.
 * Every rule is scoped to .mg-checkout-notice. Amber surface so it stands apart
 * from the site's own red chrome and from the dark storefront gradient
 * (custom.css:380-388) and the checkout's .ggrad panels (custom.css:399-402).
 *
 * Contrast: #1a1a1a on #ffc107 = 11.1:1; #a00301 on #ffc107 = 5.1:1.
 * The phone link's colour is NOT set here: custom.css:299-301
 * a{color:#C90401!important} makes it the site red, which is why the phone sits
 * on its own white pill (#C90401 on #ffffff = 6.0:1).
 */

.mg-checkout-notice {
    box-sizing: border-box;
    max-width: 100%;
    margin: 15px 0;
    padding: 16px 20px;
    background-color: #ffc107;
    border: 3px solid #a00301;
    border-left-width: 10px;
    border-radius: 4px;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.35;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.mg-checkout-notice .mg-checkout-notice__title {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #a00301;
}

.mg-checkout-notice .mg-checkout-notice__line {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.mg-checkout-notice .mg-checkout-notice__call {
    margin: 14px 0 0;
}

.mg-checkout-notice .mg-checkout-notice__phone {
    display: inline-block;
    box-sizing: border-box;
    min-height: 48px;
    max-width: 100%;
    padding: 6px 22px;
    border: 2px solid #a00301;
    border-radius: 4px;
    background-color: #ffffff;
    font-size: 30px;
    font-weight: 800;
    line-height: 34px;
    letter-spacing: 0.03em;
    text-decoration: none;
}

.mg-checkout-notice .mg-checkout-notice__phone:hover {
    text-decoration: underline;
}

.mg-checkout-notice .mg-checkout-notice__phone:focus {
    outline: 3px solid #1a1a1a;
    outline-offset: 2px;
}

@media (max-width: 575px) {
    .mg-checkout-notice {
        padding: 12px 12px;
        border-left-width: 6px;
    }

    .mg-checkout-notice .mg-checkout-notice__title {
        font-size: 22px;
    }

    .mg-checkout-notice .mg-checkout-notice__line {
        font-size: 15px;
    }

    .mg-checkout-notice .mg-checkout-notice__phone {
        display: block;
        padding: 6px 12px;
        font-size: 26px;
    }
}
