.swiper-super-flow {
  box-sizing: border-box;
}

.wows-super-flow .wows-position-center {
  width: 100%;
}

.swiper-super-flow .swiper-slide {
  overflow: visible !important;
  transform-style: preserve-3d;
}

.swiper-super-flow:not(.swiper-virtual) .swiper-slide:not(.swiper-slide-active,
.swiper-slide-next,
.swiper-slide-prev,
.swiper-slide:has(+ .swiper-slide-prev),
.swiper-slide-next + .swiper-slide) {
  opacity: 0;
  visibility: hidden;
}

.swiper-super-flow .super-flow-content {
  position: relative;
  height: 100%;
  z-index: 10;
}

.swiper-super-flow .super-flow-image {
  width: 104%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.swiper-super-flow .super-flow-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}

.swiper-super-flow .super-flow-fragments {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
}

.swiper-super-flow .super-flow-fragment-border {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.25);
}

.wows-super-flow {
  --slider-height: clamp(350px, 40vw, 700px);
}

.wows-super-flow .swiper {
  width: 100%;
  height: var(--slider-height);
  min-height: var(--slider-height);
}

.wows-super-flow .super-flow-content {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

.wows-super-flow .super-flow-content .wows-super-flow-title {
  font-weight: bold;
  line-height: 1.1;
  text-align: center;
  box-sizing: border-box;
  color: #000;
  font-size: 6vw;
  transition-property: transform;
}

.wows-super-flow .swiper-pagination-bullets {
  position: absolute;
  white-space: nowrap;
  --swiper-pagination-bullet-size: 10px;
  --swiper-pagination-bullet-horizontal-gap: 5px;
  --swiper-pagination-bullet-vertical-gap: 10px;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-color: #000;
  bottom: 50px !important;
}

.wows-super-flow .swiper-pagination-bullets.swiper-pagination-horizontal {
  padding: 16px;
  width: auto;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0;
}

.wows-super-flow .swiper-pagination-bullets.swiper-pagination-vertical {
  padding: 16px;
}

/* Navigation arrows */
.wows-super-flow .wows-slidenav-next,
.wows-super-flow .wows-slidenav-previous {
  width: clamp(40px, 5vw, 50px);
  height: clamp(40px, 5vw, 50px);
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  backdrop-filter: blur(5px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: black;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wows-super-flow .wows-slidenav-previous {
  left: clamp(20px, 3vw, 30px) !important;
}

.wows-super-flow .wows-slidenav-next {
  right: clamp(20px, 3vw, 30px) !important;
}

.wows-super-flow .wows-slidenav-next:after,
.wows-super-flow .wows-slidenav-previous:after {
  font-size: 22px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

/* Hover effects */
.wows-super-flow .wows-slidenav-next:hover,
.wows-super-flow .wows-slidenav-previous:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  animation: pulse-glow 2s infinite;
}

/* Ripple effect */
.wows-super-flow .wows-slidenav-next:before,
.wows-super-flow .wows-slidenav-previous:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease-out, height 0.6s ease-out, opacity 0.6s ease-out;
  opacity: 0;
  z-index: -1;
}

.wows-super-flow .wows-slidenav-next:hover:before,
.wows-super-flow .wows-slidenav-previous:hover:before {
  width: 150%;
  height: 150%;
  opacity: 1;
}

.wows-super-flow .wows-dots-container {
  z-index: 11;
  position: relative;
}

/* Pulse animation */
@keyframes pulse-glow {
  0% {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(255, 255, 255, 0);
  }
}