/* Google Reviews Styles - ETS PERDOUX */


.reviews-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 350px));
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
}

.review-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border-top: 3px solid #c4161b;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-weight: 600;
    font-size: 16px;
    color: #333;
    margin: 0 0 5px 0;
}

.review-date {
    font-size: 13px;
    color: #999;
}



.review-rating {
    margin-bottom: 15px;
}

.stars {
    display: flex;
    gap: 3px;
}

.star {
    color: #fbbc04;
    font-size: 18px;
}

.star.empty {
    color: #e0e0e0;
}

.review-text {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.review-text.expanded {
    -webkit-line-clamp: unset;
}

.read-more {
    color: #c4161b;
    cursor: pointer;
    font-size: 13px;
    margin-top: 10px;
    display: inline-block;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #a01217;
}

.google-badge {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.google-badge-content {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.google-logo-large {
    height: 40px;
}

.google-rating-info {
    text-align: left;
}

.google-overall-rating {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.google-stars-large {
    display: flex;
    gap: 5px;
    margin: 8px 0;
}

.google-stars-large .star {
    font-size: 24px;
}

.google-total-reviews {
    font-size: 14px;
    color: #666;
}

.reviews-loading {
    text-align: center;
    padding: 50px 0;
    color: #999;
}

.reviews-error {
    text-align: center;
    padding: 30px;
    background: #fff3cd;
    border-radius: 8px;
    color: #856404;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .reviews-wrapper {
        grid-template-columns: 1fr;
    }

    .google-badge-content {
        flex-direction: column;
        text-align: center;
    }

    .google-rating-info {
        text-align: center;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-card {
    animation: fadeIn 0.5s ease forwards;
}

.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.2s; }
.review-card:nth-child(3) { animation-delay: 0.3s; }
.review-card:nth-child(4) { animation-delay: 0.4s; }
.review-card:nth-child(5) { animation-delay: 0.5s; }
.review-card:nth-child(6) { animation-delay: 0.6s; }
