/** Shopify CDN: Minification failed

Line 32:0 Unexpected "<"
Line 45:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
.image_flex {
  display: flex;
  justify-content: center; /* Centering the whole block */
}

.image_both {
  display: flex;
  gap: 20px; /* Optional: space between images */
}

.image_both > div {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image_both img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the images don't stretch but fill the container nicely */
}
<style>
.slider-custom {
  margin: 20px 0;
}
.slider-custom .slide {
  padding: 10px;
}
.slider-custom .slider_image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
</style>
.slideshow__slide {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.slideshow__video,
.slideshow__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Wrapper */
.custom-video-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Hero container */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;       /* full screen on desktop */
  min-height: 100vh;
  overflow: hidden;
}

/* Video setup */
.custom-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Desktop / mobile toggle */
.desktop-only {
  display: block;
}
.mobile-only {
  display: none;
}

/* Text overlay */
.hero-text {
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  padding: 0 16px;
  z-index: 2;
}

.custom-subheading {
  font-size: 25px;
  color: #fff;
  font-weight: 500;
}

h1.custom-heading {
  font-size: 80px;
  color: #fff;
  line-height: 1.05;
  font-weight: 700;
}

/* Button */
.custom-collection-url {
  position: absolute;
  left: 50%;
  bottom: 9%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: transparent;
  border: 3px solid #ffffff;
  color: #fff;
  padding: 10px 37px;
  z-index: 2;
}

.custom-collection-url a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* Tablet */
@media (max-width: 1024px) {
  .custom-subheading {
    font-size: 20px;
  }
  h1.custom-heading {
    font-size: 60px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }

  .hero-section {
    position: relative;
    width: 100%;
    height: 80vh;      /* fills 80% of mobile viewport */
    min-height: 80vh;
    overflow: hidden;
  }

  .custom-hero-video.mobile-only,
  .hero-section img.custom-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero-text {
    top: 20%;
    padding: 0 12px;
  }

  .custom-subheading {
    font-size: 18px;
  }

  h1.custom-heading {
    font-size: 34px;
    line-height: 1.15;
  }

  .custom-collection-url {
    bottom: 8%;
    padding: 9px 26px;
    border-width: 2px;
  }
}