/*-----REVIEW CARROUSSEL-----*/
.reviews-carousel {
    position: relative;
    max-width: 900px;
    margin: 40px auto;
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
/* Het zichtbare venster */
.reviews-carousel .reviews-viewport {
    overflow: hidden;
    flex: 1;
}
/* Track schuift horizontaal */
.reviews-carousel .reviews-track {
    display: flex;
    transition: transform .4s ease;
}
/* Elke slide is 100% breed */
.reviews-carousel .review-slide {
    min-width: 100%;
    display: flex;
    gap: 16px;
    padding: 4px 0;
}
/* De review kaart */
.reviews-carousel .rev_container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    padding: 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.reviews-carousel .rev_stars {
    margin-bottom: 8px;
    font-size: 14px;
}
.reviews-carousel .rev_star {
    color: #fbbc04;
}
.reviews-carousel .rev_text {
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 10px;
}
.reviews-carousel .rev_person {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin-top: auto;
}
/* Carousel knoppen */
.reviews-carousel .carousel-btn {
    background: #7db1af5c;
    border-radius: 50%;
    border: 0px solid #ddd;
    width: 36px;
    height: 36px;
    min-width: 36px;
    flex: 0 0 36px;
    align-self: center;
    padding: 0;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    transition: box-shadow .2s ease, transform .1s ease, background .2s;
}
.reviews-carousel .carousel-btn:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
    background: #7db1af;
}
.reviews-carousel .carousel-btn:active {
    transform: scale(0.95);
}
/* Op mobiel liever 1 kaart per slide */
@media (max-width: 768px) {
    .reviews-carousel .review-slide {
        flex-direction: column;
    }
}
