.lumanPlus-video-section {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  padding: 30px 10px;
  box-sizing: border-box;
  direction: rtl;
  font-family: inherit;
}

.lumanPlus-video-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 400px;
  width: 100%;
}

.lumanPlus-info-box {
  color: #212121;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lumanPlus-info-box .info-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lumanPlus-info-box .info-header img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.lumanPlus-info-box .info-location {
  font-size: 14px;
  opacity: 0.7;
}

.lumanPlus-info-box .info-description {
  line-height: 2;
  font-size: 15px;
}

.lumanPlus-info-box .info-button {
  background-color: #F37321;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  width: fit-content;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 13px;
}

.lumanPlus-info-box .info-button:hover {
  background-color: #ff6d12;
  color: #fff;
}

.lumanPlus-video-wrapper swiper-container {
  width: 100%;
  height: 280px;
  max-width: 400px;
  cursor: grab;
}

.lumanPlus-video-wrapper swiper-container:active {
  cursor: grabbing;
}

.lumanPlus-video-wrapper swiper-slide {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #ddd;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lumanPlus-video-wrapper .video-cover {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  cursor: pointer;
}

.lumanPlus-video-wrapper .video-cover::before {
  content: '';
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 1;
}

.lumanPlus-video-wrapper .play-button {
  width: 64px;
  height: 64px;
  background: white;
  border-radius: 50%;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
}

.lumanPlus-video-wrapper .play-button::before {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  background-image: url('https://gilbyte.ir/wp-content/uploads/2025/06/play-black.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.lumanPlus-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: black;
}

.lumanPlus-info-box .nav-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.lumanPlus-info-box .nav-buttons button {
  background-color: #FFC8A5;
  color: #F37321;
  border: none;
  padding: 10px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.lumanPlus-info-box .nav-buttons button:hover {
  background-color: #F37321;
  color: #FFC8A5;
}

.lumanPlus-info-box .nav-buttons button.disabled {
  background-color: #ffe8da !important;
  color: #ff995a !important;
  cursor: default !important;
  pointer-events: none;
}

@media (max-width: 768px) {
  .lumanPlus-video-section {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .lumanPlus-info-box {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  .lumanPlus-video-wrapper {
    max-width: 300px;
  }

  .lumanPlus-video-wrapper swiper-container {
    height: 220px;
  }
}