/* ============================================
   FLYIN'CHEF GOOGLE REVIEWS CAROUSEL
   ============================================ */

.fc-reviews-section {
    background: #fff;
    padding: 60px 20px;
}

.fc-reviews-header {
    text-align: center;
    margin-bottom: 40px;
}

.fc-reviews-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.fc-stars {
    color: #ffc107;
    font-size: 20px;
}

.fc-rating-number {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 15px;
    color: #5D4E4E;
    font-weight: 600;
}

.fc-rating-source {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14px;
    color: #888;
}

.fc-reviews-carousel-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
}

.fc-reviews-carousel-track {
    display: flex;
    gap: 25px;
    animation: fc-scroll 40s linear infinite;
    will-change: transform;
}

.fc-reviews-carousel-wrapper:hover .fc-reviews-carousel-track {
    animation-play-state: paused;
}

.fc-review-card {
    flex: 0 0 350px;
    background: #f8f7f7;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fc-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.fc-review-stars {
    color: #ffc107;
    font-size: 16px;
}

.fc-review-text {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 15px;
    color: #5D4E4E;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fc-review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.fc-author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.fc-author-initials {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e43a6f, #c62d5a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    font-family: 'Josefin Sans', sans-serif;
}

.fc-author-info {
    flex: 1;
}

.fc-author-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    color: #3d3539;
    margin-bottom: 4px;
}

.fc-review-date {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 13px;
    color: #888;
}

.fc-review-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14px;
    color: #e43a6f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.fc-review-link:hover {
    color: #c62d5a;
}

@keyframes fc-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-375px * var(--reviews-count)));
    }
}

/* Responsive */
@media (max-width: 768px) {
    .fc-review-card {
        flex: 0 0 300px;
    }
    
    .fc-reviews-section {
        padding: 40px 15px;
    }
}

@media (max-width: 480px) {
    .fc-review-card {
        flex: 0 0 280px;
        padding: 25px 20px;
    }
    
    .fc-review-text {
        font-size: 14px;
        -webkit-line-clamp: 5;
    }
}
