/*************************************
  Change "Weight:" to "Svoris:" everywhere
*************************************/

/* 1. Product popup (ST320N and others) */
.t-store__prod-popup__chars-title {
    font-size: 0 !important;
}
.t-store__prod-popup__chars-title:after {
    content: "Svoris:" !important;
    font-size: 16px !important;
}

/* 2. Product page characteristics */
.t-store__prod__chars-title {
    font-size: 0 !important;
}
.t-store__prod__chars-title:after {
    content: "Svoris:" !important;
    font-size: 16px !important;
}

/* 3. Product list / catalog cards (if characteristics are shown) */
.t-store__card__chars-title {
    font-size: 0 !important;
}
.t-store__card__chars-title:after {
    content: "Svoris:" !important;
    font-size: 14px !important;
}

/* 4. Filters (if Weight ever appears as a filter) */
.t-store__filter__option-title {
    font-size: 0 !important;
}
.t-store__filter__option-title:after {
    content: "Svoris" !important;
    font-size: 16px !important;
}

/* 5. Any leftover labels using "Weight:" inside texts */
body * {
    /* looks for exact word Weight: and hides it visually */
}
body *:contains("Weight:") {
    font-size: 0 !important;
}
body *:contains("Weight:"):after {
    content: "Svoris:" !important;
    font-size: inherit !important;
}
