/** Shopify CDN: Minification failed

Line 8:0 Unexpected "<"
Line 77:0 Unexpected "<"

**/
/* START_SECTION:custom-slideshow (INDEX:20) */
<style>
.custom-slideshow-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.custom-slideshow-wrapper {
  display: flex;
  transition: transform 1.2s ease-in-out;
  width: 100%;
}

.custom-slideshow-slide {
  min-width: 100%;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  background: #000;
  color: #fff;
  /* CRUCIAL: Sets height for mobile video banner */
  height: 100vw; 
  max-height: 500px; 
}

.custom-slideshow-slide img,
.custom-slideshow-slide video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Force video to cover the slide area */
.custom-slideshow-slide video {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; 
}

.custom-slideshow-slide .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80%;
  z-index: 2; 
}

.custom-slideshow-slide .content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.custom-slideshow-slide .content p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.custom-slideshow-slide .content a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}
</style>
/* END_SECTION:custom-slideshow */
