    
    
    /* Amazon style a rating by SR */
    .sr-rating-inline-wrapper {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    /* Inline stars */
    .rating-inline {
        display: flex;
        align-items: center;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .rating-inline li {
        display: inline-block;
        margin-right: 2px;
    }

    .rating-inline .no-rating {
        font-size: 16px;
        color: #555;
        line-height: 1;
    }

    .rating-inline .total-count {
        font-size: 14px;
        color: #333;
        margin-left: 4px;
    }

    /* Stars */
    .star {
        font-size: 18px;
        color: gold !important;
    }

    .star-half {
        position: relative;
        color: gold;
    }

    .star-half:before {
        content: "\2605";
        position: absolute;
        left: 0;
        top: 0;
        width: 50%;
        overflow: hidden;
        color: gold;
    }

    /* Popup */
    .sr-rating-popup {
        display: none;
        position: absolute;
        top: 25px;
        left: 0;
        z-index: 99999;
        width: 230px;
        background: #fff;
        padding: 12px;
        border-radius: 6px;
        border: 1px solid #ddd;
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

    .sr-rating-popup.visible {
        display: block;
    }

    .sr-rating-row {
        display: flex;
        gap: 5px;
        margin-bottom: 6px;
        align-items: center;
    }

    .sr-label {
        width: 45px;
    }

    .sr-bar {
        width: 120px;
        height: 6px;
        background: #eee;
        border-radius: 10px;
        overflow: hidden;
    }

    .sr-bar-fill {
        height: 100%;
        background: gold;
        width: 0%;
    }

    .sr-percent {
        font-size: 13px;
    }


   

