/* get_currency_symbol() renders `.saudi-currency-symbol`, but that class and its font live in
   main.css, which compiles into the Tailwind-only tailwind.css that this theme never loads.
   The font is served from a standalone woff2 rather than the base64 payload main.css inlines, and
   the only other standalone asset — icons/saudi_riyal.svg — is an SVG font, a format Chrome and
   Firefox dropped, so it cannot render the glyph on its own. */
@font-face {
  font-family: saudi_riyal;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/assets/ls_shop/fonts/saudi_riyal/saudi_riyal.woff2) format("woff2");
}

.saudi-currency-symbol {
  font-family: saudi_riyal;
  font-weight: 300;
}

.saudi-currency-symbol::before {
  content: "\E900";
}
