/** Shopify CDN: Minification failed

Line 28:0 Expected "}" to go with "{"

**/
.site-background {
  /*background-image: url('/cdn/shop/files/Artboard_1.png?v=1761049319');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
}
*/
body {
  background: transparent !important;
}

/* Mobile optimization */
@media screen and (max-width: 749px) {
  .site-background {
    background-attachment: scroll; /* prevent janky scrolling on mobile */
    background-size: cover; /* or 'contain' if you want full image visible */
    background-position: top center;
    min-height: 100vh; /* ensure full screen coverage */
  }
}
