/* custom-aed-font.css
   Loads the custom font and applies it ONLY to the AED currency symbol wrapper.
   Your glyph is mapped to U+0044 (capital "D"), so we scope unicode-range accordingly.
*/

@font-face {
  font-family: 'igNewAEDSymbolFont';
  src: url('fonts/igAedFont.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0044; /* only the capital D */
}

/* The wrapped AED symbol from PHP */
.ig-aed-symbol {
  font-family: 'igNewAEDSymbolFont', sans-serif !important;
  line-height: 1;
  /* Optional fine-tuning:
  font-size: 1em;
  vertical-align: -0.05em;
  letter-spacing: normal;
  */
}

/* Cover common WooCommerce price renderers (classic + blocks) */
.woocommerce-Price-currencySymbol .ig-aed-symbol,
.wc-block-components-product-price__value .ig-aed-symbol,
.wc-block-components-product-price__regular .ig-aed-symbol,
.wc-block-components-product-price__sale .ig-aed-symbol {
  font-family: 'igNewAEDSymbolFont', sans-serif !important;
}

/* Accessibility helper for the visually hidden "AED" text (in case theme lacks one) */
.screen-reader-text {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap; border: 0; padding: 0; margin: -1px;
}
