/** Shopify CDN: Minification failed

Line 12:0 Unexpected "<"
Line 95:2 "heigh" is not a known CSS property
Line 121:0 Unexpected "}"
Line 233:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
.custom-slider-wrapper {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.custom-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 16px;
  padding: 0;
  margin: 0;
  scrollbar-width: none; /* Firefox */
}

.custom-slider::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.slide {
  flex: 0 0 auto; /* Let the slide width match image content */
  scroll-snap-align: start;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
  
.slide:first-child {
  margin-left: 25vw;
}
  
.image-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  box-sizing: border-box;
}

.image-container img {
  display: block;
  height: auto;
  max-height: 80vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.slider-controls {
  display: flex;
  gap: 8px;
  padding-right: 16px;
  padding-top: 16px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 0.5rem;
}

.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding-top: 0;
  border: 1px solid #393838;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.slider-nav:hover {
  transform: scale(1.05);
}

.slider-nav svg {
  display: block;
  width: 30px;
  heigh: 30px;
}


.slider-dots {
  text-align: center;
  margin-top: 0.75rem;
}

.slider-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 6px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.slider-dot.active {
  background-color: #393838;
  
}

  
}
</style>
<style>
.custom-slider-wrapper {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.custom-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 16px;
  padding: 0;
  margin: 0;
  scrollbar-width: none;
}

.custom-slider::-webkit-scrollbar {
  display: none;
}

.slide {
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.slide:first-child {
  margin-left: 25vw;
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  box-sizing: border-box;
}

.image-container img {
  display: block;
  height: auto;
  max-height: 80vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.slider-controls-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding-right: 16px;
  margin-top: 1rem;
}


.slider-controls {
  display: flex;
  gap: 8px;
}

.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid #393838;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.slider-nav:hover {
  transform: scale(1.05);
}

.slider-nav svg {
  display: block;
  width: 30px;
  height: 30px;
}

/* .slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.slider-dot.active {
  background-color: #393838;
} */
</style>