/* Static Carousel Styles - Scoped to .static-carousel-wrapper */
.static-carousel-wrapper {
  position: relative;
  width: 85%;
}

.static-carousel-wrapper .swiper {
  width: 100%;
  padding: 20px 13px 20px 5px;
}

.static-carousel-wrapper .swiper-slide {
  width: 325px !important;
}

/* Carousel Item */
.static-carousel-wrapper .sc-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.static-carousel-wrapper .sc-item:hover {
  transform: translateY(-5px);
}

/* Image Section */
.static-carousel-wrapper .sc-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.static-carousel-wrapper .sc-image-wrapper img {
  width: 100%;
  height: 256px !important;
  display: block;
  object-fit: cover;
}

/* Overlay */
.static-carousel-wrapper .sc-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffffa8;
  transition: opacity 0.3s ease;
}

.static-carousel-wrapper .sc-item:hover .sc-overlay {
  opacity: 1;
}

.static-carousel-wrapper .sc-overlay-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.static-carousel-wrapper .sc-item:hover .sc-overlay-icon {
  transform: scale(1.1);
}

/* Content Section */
.static-carousel-wrapper .sc-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
  gap: 15px;
  min-height: 280px;
}

.static-carousel-wrapper .sc-title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.static-carousel-wrapper .sc-description {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}

.static-carousel-wrapper .sc-button {
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  outline: none;
}

.static-carousel-wrapper .sc-button:hover {
  text-decoration: none;
}

/* Navigation Arrows */
.static-carousel-wrapper .swiper-button-prev,
.static-carousel-wrapper .swiper-button-next {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 10;
}

.static-carousel-wrapper .swiper-button-prev::after,
.static-carousel-wrapper .swiper-button-next::after {
  content: none;
}

.static-carousel-wrapper .swiper-button-prev {
  left: 10px;
}

.static-carousel-wrapper .swiper-button-next {
  right: 10px;
}

.static-carousel-wrapper .swiper-button-prev.swiper-button-disabled,
.static-carousel-wrapper .swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Pagination Dots */
.static-carousel-wrapper .swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.static-carousel-wrapper .swiper-pagination-bullet {
  opacity: 0.5;
  transition: all 0.3s ease;
}

.static-carousel-wrapper .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .static-carousel-wrapper .sc-title {
    font-size: 18px;
  }
  .static-carousel-wrapper .sc-description {
    font-size: 13px;
  }
  .static-carousel-wrapper .swiper-button-prev {
    left: -50px;
  }
  .static-carousel-wrapper .swiper-button-next {
    right: -50px;
  }
}

@media (max-width: 768px) {
  .static-carousel-wrapper .sc-content {
    padding: 15px;
    gap: 10px;
  }
  .static-carousel-wrapper .sc-title {
    font-size: 16px;
  }
  .static-carousel-wrapper .sc-description {
    font-size: 12px;
  }
  .static-carousel-wrapper .sc-button {
    padding: 8px 16px;
    font-size: 14px;
  }
  .static-carousel-wrapper .swiper-button-prev,
  .static-carousel-wrapper .swiper-button-next {
    width: 36px;
    height: 36px;
  }
  .static-carousel-wrapper .swiper-button-prev {
    left: 10px;
  }
  .static-carousel-wrapper .swiper-button-next {
    right: 10px;
  }
}

/* Loading State */
.static-carousel-wrapper:not(.swiper-initialized) {
  opacity: 0;
}

.static-carousel-wrapper.swiper-initialized {
  opacity: 1;
  transition: opacity 0.3s ease;
}