
.product-star-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.custom-star-rating {
    display: flex;
    align-items: center;
    gap: 3px;
}

.product-star-rating span {
    color: var(--grey2);
}

@media screen and (max-width:767px) {

    .custom-star-rating {
        gap: 2.5px;
    }
    
    .custom-star-rating svg {
        width: 16px;
        height: 16px;
    }
}