/* Final 5 banners */
.full-banner-wrap {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: #f7f7f5;
}

.full-banner-slider {
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
}

.full-banner-slide {
  display: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.full-banner-slide.active {
  display: block;
}

.full-banner-slide img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
}

.full-banner-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.full-banner-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(120,120,120,.35);
  cursor: pointer;
  padding: 0;
}

.full-banner-dots button.active {
  background: #f37021;
}

.full-banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  color: #333;
  font-size: 30px;
  line-height: 46px;
  text-align: center;
  cursor: pointer;
  z-index: 20;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}

.full-banner-arrow.prev {
  left: 18px;
}

.full-banner-arrow.next {
  right: 18px;
}

@media (max-width: 768px) {
  .full-banner-arrow {
    width: 38px;
    height: 38px;
    line-height: 38px;
    font-size: 24px;
  }

  .full-banner-dots {
    bottom: 10px;
    gap: 8px;
  }

  .full-banner-dots button {
    width: 10px;
    height: 10px;
  }
}










/* JD TALL BANNER START */
.full-banner-wrap,
.full-banner-slider,
.full-banner-slide,
.full-banner-slide.active {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  line-height: 0;
}
.full-banner-slide.active { display: block !important; }
.full-banner-slide img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 2079 / 875;
  object-fit: contain !important;
  object-position: center center !important;
  margin: 0 !important;
  padding: 0 !important;
}
.full-banner-dots { bottom: 18px !important; }
/* JD TALL BANNER END */
