:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html,
body,
#app {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
}

html,
body {
  overscroll-behavior: none;
}

body {
  position: fixed;
  inset: 0;
}

#app {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  min-height: 100dvh;
  overflow: hidden;
}

#shopFrame {
  position: absolute;
  inset: 0;
  display: block;
  width: 100vw;
  height: 100dvh;
  min-width: 100vw;
  min-height: 100dvh;
  max-width: none;
  max-height: none;
  border: 0;
  outline: 0;
  margin: 0;
  padding: 0;
  background: #fff;
  overflow: hidden;
}

/* Older browsers / WebViews without dynamic viewport units. */
@supports not (height: 100dvh) {
  #app,
  #shopFrame {
    height: 100vh;
    min-height: 100vh;
  }
}

/* Safe-area support for phones with display cutouts/home indicators. */
@supports (height: 100svh) {
  #app,
  #shopFrame {
    height: 100svh;
    min-height: 100svh;
  }
}

@supports (height: 100dvh) {
  #app,
  #shopFrame {
    height: 100dvh;
    min-height: 100dvh;
  }
}
