/* dirham — UAE Dirham currency symbol font (self-hosted, default variant only)
 * Local copy of the "Dirham" @font-face + .dirham-symbol helper used site-wide
 * for AED price badges. Self-hosted to remove the render-blocking third-party
 * jsdelivr request. Only the default variant is used on this site. */
@font-face {
  font-family: "Dirham";
  src: url("../fonts/dirham.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  unicode-range: U+20C3;
}

.dirham-symbol {
  font-family: "Dirham" !important;
  speak: never;
  font-style: normal;
  font-weight: inherit;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.dirham-symbol::before {
  content: "\20C3";
}
