@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

/* ===== WRAPPER ===== */
.lcf-video-slider-wrap {
  position: relative;
  font-family: 'Open Sans', sans-serif;
  padding: 0 50px;
  box-sizing: border-box;
}

/* ===== ARROWS ===== */
.lcf-vs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #1e5c2e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 3px 12px rgba(0,0,0,0.15);
}
.lcf-vs-arrow:hover { background: #154a22; }
.lcf-vs-prev { left: 0; }
.lcf-vs-next { right: 0; }
.lcf-vs-arrow i { font-size: 15px; }

/* ===== SLIDE ===== */
.swiper-slide {
  box-sizing: border-box;
}

/* ===== VIDEO WRAP ===== */
.lcf-vs-video-wrap {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 6px 30px rgba(0,0,0,0.18);
}

/* ===== SELF HOSTED VIDEO ===== */
.lcf-vs-video-el {
  width: 100%;
  height: auto; 
  display: block;
height: 450px !important;
    object-fit: cover !important;
  background: #000;
}

/* ===== OVERLAY (Play/Pause button) ===== */
.lcf-vs-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.30);
  transition: background 0.3s;
  cursor: pointer;
}

.lcf-vs-overlay:hover {
  background: rgba(0, 0, 0, 0.45);
}

/* ===== PLAY BUTTON ===== */
.lcf-vs-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #1e5c2e;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, background 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.lcf-vs-btn:hover {
  transform: scale(1.1);
  background: #154a22;
}

.lcf-vs-btn i {
  color: #fff;
  font-size: 26px;
  margin-left: 4px;
}

/* ===== THUMBNAIL WRAP (for YouTube/Vimeo with thumbnail) ===== */
.lcf-vs-thumb-wrap {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.lcf-vs-thumb-img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

/* ===== IFRAME ===== */
.lcf-vs-iframe-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}

.lcf-vs-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== NO VIDEO PLACEHOLDER ===== */
.lcf-vs-no-video {
  width: 100%;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #f0f9f2;
  min-height: 200px;
}

.lcf-vs-no-video i {
  font-size: 40px;
  color: #aaa;
}

.lcf-vs-no-video p {
  font-size: 14px;
  color: #888;
}

/* ===== VIDEO TITLE ===== */
.lcf-vs-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1e5c2e;
  text-align: center;
  margin: 14px 0 0;
  padding: 0 8px;
}

/* ===== PAGINATION DOTS ===== */
.lcf-vs-pagination {
  position: relative !important;
  bottom: auto !important;
  margin-top: 20px !important;
  text-align: center;
}

.lcf-vs-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #c8e8cc;
  opacity: 1;
  transition: all 0.3s;
}

.lcf-vs-pagination .swiper-pagination-bullet-active {
  background: #1e5c2e;
  width: 28px;
  border-radius: 5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .lcf-video-slider-wrap {
    padding: 0 40px;
  }
  .lcf-vs-btn {
    width: 54px;
    height: 54px;
  }
  .lcf-vs-btn i {
    font-size: 20px;
  }
  .lcf-vs-arrow {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 480px) {
  .lcf-video-slider-wrap {
    padding: 0 34px;
  }
  .lcf-vs-btn {
    width: 46px;
    height: 46px;
  }
  .lcf-vs-btn i {
    font-size: 18px;
  }
  .lcf-vs-title {
    font-size: 14px;
  }
}
