/* ==========================================================================
   Banner Slider – full-image slides
   ========================================================================== */

.cp-bslider {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  direction: rtl;
  isolation: isolate;
}

.cp-bslider__swiper {
  width: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.cp-bslider__slide-inner {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: inherit;
  background: #e8eef5;
}

.cp-bslider__link {
  display: block;
  width: 100%;
  height: 100%;
}

.cp-bslider__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: inherit;
  user-select: none;
}

/* Navigation */
.cp-bslider__nav {
  position: absolute;
  z-index: 5;
  right: 18px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cp-bslider__nav button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  transition: transform .2s ease, color .2s ease, box-shadow .2s ease;
}

.cp-bslider__nav button:hover {
  transform: translateY(-1px);
  color: #33a1fd;
  box-shadow: 0 12px 24px rgba(51, 161, 253, 0.18);
}

.cp-bslider__nav button i {
  font-size: 14px;
  line-height: 1;
}

.cp-bslider__pagination {
  position: absolute !important;
  z-index: 5;
  left: 0 !important;
  right: 0 !important;
  bottom: 18px !important;
  width: 100% !important;
  transform: none !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 !important;
  text-align: center;
}

.cp-bslider__pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  margin: 0 !important;
  opacity: 0.55;
  background: #fff;
  border-radius: 999px;
  transition: width .25s ease, opacity .25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.cp-bslider__pagination .swiper-pagination-bullet-active {
  width: 22px;
  opacity: 1;
}

.cp-bslider .swiper-slide {
  height: auto;
}

.cp-bslider-empty {
  padding: 28px;
  border-radius: 20px;
  background: #fff;
  border: 1px dashed #ebecf2;
  color: #8d9bb6;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .cp-bslider__slide-inner {
    height: 160px;
  }

  .cp-bslider__nav {
    right: 12px;
    bottom: 12px;
  }

  .cp-bslider__nav button {
    width: 34px;
    height: 34px;
  }

  .cp-bslider__pagination {
    bottom: 14px;
  }
}
