/* Product Rating Shortcode Styles */

.rateMeta {
    display: flex;
    align-items: center;
    gap: 3px;
}

.rateMeta .star {
    width: auto;
    height: 15px;
    display: inline-block;
}

.rateMeta .rate {
    font-weight: 600;
    margin-left: 4px;
}

.rateMeta .checker {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 8px;
    font-size: 14px;
}

.rateMeta .checker .check {
    display: inline-flex;
    align-items: center;
}

.rateMeta .checker .check img {
    width: 16px;
    height: 16px;
}

/* Review count text - matching trusted review widget */
.rateMeta .prs-review-count-text {
    font-size: 14px;
    color: #666;
    text-align: center;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-left: 8px;
}

.rateMeta .prs-review-count-number {
    display: block;
    line-height: 1.2;
    font-weight: 600;
}

.rateMeta .prs-review-count-label {
    display: block;
    line-height: 1.2;
    font-size: 12px;
}

