.t-store__card__price:before {
    content: none;
}

.t-store__card__price_old:before {
    content: "До ";
    font-size: 12px;
    vertical-align: bottom;
    padding-right: 2px;
}

.t-store__card__price_old {
    color: #000;
}

.t-store__card__price-item {
    font-size: 16px;
}

.t-store__card__price-value {
    font-weight: 800;
}

/* Если есть старая цена — показываем "От" */
.t-store__card__price-wrapper:has(.t-store__card__price_old:not([style*="display: none"])) 
.t-store__card__price:before {
    content: "От ";
    font-size: 12px;
    vertical-align: bottom;
    padding-right: 2px;
}

/* Если есть старая цена — показываем тире */
.t-store__card__price-wrapper:has(.t-store__card__price_old:not([style*="display: none"])) 
.t-store__card__price:after {
    content: "\2014";
    padding-left: 6px;
}

/* Скрываем старую цену в других местах */
.t-store__card__price_old:after,
.t-store__prod-popup__price_old {
    display: none !important;
}