 .custom-rating-wrapper {
                display: flex !important;
                align-items: center !important;
                gap: 5px;
                flex-wrap: nowrap !important;
                line-height: 1;
            }
            
            .custom-rating-wrapper .review-count {
                color: #666;
                font-size: 13px;
                line-height: 1.2;
                white-space: nowrap;
                font-weight: normal;
            }
            
            .no-rating {
                color: #999;
                font-size: 13px;
                font-style: italic;
                display: inline-block;
            }
            
            .woocommerce div.product .custom-rating-wrapper,
            .woocommerce ul.products li.product .custom-rating-wrapper {
                margin-bottom: 0;
            }
            
            /* Mobile Responsive */
            @media (max-width: 768px) {
                .custom-rating-wrapper {
                    gap: 4px;
                }
                
                .custom-rating-wrapper .review-count {
                    font-size: 12px;
                }
                
                .no-rating {
                    font-size: 12px;
                }
            }
            
            /* Accessibility */
            @media (prefers-contrast: high) {
                .custom-rating-wrapper .review-count {
                    color: #333;
                }
                
                .no-rating {
                    color: #555;
                }
            }