/*

Theme name: Our Wonderful Theme

*/

/* Prevent horizontal overflow globally */
html {
  transform: none !important;
  overflow-x: hidden;
}

body {
  /* Prevent horizontal overflow on body */
  overflow-x: hidden;
  /* Ensure body doesn't exceed viewport width */
  max-width: 100vw;
  /* Prevent horizontal scrolling */
  position: relative;
}
