.ecosupp-testimonial-carousel {
    position: relative;
    width: 100%;
}

.ecosupp-testimonial-carousel .testimonial-swiper {
    width: 100%;
    overflow: hidden;
}

.ecosupp-testimonial-carousel .testimonial-item {
    padding: 20px;
    transition: all 0.3s ease;
}

.ecosupp-testimonial-carousel .testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.3s ease;
}

/* Full background style */
.ecosupp-testimonial-carousel .testimonial-text.full-background {
    padding: 20px;
    border-radius: 8px;
}

/* Highlight styles for words mode */
.ecosupp-testimonial-carousel .testimonial-text .highlight {
    display: inline;
    padding: 2px 4px;
    background-color: #FFD700;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* When full background is active, highlighted words should still stand out */
.ecosupp-testimonial-carousel .testimonial-text.full-background .highlight {
    /* Keep the highlight visible with emphasis through font weight and optional different shade */
    padding: 2px 4px;
    font-weight: 700;
    /* Optionally, you can add a slightly different background shade */
    /* background-color: rgba(255, 255, 255, 0.3); */
}

/* Quotation marks styles */
.ecosupp-testimonial-carousel .testimonial-text.with-quotes {
    position: relative;
    padding: 15px 30px;
}

.ecosupp-testimonial-carousel .testimonial-text.with-quotes::before,
.ecosupp-testimonial-carousel .testimonial-text.with-quotes::after {
    font-family: Georgia, serif;
    position: absolute;
    font-size: 48px;
    opacity: 0.3;
    line-height: 1;
}

.ecosupp-testimonial-carousel .testimonial-text.with-quotes::before {
    content: """;
    top: -10px;
    left: -10px;
}

.ecosupp-testimonial-carousel .testimonial-text.with-quotes::after {
    content: """;
    bottom: -10px;
    right: -10px;
}

/* Name styles */
.ecosupp-testimonial-carousel .testimonial-name {
    font-weight: 600;
    font-size: 16px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

/* Name separator styles */
.ecosupp-testimonial-carousel .name-separator {
    margin: 15px auto;
    height: 2px;
    background-color: #ddd;
    transition: all 0.3s ease;
}

.ecosupp-testimonial-carousel .name-separator.dash {
    height: auto;
    background: none;
}

.ecosupp-testimonial-carousel .name-separator.dash::before {
    content: "—";
    display: block;
    text-align: center;
    line-height: 1;
    font-size: 24px;
    color: inherit;
}

.ecosupp-testimonial-carousel .name-separator.dots {
    height: auto;
    background: none;
}

.ecosupp-testimonial-carousel .name-separator.dots::before {
    content: "•••";
    display: block;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    letter-spacing: 5px;
    color: inherit;
}

/* Navigation styles */
.ecosupp-testimonial-carousel .swiper-button-prev,
.ecosupp-testimonial-carousel .swiper-button-next {
    color: #333;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
}

.ecosupp-testimonial-carousel .swiper-button-prev::after,
.ecosupp-testimonial-carousel .swiper-button-next::after {
    font-size: inherit;
}

.ecosupp-testimonial-carousel .swiper-button-prev:hover,
.ecosupp-testimonial-carousel .swiper-button-next:hover {
    transform: scale(1.1);
}

/* Pagination styles */
.ecosupp-testimonial-carousel .swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.ecosupp-testimonial-carousel .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.ecosupp-testimonial-carousel .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

.ecosupp-testimonial-carousel .no-testimonials {
    padding: 40px;
    text-align: center;
    background: #f5f5f5;
    border-radius: 5px;
    color: #666;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .ecosupp-testimonial-carousel .testimonial-text {
        font-size: 16px;
    }
    
    .ecosupp-testimonial-carousel .testimonial-name {
        font-size: 14px;
    }
    
    .ecosupp-testimonial-carousel .swiper-button-prev,
    .ecosupp-testimonial-carousel .swiper-button-next {
        width: 36px;
        height: 36px;
    }
}

/* RTL Support */
.rtl .ecosupp-testimonial-carousel .testimonial-text {
    direction: rtl;
    text-align: right;
}

.rtl .ecosupp-testimonial-carousel .testimonial-name {
    direction: rtl;
    text-align: right;
}

.rtl .ecosupp-testimonial-carousel .testimonial-text.with-quotes::before {
    content: """;
    right: -10px;
    left: auto;
}

.rtl .ecosupp-testimonial-carousel .testimonial-text.with-quotes::after {
    content: """;
    left: -10px;
    right: auto;
}
