/**
 * Reviews Carousel Styles
 * Conforme au template index.html
 */

/* ========== CARROUSEL AVIS CLIENTS ========== */
.reviews-carousel-section {
    padding: 25px 0;
    margin-top: 20px;
    border-top: 1px solid #eee;
}

.reviews-title {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #999;
    margin-bottom: 15px;
}

.reviews-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.reviews-carousel {
    display: flex;
    transition: transform 0.4s ease;
}

.review-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.review-content {
    padding: 0;
}

.review-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.review-arrow {
    color: #f5b12d;
    font-size: 12px;
}

.review-arrow-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.review-arrow-link:hover {
    transform: translateX(2px) translateY(-2px);
}

.review-arrow-link:hover .review-arrow {
    color: #dcb253;
}

.review-text {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.review-author {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #333;
}

.review-author span {
    color: #999;
    font-weight: 400;
}

.review-author strong {
    font-weight: 600;
}

/* Navigation du carrousel */
.reviews-carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.reviews-carousel-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #999;
    transition: all 0.2s ease;
    padding: 0;
    line-height: 1;
}

.reviews-carousel-btn span {
    font-size: 18px;
    line-height: 1;
}

.reviews-carousel-btn:hover {
    border-color: #333;
    color: #333;
}

.reviews-carousel-btn:focus {
    outline: none;
    border-color: #f5b12d;
}

/* Points de navigation */
.reviews-carousel-dots {
    display: flex;
    gap: 8px;
}

.reviews-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.2s ease;
}

.reviews-dot:hover {
    background: #bbb;
}

.reviews-dot.active {
    background: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .reviews-carousel-section {
        padding: 20px 0;
        margin-top: 15px;
    }
    
    .reviews-title {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .review-title {
        font-size: 13px;
    }
    
    .review-text {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .review-author {
        font-size: 11px;
    }
    
    .reviews-carousel-nav {
        gap: 12px;
        margin-top: 15px;
    }
    
    .reviews-carousel-btn {
        width: 28px;
        height: 28px;
    }
    
    .reviews-carousel-btn span {
        font-size: 16px;
    }
    
    .reviews-dot {
        width: 6px;
        height: 6px;
    }
}

/* Animation de slide */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.review-slide.active .review-content {
    animation: slideIn 0.3s ease;
}
