/**
 * Lenis Smooth Scroll Override Styles
 * Overrides browser and theme smooth scroll behavior
 */

/* Override Elementor and native smooth scroll */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: auto;
  }
}

/* Ensure auto scroll behavior for all cases */
html {
  scroll-behavior: auto;
}

/* Prevent any smooth scroll on body as well */
body {
  scroll-behavior: auto;
}
