.product-price {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    font-weight: 500;
    color: rgb(var(--color-sale));
    margin-top: 4px;
}

.product-price__item--compare {
    color: rgb(var(--color-light-text));
    text-decoration: line-through;
}

/* 降价商品（有原价且现价 < 原价）现价颜色，可在主题设置中开关与取色。
   仅作用于商品卡片，不影响详情页主商品价格（product/detail-price）。 */
.block-product-card__price .product-price--sale .product-price__item {
    color: rgb(var(--color-sale-price));
}

.product-price .tax-text {
    font-size: 14px;
}

.product-price .tax-text-product {
    color: #fff;
    background: #980606;
    padding: 0 10px;
    border-radius: 25px;
    line-height: 1.5;
}

/* 商品卡片内的税込（如详情页商品推荐）不使用胶囊底色，保持与其它组件一致的普通文字样式 */
.block-product-card__price .tax-text-product {
    color: inherit;
    background: none;
    padding: 0;
    border-radius: 0;
    line-height: inherit;
}