/** Shopify CDN: Minification failed

Line 12:0 Unexpected "<"
Line 138:0 Unexpected "<"
Line 202:0 Unexpected "<"
Line 248:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
.collection-slider-section {
  padding: 40px 20px;
  position: relative;
}

.collection-slider-section h2 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 30px;
  margin-top: 30px;
}

.slider-container {
  overflow: hidden;
  position: relative;
}

.collection-slider-wrapper {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 24px; /* Nice gap between slides */
  padding: 0 40px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-left: 20px;
}
.collection-slider-wrapper::-webkit-scrollbar {
  display: none;
}

.collection-slide {
  flex: 0 0 calc((100% - 48px) / 3); /* 3 visible slides with 24px gap */
  scroll-snap-align: start;
  position: relative;
  height: 450px;
}

.collection-slide a {
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.collection-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.collection-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  color: white;
}

.collection-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.shop-button {
  background-color: white;
  color: black;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  color: black;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: none;
  font-size: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 10;
}
.slider-arrow.left {
  left: 10px;
}
.slider-arrow.right {
  right: 10px;
}

/* Tablet */
@media (max-width: 1024px) {
  .collection-slide {
    flex: 0 0 calc((100% - 24px) / 2); /* Show 2 on tablet */
  }
}

/* Mobile */
@media (max-width: 768px) {
  .collection-slide {
    flex: 0 0 85%; /* Show 1.1 card on mobile */
    height: 350px;
  }

  .slider-arrow {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}

</style>
<style>
.image-text-columns-section {
  padding: 40px 0;
  text-align: center;
}

.image-text-columns-section .section-heading {
 font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
    margin-top: 30px;
}

.image-text-columns-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}

.image-text-columns-row .column {
  flex: 1 1 50%;
  position: relative;
  min-height: 300px;
  margin: 0;
  padding: 0;
}

.image-text-columns-row .column a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.image-text-columns-row .column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-text-columns-row .overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  pointer-events: none;
  text-align: center;
  z-index: 1;
}

@media (max-width: 768px) {
  .image-text-columns-row {
    flex-direction: column;
  }

  .image-text-columns-row .column {
    flex: 1 1 100%;
  }
}
</style>
<style>
.hero-banner-image-section {
  width: 100%;
  height: 90vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-banner-image-section .banner-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 20px;
  max-width: 90%;
}

.hero-banner-image-section .banner-content h1 {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-banner-image-section .banner-content a {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid white;
  text-decoration: none;
  color: white;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .hero-banner-image-section .banner-content h1 {
    font-size: 1.8rem;
  }
}
</style>