/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 144:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

.collection-slider {
  position: absolute; /* ✅ changed from fixed */
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh + env(safe-area-inset-bottom));
  height: 100dvh; /* Fallback override for newer devices */
  overflow: hidden;
  z-index: 0;
  background-color: #000;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  backface-visibility: hidden;
  will-change: transform, opacity;
  transform: none;
  -webkit-transform-style: preserve-3d;
}


.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 0;

  will-change: opacity;
  backface-visibility: hidden;
}
.slide.active {
  opacity: 1;
  z-index: 1;
}

.text-overlay {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.text-overlay ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.text-overlay li {
  opacity: 0.5;
  transition: all 0.3s ease;
  cursor: pointer;
}

.text-overlay li.selected {
  opacity: 1;
}
.vertical-count {
  position: absolute;
  bottom: 60px; /* aligns with text overlay */
  right: 30px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  color: white;
  pointer-events: none;
}

.slide-current,
.slide-total {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.5px;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
}

.slide-line {
  width: 2.5px;
  height: 85px;
  background-color: white;
  opacity: 0.6;
  margin: 6px 0;
  border-radius: 5px;
}

@media (min-width: 768px) {
  .text-overlay {
    bottom: 40px;
    top: auto;
    left: 60px;
    transform: none;
    gap: 24px;
  }

  .text-overlay ul li h2 {
    font-size: 36px !important;
  }

  .text-overlay ul li span {
    font-size: 16px !important;
  }
}

body.prevent-scroll {
  overflow: hidden;
  height: 100dvh; /* Overrides on modern browsers */
}

  html, body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100%;
  background-color: #000; /* Same as your slider background */
  overscroll-behavior: none;
  -webkit-overflow-scrolling: none;
  touch-action: none;
}


</style>