.product-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1px;
    margin: 8px 0;
}

.stars-container {
    display: flex;
    align-items: center;
    gap: 2px;
}

.star {
    font-size: 16px;
    color: #ddd;
    transition: all 0.2s ease;
    position: relative;
    display: inline-block;
}

.star.filled {
    color: #ffc107 !important;
}

.star.partial {
    color: #e9ecef;
    position: relative;
    display: inline-block;
}

.star.partial::before {
    content: '★';
    position: absolute;
    left: 0;
    top: 0;
    color: #ffc107;
    overflow: hidden;
    width: var(--fill-width, 50%);
    z-index: 1;
}

.star.empty {
    color: #e9ecef;
}

.rating-text {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    margin-left: 4px;
}

.review-count {
    font-size: 12px;
    color: #888;
    margin-left: 4px;
}

/* Product card stars */
.card .product-rating {
    margin:  0;
}

.card .star {
    font-size: 14px;
}

.card .rating-text {
    font-size: 12px;
}

/* Detail page stars */
.product-title-section .product-rating {
    margin: 10px 0;
}

.product-title-section .star {
    font-size: 18px;
}

.product-title-section .rating-text {
    font-size: 16px;
    font-weight: 600;
}

/* Reviews section stars */
.reviews-section .star.filled,
.stars-large .star.filled {
    color: #ffc107 !important;
}

.reviews-section .star.partial,
.stars-large .star.partial {
    color: #e9ecef;
    position: relative;
}

.reviews-section .star.partial::before,
.stars-large .star.partial::before {
    content: '★';
    position: absolute;
    left: 0;
    top: 0;
    color: #ffc107 !important;
    overflow: hidden;
    width: var(--fill-width, 50%);
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .product-rating {
        gap: 6px;
    }
    
    .star {
        font-size: 14px;
    }
    
    .rating-text {
        font-size: 12px;
    }
    
    .product-title-section .star {
        font-size: 16px;
    }
    
    .product-title-section .rating-text {
        font-size: 14px;
    }
}