/* Add custom CSS styles below */ 
/* تنسيق شارة التقييم على بطاقة المنتج */
.product-mini-review {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    direction: rtl;
    pointer-events: none; /* لضمان عدم إعاقة النقر على المنتج */
}

.product-mini-review .star-icon {
    color: #ffc107;
    font-weight: bold;
    font-size: 13px;
}

.product-mini-review .rating-count {
    color: #777;
    font-size: 11px;
    border-right: 1px solid #eee;
    padding-right: 6px;
    margin-right: 2px;
}