/*-- Star Rating Styles --*/
.app-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
        
.stars {
    display: inline-flex;
    gap: 2px;
    position: relative;
}

.star {
    width: 30px;
    height: 30px;
    display: inline-block;
    position: relative;
}
        
.star svg {
    width: 100%;
    height: 100%;
    fill: #d1d5db; /* Gray for empty stars */
}

.star.filled svg {
    fill: #fbbf24; /* Gold color */
}

.star.partial {
    overflow: hidden;
}
 
.star.partial svg {
    fill: #d1d5db;
}

.star.partial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #fbbf24;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
}

.rating-text {
    font-size: 16px;
    color: #6b7280;
}

.rating-value {
    font-weight: 600;
    color: #111827;
}

/*-- Review Cards --*/
.reviews {
    display: flex;
    flex-direction: row;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.review {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    max-width: 500px;
    border-radius: 16px;
    padding: 30px;
    flex: 1;
    text-align: left;
}

.quote-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
    display: block;
    margin-left: 0;
}

.review-text {
    font-size: 16px;
    line-height: 1.4rem;
}

.review-author {
    font-weight: 600;
    color: #111827;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .reviews {
        flex-direction: column;
    }
}