/** Shopify CDN: Minification failed

Line 76:29 Unexpected "/"
Line 98:31 Unexpected "/"

**/
.sticky-animation-container {
  position: relative;
  min-height: 100vh;
  height: auto;
}

.sticky-animation-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  min-height: 100vh;
  transition: top 0.3s ease, transform 0.3s ease;
  will-change: transform, top;
  transform: translateZ(0);
}

.sticky-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  backdrop-filter: blur(0px);
  transition: backdrop-filter 0.3s ease;
  pointer-events: none;
  will-change: backdrop-filter;
}

.sticky-background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color:  rgba(255, 255, 255, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  will-change: opacity;
}

.sticky-background-overlay img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.sticky-animation-trigger {
  position: relative;
  width: 100%;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  margin-top: 100vh;
}

/* Header Status Classes */
.sticky-animation-wrapper--header-hidden {
  top: 0 !important;
}

body:not(.product-page) .sticky-animation-wrapper--header-visible {
  top: 90px;
}

body:not(.product-page) .sticky-animation-wrapper--header-top,
body:not(.template-metaobject/store) .sticky-animation-wrapper--header-top {
  top: 169px;
}

/* Mobile styles */
@media screen and (max-width: 1024px) {
  .sticky-animation-wrapper {
    position: relative;
    transition: top 0.3s ease;
    will-change: top;
    transform: translateZ(0);
  }

  .sticky-animation-wrapper--header-hidden {
    top: 0 !important;
  }

  body:not(.product-page) .sticky-animation-wrapper--header-visible {
    top: 44px;
  }

  body:not(.product-page) .sticky-animation-wrapper--header-top,
  body:not(.template-metaobject/store) .sticky-animation-wrapper--header-top {
    top: 114px;
  }

  .sticky-overlay,
  .sticky-background-overlay {
    position: relative;
    height: 100%;
  }
  
  .disable-mobile ~ .sticky-animation-trigger,
  .disable-mobile + .sticky-animation-trigger {
    @media screen and (max-width: 1024px) {
      margin-top: 0;
    }
  }

  .disable-mobile .sticky-animation-wrapper {
    @media screen and (max-width: 1024px) {
      min-height: unset;
    }
  }
} 