/* Desktop-only scroll repair. Mobile keeps the native behavior already in the theme. */
@media screen and (min-width: 769px) {
    html {
        height: auto !important;
        max-height: none !important;
        overflow-y: auto !important;
        scroll-behavior: auto !important;
    }

    body {
        height: auto !important;
        min-height: 100% !important;
        max-height: none !important;
        overflow-y: visible !important;
        scroll-behavior: auto !important;
        touch-action: pan-y pinch-zoom;
    }
}

