/* Search bar legibility fix - applied by Freewebstore support, 20 Aug 2026 (ticket ref 01M0FAADBZ8YW4S4NVQNETHCKZ).
   This design sets no text colour on the search box, its placeholder or the magnifier
   button, so they fall back to the browser default (near-black) and are invisible
   against a dark page background. Inheriting the store's own text colour rather than
   hardcoding white means this keeps working if the design colours are changed later. */
#txtQuickSearch,
#txtQuickSearch_button {
    color: inherit;
}

#txtQuickSearch::placeholder {
    color: inherit;
    opacity: 0.7;
}
