/* Keep the quick-buy form visible when a mobile on-screen keyboard opens. */
@media (max-width: 767px) {
    .woocommerce-popup-quickbuy {
        position: fixed !important;
        top: calc(var(--wqbp-visible-top, 0px) + 6px) !important;
        left: 50% !important;
        width: calc(100% - 12px) !important;
        max-width: 500px;
        height: calc(var(--wqbp-visible-height, 100vh) - 12px);
        max-height: calc(var(--wqbp-visible-height, 100vh) - 12px);
        margin: 0 !important;
        transform: translateX(-50%);
        overflow: hidden;
        overscroll-behavior: contain;
    }

    .woocommerce-popup-quickbuy .woocommerce-popup-inner {
        width: 100% !important;
        height: 100%;
        min-width: 0;
        min-height: 0;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        scroll-padding-top: 54px;
        scroll-padding-bottom: 24px;
    }

    .woocommerce-popup-quickbuy .woocommerce-popup-title {
        position: sticky;
        top: 0;
        z-index: 20;
    }

    body .woocommerce-popup-quickbuy input,
    body .woocommerce-popup-quickbuy select,
    body .woocommerce-popup-quickbuy textarea {
        font-size: 16px !important;
    }

    .woocommerce-popup-quickbuy.wqbp-keyboard-open .woocommerce-popup-prod {
        margin-bottom: 8px;
    }

    .woocommerce-popup-quickbuy.wqbp-keyboard-open .woocommerce-popup-img {
        width: 70px;
    }
}
