/* Fix for mobile scrolling issues */
.owl-carousel {
    touch-action: pan-y !important;
}

/* Ensure body is scrollable */
/* Ensure body is scrollable */
/* Ensure body doesn't scroll horizontally but allows vertical scroll */
body {
    overflow-x: hidden;
    width: 100%;
}


/* Fix for potential stuck menu class */
body.menu-show {
    position: static !important;
    overflow: auto !important;
    height: auto !important;
    width: auto !important;
}