/* 1. 隐藏日期 */
.woocommerce-review__published-date {
    display: none !important;
}

/* 2. 移除名字后面的小横杠/分隔符 */
.woocommerce-review__dash {
    display: none !important;
}

/* 3. 给名字后面加点色彩：Verified Buyer 效果 */
.woocommerce-review__author::after {
    content: "Verified Buyer"; /* 这里可以换成中文 "已购用户" */
    margin-left: 8px;
    font-size: 11px;
    color: #28a745; /* 绿色，代表安全信任 */
    background: #eafaf1;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
}
/* 在手机端缩小已购勋章，防止撑破行高 */
@media (max-width: 480px) {
    .woocommerce-review__author::after {
        font-size: 9px !important;
        padding: 1px 4px !important;
        margin-left: 5px !important;
    }
}