/** Shopify CDN: Minification failed

Line 15:13 Expected identifier but found "{"
Line 15:14 Unexpected "{"
Line 15:23 Expected ":"

**/
/* ==========================================================
   Video Carousel — assets/section-video-carousel.css
   ========================================================== */

.video-carousel-section{
  width:100%;
  padding:60px 0;
  background:{{ section.section.bgcolor }}; /* full-bleed dark "fullscreen" feel like reels grids */
}
.video-carousel__header h2 p{
    text-align:center;
}
.video-carousel__header{
  text-align:center;
  margin-bottom:32px;
  padding:0 20px;
}
/* Full-bleed: no max-width container so slider runs edge to edge */
.video-carousel{
  width:100%;
  padding:0 60px; /* room for arrows */
}

.video-slide{
  padding:0 8px;
}

.video-slide--empty{
  display:flex;
  align-items:center;
  justify-content:center;
  height:300px;
  color:#888;
}

.video-slide__inner{
  display:flex;
  flex-direction:column;
}

.video-slide__poster-wrap{
  position:relative;
  width:100%;
  aspect-ratio: 9 / 16; /* portrait, reel-style */
  overflow:hidden;
  background:#1a1a1a;
  cursor:pointer;
}

.video-slide__poster{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:opacity .25s ease;
}

.video-slide__poster--placeholder{
  background:linear-gradient(135deg,#333,#1a1a1a);
}

.video-slide__play-btn{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:52px;
  height:52px;
  background:transparent;
  border:none;
  padding:0;
  cursor:pointer;
  z-index:3;
  transition:transform .2s ease;
}

.video-slide__play-btn:hover{
  transform:translate(-50%,-50%) scale(1.08);
}

.video-slide__play-btn svg{
  width:100%;
  height:100%;
  filter:drop-shadow(0 2px 6px rgba(0,0,0,0.35));
}

/* Player mount point — fills the wrap once a video is playing */
.video-slide__player{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:2;
  display:none;
}

.video-slide__player iframe,
.video-slide__player video,
.video-slide__player .video-slide__video-el{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border:0;
}

/* ===== Playing state ===== */
.video-slide--playing .video-slide__poster,
.video-slide--playing .video-slide__play-btn{
  opacity:0;
  pointer-events:none;
}

.video-slide--playing .video-slide__player{
  display:block;
}

.video-slide__caption{
  margin:12px 0 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size:13px;
  color:#eaeaea;
  text-align:center;
}

/* ===== Custom arrow buttons (replaces Slick's default arrows) ===== */
.video-carousel .vc-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#1a1a1a;
  border:none;
  cursor:pointer;
  z-index:5;
  padding:0;
  transition: all 0.5s;
  opacity: 0;
}
.video-carousel:hover .vc-arrow{
    opacity: 1;
}
.video-carousel .vc-arrow svg{
  width:20px;
  height:20px;
  color:#fff;
  display:block;
}

.video-carousel .vc-arrow--prev{ left:50px; }
.video-carousel .vc-arrow--next{ right:50px; }

/* Slick adds this class to arrows when there's nowhere left to go */
.video-carousel .vc-arrow.slick-disabled{
  opacity:0.3;
  cursor:default;
  pointer-events:none;
}

.video-carousel .vc-arrow.slick-hidden{
  display:none;
}

.video-carousel .slick-track{
  display:flex;
}
.video-carousel .slick-slide{
  height:auto;
}

/* prevent flash-of-unslicked-slides before JS runs */
.video-carousel:not(.slick-initialized) .video-slide{
  display:inline-block;
  width:20%;
}

/* ===== Responsive ===== */
@media (max-width: 989px){
  .video-carousel {
    padding: 0 15px;
    margin: 0 -8px;
  }
  .video-carousel .vc-arrow--prev{ left:6px; }
  .video-carousel .vc-arrow--next{ right:6px; }
  .video-carousel:not(.slick-initialized) .video-slide{
    width:66.66%;
  }
  .video-carousel-section{
    padding:42px 0;
  }
  .video-carousel .vc-arrow {
    opacity: 1;
}
}