.jimmy-carousel .swiper-container {
  overflow: visible !important;
}

.jimmy-carousel .swiper-slide.swiper-slide-active {
  transform: scale(1);
  filter: none;
  z-index: 10;
}

.jimmy-carousel .swiper-slide {
  width: 300px;
  height: auto;
  transform: scale(0.85);
  transition: transform 0.4s ease, filter 0.4s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  background: white;
  text-align: center;
  padding: 30px;
  z-index: 1;
  filter: blur(0.5px);
}

.jimmy-carousel .swiper-slide img {
  border-radius: 50%;
  width: 80px;
  margin-bottom: 20px;
}

.jimmy-carousel .swiper-pagination {
  position: relative;
  margin-top: 30px;
  z-index: 0;
}

.jimmy-carousel-fade-wrapper {
  position: relative;
  overflow: visible;
}

.jimmy-carousel-fade-wrapper::before,
.jimmy-carousel-fade-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 140px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.jimmy-carousel-fade-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #F4F4F4 0%, transparent 100%);
}

.jimmy-carousel-fade-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #F4F4F4 0%, transparent 100%);
}

/* Responsive mobile */
@media (max-width: 768px) {
  .jimmy-carousel-fade-wrapper::before,
  .jimmy-carousel-fade-wrapper::after {
    display: none !important;
  }

  .jimmy-carousel .swiper-slide {
    width: 100% !important;
    max-width: 100vw;
    margin: 0 auto;
    transform: none !important;
    filter: none !important;
    flex-shrink: 0 !important;
  }

  .jimmy-carousel .swiper-wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
    justify-content: center;
  }
}