/** Shopify CDN: Minification failed

Line 350:36 Unexpected "{"
Line 350:45 Expected ":"
Line 350:52 Unexpected "{"

**/
/* Video Swiper Section - Base Styles */
.video-swiper-section {
  width: 100%;
  overflow: hidden;
}

/* .video-swiper-section .page-width {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.5rem;
} */
.video-slide-card,
.video-slide-video-wrapper,
.video-slide-video,
.video-slide-poster {
  cursor: pointer;
}

.video-slide-play-btn {
  cursor: pointer;
}

/* Header */
.video-swiper-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  gap: 2rem;
}
p.text-green.video-swiper-subheading {
    margin: 0;
}

.video-swiper-header-content {
  flex: 1;
}
.video-swiper-heading {
  margin: 0;
  margin-bottom: 12px;
   
}


/* Navigation Buttons */
.video-swiper-navigation {
  display: none;
  gap: 1rem;
}

 .swiper-button-prev-custom img ,
 .swiper-button-next-custom img{
  max-width:100%;
  object-fit:cover;
   width: 44px;
  height: 44px;
 }
.swiper-button-prev-custom,
.swiper-button-next-custom {
  /* width: 44px;
  height: 44px; */
  border:0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
 
}

.swiper-button-prev-custom.swiper-button-disabled,
.swiper-button-next-custom.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Swiper Container */
.video-swiper-section .swiper {
  overflow:hidden;
  max-width: 1304px;
  padding-bottom: 2rem;
}

.video-swiper-section .swiper-wrapper {
  display: flex;
}

.video-swiper-section .swiper-slide {
  height: auto;
  display: flex;
}

/* Video Slide Card */
.video-slide-card {
  border-radius: 12px;
  overflow: hidden;
  background-color: #1a4d2e;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  width: 100%;
}

.video-slide-card:hover {
  transform: translateY(-4px);
}

/* Video Wrapper */
.video-slide-video-wrapper {
  position: relative;
  width: 100%;
  min-height: 418px;
  height: 418px;
  background: #000;
  overflow: hidden;
}

.video-slide-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hide native video controls */
.video-slide-video::-webkit-media-controls,
.video-slide-video::-webkit-media-controls-panel,
.video-slide-video::-webkit-media-controls-play-button,
.video-slide-video::-webkit-media-controls-start-playback-button,
.video-slide-video::-webkit-media-controls-enclosure {
  display: none !important;
  -webkit-appearance: none;
}

/* Video Poster */
.video-slide-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.video-slide-poster.active {
  display: flex;
}

.video-slide-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Play/Pause Button */
.video-slide-play-btn {
    position: absolute;
    bottom: 0%;
    left: 12%;
    transform: translate(-50%,-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    line-height: 0;
    transition: all .3s ease;
}

.video-slide-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-slide-play-btn:active {
  transform: translate(-50%, -50%) scale(0.95);
}

.video-slide-play-btn svg {
  display: block;
}
.video-slide-play-btn svg path {
    display: block;
    color: #006e37;
    fill: #006e37;
}
.video-slide-play-btn svg circle {
  display: block;
  fill:#FDFAF0CC;
}

.video-slide-play-btn.no-poster {
  z-index: 5;
}

/* Placeholder */
.video-slide-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}

.video-slide-placeholder svg {
  width: 100%;
  height: 100%;
  opacity: 0.3;
}
svg.pause-icon rect {
    fill:#006e37;
}
/* Content Area */


.video-slide-title {
    display:none;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
  color: #fff;
}

.video-slide-description {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.video-slide-description p {
  margin: 0;
  color: #FDFAF0;
  line-height: 22px;
}

.video-slide-rating {
  display: flex;
  gap: 0.25rem;
  margin: 0.5rem 0;
}
.rating-andauthor-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.video-slide-rating .gradient-star {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.video-slide-author {
 font-size: 15px;
 color: #FDFAF0;
  margin: 0;
}

/* Tablet Styles */
@media screen and (min-width: 750px) {
  .video-swiper-navigation {
    display: flex;
  }
  
 /* .video-slide-video-wrapper {
    height: 100%;
    width: 100%;
} */
 .video-slide-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    height:100%;
    justify-content: space-between;
}
  
  .video-slide-title {
    font-size: 1.125rem;
  }
}

/* Desktop Styles */
@media screen and (min-width: 990px) {
  .video-swiper-header {
    margin: 0 auto;
    margin-bottom: 36px;
    max-width: 1304px;
  }
}

/* Mobile Optimizations */
@media screen and (max-width: 749px) {
  .video-swiper-header-content {
    flex: 1;
    text-align: center;
}
  .video-swiper-header {
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
  }

  .video-swiper-heading {
    margin-bottom: 16px;
  }
  
  .video-swiper-heading.h0 {
    font-size: 2.5rem;
  }
  
  p.text-green.video-swiper-subheading {
    line-height: 21px;
  }
  
  .video-slide-video-wrapper {
    height: 350px;
  }
  
  .video-slide-play-btn svg {
    width: 44px;
    height: 44px;
  }
  
 .video-slide-content {
    padding: 1.25rem;
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.video-swiper-header .video-swiper-navigation {
  order: 2; /* moves navigation below swiper */
}

.video-swiper-header .video-swiper-{{ section.id }} {
  order: 1; /* swiper stays on top */
}

   .video-swiper-navigation {
    display: flex;
  }
}

/* Extra Small Devices */
@media screen and (max-width: 480px) {
  .video-swiper-section .page-width {
    padding: 0 1rem;
  }
  .video-swiper-section .swiper {
    margin: 0 -10px;
    padding-bottom: 28px;
}
  .video-swiper-section {
  overflow: hidden;
    padding-top: 54px!important;
    padding-bottom: 54px!important;
}
  
  .video-slide-video-wrapper {
    height: 388px;
  }
}
/* Desktop Navigation - in header */
.video-swiper-navigation.desktop-nav {
  display: none;
}

/* Mobile Navigation - below swiper */
.video-swiper-navigation.mobile-nav {
  display: none;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

@media screen and (min-width: 750px) {
  .video-swiper-navigation.desktop-nav {
    display: flex;
  }
  
  .video-swiper-navigation.mobile-nav {
    display: none;
  }
}

@media screen and (max-width: 749px) {
  .video-swiper-navigation.mobile-nav {
    display: flex;
  }
  
  .video-swiper-header {
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.8rem;
  }
  
  .video-swiper-header-content {
    text-align: center;
  }
}
/* Play/Pause Button */
.video-slide-play-btn {
    position: absolute;
    bottom: 2%;
    left: 12%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    line-height: 0;
    transition: all .3s ease;
}
.video-swiper-navigation.mobile{
     display: none;
}
@media(max-width:480px){
  .video-swiper-navigation.desktop{
    display: none;
  }
 .video-swiper-navigation.mobile {
    display: flex;
    justify-content: center;
    align-items: center;
}
.video-slide-card {
    /* aspect-ratio: 295 / 520; */
    /* height: 520px; */
    /* max-width: 295px; */
}
.video-slide-video-wrapper {
    height: 391px;
    min-height: 500px;
}
}
