

@media (max-width: 768px) {
    input:not([type="hidden"]):not([type="checkbox"]):not([type="radio"]),
    textarea,
    select {
        font-size: 16px;
    }


    input:not([type="hidden"]):not([type="checkbox"]):not([type="radio"]),
    textarea {
        min-height: 48px;
    }
}

.checkout-sticky-bar {
    display: none;
}

@media (max-width: 768px) {
    .checkout-sticky-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1040;
        padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
        background: #ffffff;
        border-top: 1px solid #e7e8ea;
        box-shadow: 0 -4px 12px rgba(16, 27, 48, 0.06);
        gap: 12px;
        align-items: center;
    }

    .checkout-sticky-bar .checkout-sticky-bar__cta {
        flex: 1;
        min-height: 48px;
    }

    body.has-checkout-sticky-bar {
        padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
    }
}
