.slider-wrapper-e801ed8c {
    position: relative;
    width: 100% !important; /* Force full width against Elementor containers */
    max-width: 100% !important;
    overflow: hidden;
    padding: 20px 0 50px; /* space for pagination */
    box-sizing: border-box;
    display: block; /* Fix for flex containers */
}

.swiper-container-e801ed8c {
    width: 100% !important; /* Force full width */
    height: 100%;
    overflow: visible !important; /* Allow peek effect */
}

.swiper-container-e801ed8c .swiper-slide {
    transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
    transform: scale(0.85); /* Slightly smaller for non-active */
    opacity: 0.5; /* Faded for non-active */
    filter: blur(2px); /* Blurred for non-active */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Removed width: 100% !important here as Swiper needs to calculate it based on slidesPerView */
}

.swiper-container-e801ed8c .swiper-slide-active {
    transform: scale(1); /* Full size for active center */
    opacity: 1; /* Full opacity for active center */
    filter: blur(0); /* Sharp for active center */
    z-index: 10;
}

.swiper-container-e801ed8c .swiper-slide-inner {
    width: 100% !important; /* Take full slide width */
    height: 400px; /* default, overriden by elementor control */
    position: relative;
}

.swiper-container-e801ed8c .swiper-slide img {
    width: 100% !important; /* Spread out horizontally within slide */
    height: 100%;
    object-fit: cover; /* Prevent squishing */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: block;
}

.swiper-container-e801ed8c .swiper-button-next,
.swiper-container-e801ed8c .swiper-button-prev {
    color: #fff;
    background: rgba(0,0,0,0.3);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    z-index: 20;
}

.swiper-container-e801ed8c .swiper-button-next:after,
.swiper-container-e801ed8c .swiper-button-prev:after {
    font-size: 18px;
}

.swiper-container-e801ed8c .swiper-pagination-bullet {
    background: #000;
    opacity: 0.2;
}
.swiper-container-e801ed8c .swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1;
}

.swiper-container-e801ed8c .swiper-pagination {
    bottom: -5px;
}