.mamas-mat-testimonials-container {
    max-width: 700px;
    margin: 30px auto;
    padding: 0px 60px 0;
    position: relative;
    text-align: center;
}


@media (max-width: 1200px) {
    .mamas-mat-testimonials-container {
        margin: 75px auto 30px;
    }
}

/* --- Styles pour les images de design --- */
.testimonial-quote-icon {
    width: 60px;
    height: auto;
    z-index: 0;
    margin: 0 0 20px;
}

.testimonial-quote-icon2 {
    top: inherit;
    bottom: 0px;
    transform: rotate(180deg);
    margin: 20px 0 0;
}

.testimonial-bg-meal1,
.testimonial-bg-meal2 {
    position: absolute;
    z-index: -1;
    width: 330px;
    display: none;
}

.testimonial-bg-meal2{
    top: -50px;
    right: -350px;
}

.testimonial-bg-meal1  {
    top: 75px;
    left: -350px;
}

/* Le "viewport" qui cache les slides qui dÃ©bordent */
.testimonial-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Flèches de navigation */
.testimonial-nav-arrow {
    position: absolute;
    top: calc(50% - 22.5px);
    transform: translateY(-50%);
    background: rgba(143, 63, 43, 0.8);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.testimonial-nav-arrow:hover {
    background: rgba(143, 63, 43, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.testimonial-nav-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.testimonial-nav-prev {
    left: -20px;
}

.testimonial-nav-next {
    right: -20px;
}

.testimonial-nav-arrow svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .testimonial-nav-arrow {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-nav-prev {
        left: -15px;
    }
    
    .testimonial-nav-next {
        right: -15px;
    }
    
    .testimonial-nav-arrow svg {
        width: 18px;
        height: 18px;
    }
}

/* Le conteneur qui bouge et qui contient tous les slides */
.testimonial-slider {
    display: flex;
    width: 100%;
}

/* Chaque slide individuel */
.testimonial-slide {
    flex-shrink: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
    text-align: center;
    /* min-height: 120px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-text {
    font-size: 20px;
    font-weight: bold;
    color: #8F3F2B;
    margin: 0;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-size: 15px;
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #BFB800;
    position: relative;
    z-index: 1;
}

.person-images {
    /*display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 70px;
    position: relative;
    z-index: 1;*/
    display: none !important; 
}

.person-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease-in-out;
}

.person-image.active {
    transform: scale(1.4);
    filter: grayscale(0%);
}

.person-image:hover {
    transform: scale(1.15);
    filter: grayscale(0%);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
