/* Visually replaces "Discount Code" label text with "Promo Code"
   without editing the underlying HTML.
   Targets a specific label via its `for` attribute (tied to a specific field GUID). */

label[for="261ef79e-cca9-481d-92e2-a77e1e0ec5ea_DiscountCodeKey"] {
    font-size: 0;
    line-height: 0;
}

label[for="261ef79e-cca9-481d-92e2-a77e1e0ec5ea_DiscountCodeKey"]::before {
    content: "Promo Code";
    font-size: 14px;
    line-height: normal;
}

label[for="177ccb0d-ac6e-83d6-3c9c-3a2178042218_DiscountCodeKey"] {
    font-size: 0;
    line-height: 0;
}

label[for="177ccb0d-ac6e-83d6-3c9c-3a2178042218_DiscountCodeKey"]::before {
    content: "Promo Code";
    font-size: 14px;
    line-height: normal;
}
