/* Reviews Marquee Styles */
.reviews-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    background: transparent;
}

.reviews-marquee-track {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reviews-row {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: marquee-scroll 50s linear infinite;
}

.reviews-row-1 {
    animation-duration: 50s;
}

.reviews-row-2 {
    animation-duration: 50s;
    animation-direction: reverse;
}

.review-item {
    flex: 0 0 auto;
    width: 400px;
    background: #171717;
    border-radius: 12px;
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.name-rate,
.review-content {
    display: flex;
    flex-direction: column;
}
.name-rate {
	gap: 4px;
}
.review-content {
    gap: 15px;
}

.review-image {
    flex-shrink: 0;
}

.review-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f0f0;
}

.review-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
    border: 3px solid #f0f0f0;
}

.review-details {
    flex: 1;
}

.review-title {
    margin: 0;
    font-size: 16px !important;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.star {
    font-size: 18px;
    display: inline-block;
}

.star.full {
    color: #FFD700 !important; /* Gold color for filled stars */
    text-shadow: 0 0 1px rgba(0,0,0,0.3);
}

.star.empty {
    color: #E0E0E0 !important; /* Light gray for empty stars */
}

.review-description {
    margin: 0;
    font-size: 14px;
    line-height: 1.3;
    color: #b1b1b1;
}

/* Marquee Animation */
@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

/* Pause animation on hover */
.reviews-marquee-container:hover .reviews-row {
    animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 768px) {
    .review-item {
        width: 400px;
    }
    
    .reviews-row {
        gap: 20px;
    }
    
    @keyframes marquee-scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-50% - 10px));
        }
    }
}

@media (max-width: 480px) {
    .review-item {
        width: 345px;
        padding: 10px;
    }
    
    .review-content {
        gap: 12px;
    }
    
    .review-thumbnail,
    .review-placeholder {
        width: 50px;
        height: 50px;
    }
    
    .review-title {
        font-size: 15px;
    }
    
    .review-description {
        font-size: 13px;
    }
    
    .star {
        font-size: 16px;
    }
}