.eafe-smart-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.eafe-smart-slider .swiper-wrapper {
  display: flex;
}

.eafe-smart-slider .swiper-slide {
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

/* Slide inner container */
.eafe-slide-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eafe-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.eafe-slide-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slide content */
.eafe-slide-content {
  position: absolute;
  z-index: 2;
  padding: 20px;
}

.eafe-slide-content.position-top-left { top: 20px; left: 20px; }
.eafe-slide-content.position-top-center { top: 20px; left: 50%; transform: translateX(-50%); }
.eafe-slide-content.position-top-right { top: 20px; right: 20px; }
.eafe-slide-content.position-center-left { top: 50%; left: 20px; transform: translateY(-50%); }
.eafe-slide-content.position-center { top: 50%; left: 50%; transform: translate(-50%, -50%); }
.eafe-slide-content.position-center-right { top: 50%; right: 20px; transform: translateY(-50%); }
.eafe-slide-content.position-bottom-left { bottom: 20px; left: 20px; }
.eafe-slide-content.position-bottom-center { bottom: 20px; left: 50%; transform: translateX(-50%); }
.eafe-slide-content.position-bottom-right { bottom: 20px; right: 20px; }

.eafe-slide-title {
  margin: 0 0 10px 0;
  font-size: 32px;
}

.eafe-slide-description {
  margin: 0 0 15px 0;
  font-size: 16px;
}

.eafe-slide-button {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Navigation arrows */
.eafe-slider-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  z-index: 10;
  pointer-events: none;
}

.eafe-slider-arrow {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 24px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
  pointer-events: all;
  border-radius: 50%;
}

.eafe-slider-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}

.eafe-slider-arrow.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Pagination */
.eafe-slider-pagination {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.eafe-slider-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 0.5;
  margin: 0 5px;
  border-radius: 50%;
  transition: opacity 0.3s ease;
}

.eafe-slider-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

/* No slides */
.eafe-no-slides {
  text-align: center;
  padding: 40px;
  background: #f8f9fa;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .eafe-slide-title {
    font-size: 24px;
  }

  .eafe-slide-description {
    font-size: 14px;
  }

  .eafe-slide-button {
    padding: 8px 16px;
  }
}