.ec-61011e81-wrapper {
    width: 100%;
    position: relative;
    padding: 50px 0;
    background: #000;
    color: #fff;
    font-family: sans-serif;
    overflow: hidden;
}

.ec-61011e81-swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.ec-61011e81-slide {
    background-position: center;
    background-size: cover;
    /* Width managed dynamically by Swiper JS slidesPerView */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0.4;
    transition: all 0.4s ease;
}

.ec-61011e81-slide.swiper-slide-active {
    opacity: 1;
}

.ec-61011e81-image-container {
    height: 300px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.ec-61011e81-image-container img {
    height: 100%;
    width: 100%;
    object-fit: contain; /* default, controlled by settings */
}

.ec-61011e81-content {
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
}

.ec-61011e81-top-label {
    font-size: 18px;
    font-style: italic;
    color: #999;
    margin-bottom: 10px;
    transition: opacity 0.3s;
}

.ec-61011e81-title {
    font-size: 32px;
    font-weight: bold;
    margin: 0 0 20px 0;
    color: #fff;
    transition: opacity 0.3s;
}

.ec-61011e81-details {
    transition: all 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center; /* CENTER ALIGNMENT */
    text-align: center;  /* CENTER ALIGNMENT */
}

/* BLUR AND VISIBILITY LOGIC */
.ec-61011e81-slide:not(.swiper-slide-active) .ec-61011e81-image-container {
    filter: blur(8px); /* Default Blur the image, overwritten by settings */
    opacity: 0.6;
}

/* Hide everything EXCEPT the title in non-active slides */
.ec-61011e81-slide:not(.swiper-slide-active) .ec-61011e81-top-label,
.ec-61011e81-slide:not(.swiper-slide-active) .ec-61011e81-details {
   opacity: 0;
   visibility: hidden;
   height: 0;
   margin: 0;
   padding: 0;
}

/* Ensure title IS visible on non-active slides */
.ec-61011e81-slide:not(.swiper-slide-active) .ec-61011e81-title {
    opacity: 0.5; /* Dimmed but visible */
}

/* Active slide details */
.ec-61011e81-slide.swiper-slide-active .ec-61011e81-details {
    opacity: 1;
    visibility: visible;
    height: auto;
}

.ec-61011e81-slide.swiper-slide-active .ec-61011e81-top-label,
.ec-61011e81-slide.swiper-slide-active .ec-61011e81-title {
    opacity: 1;
}

.ec-61011e81-features {
    font-size: 14px;
    margin-bottom: 20px;
    text-align: left; /* Keep bullets aligned properly within the centered container */
    display: inline-block;
}

.ec-61011e81-features ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.ec-61011e81-features li {
    margin-bottom: 5px;
}

.ec-61011e81-desc, .ec-61011e81-tip {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #ccc;
    text-align: center; /* CENTER ALIGNMENT */
}

/* Ratings */
.ec-61011e81-ratings {
    margin-top: 20px;
    text-align: left; /* align items within flex */
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    background: transparent;
    padding: 15px 0;
    color: #fff;
    align-items: center; /* Center the rating rows */
}
.ec-61011e81-rating-row {
    display: flex;
    align-items: center;
    justify-content: center; /* Center content */
    width: 100%;
}
.ec-61011e81-rating-label {
    width: 160px;
    font-size: 14px;
    font-weight: 500;
    text-align: left; /* Keep label left aligned */
}
.ec-61011e81-rating-stars {
    display: flex;
    gap: 6px;
    align-items: center;
}
.ec-61011e81-star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.ec-61011e81-star svg {
    width: 18px;
    height: 18px;
    fill: #0066ff;
}

/* Navigation */
.ec-61011e81-prev, .ec-61011e81-next {
    color: #fff;
    background: rgba(255,255,255,0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.ec-61011e81-prev:after, .ec-61011e81-next:after {
    font-size: 18px;
}

.ec-61011e81-pagination .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.3;
}
.ec-61011e81-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

/* RESPONSIVENESS */
@media (max-width: 1023px) {
    /* 1. HIDE NON-ACTIVE SLIDES ON MOBILE/TABLET TO ENSURE CLEAN VIEW IF ONLY 1 IS SHOWN */
    /* This rule applies only if the elementor setting dictates 1 slide, handled safely by swiper */
    .ec-61011e81-slide:not(.swiper-slide-active) {
        /* We remove the hard display:none to allow swiper to transition multiple slides if set by user */
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .ec-61011e81-slide.swiper-slide-active {
        opacity: 1 !important;
    }

    .ec-61011e81-slide .ec-61011e81-image-container {
        filter: none !important; 
        opacity: 1 !important;
        width: 100%;
        padding: 0 20px;
    }

    .ec-61011e81-content {
        max-width: 100%;
        padding: 0 20px;
    }

    .ec-61011e81-slide.swiper-slide-active .ec-61011e81-details,
    .ec-61011e81-slide.swiper-slide-active .ec-61011e81-top-label,
    .ec-61011e81-slide.swiper-slide-active .ec-61011e81-title {
        opacity: 1 !important;
        visibility: visible !important;
        height: auto !important;
    }
}
