/*
 Theme Name:   Woodmart
 Description:  Woodmart Child Theme
 Author:       XE
 Author URI:   http://xpertexport.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/

/* --------------------------------------------------------------
   Menu Header Gradient Fade           
----------------------------------------------------------------- */
.whb-header-bottom {
  background: linear-gradient(
    to bottom,
    #23272A 0%,
    #48D1CC 99%,
    rgba(72, 209, 204, 0) 100%
  );
}
/* -------------------------------------------------------------- */

/* --------------------------------------------------------------
   Change Amount Color to Black           
----------------------------------------------------------------- */
.amount {
    color: #000;
    font-weight: 600
}
/* -------------------------------------------------------------- */

/* --------------------------------------------------------------
   Dirham Currency
----------------------------------------------------------------- */
@font-face {
    font-family: 'aed';
    src: url('/wp-content/uploads/2025/09/aed-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Apply custom AED font and sizing to the price amount */
.price .amount {
    font-family: 'aed', sans-serif !important;
    font-weight: 400 !important;
    font-size: 16px !important;        /* Adjust number size as needed */
    letter-spacing: 0 !important;
    vertical-align: bottom;            /* Align symbol with price numbers */
}

/* Apply custom font and larger size to the Dirham currency symbol */
.woocommerce div.product .price .woocommerce-Price-currencySymbol,
.woocommerce-summary__item-value,
.woocommerce-legend__item-total,
span.woocommerce-Price-currencySymbol {
    font-family: 'aed', sans-serif !important;
    font-weight: 400 !important;
  /*font-size: 16px !important;        /* Adjust symbol size as desired */
    letter-spacing: 0 !important;
    vertical-align: bottom;            /* Align symbol with price numbers */
}
/* -------------------------------------------------------------- */

/* --------------------------------------------------------------
   Dirham Currency – Single product pages only
----------------------------------------------------------------- */

/* Numbers */
.single-product p.price span.woocommerce-Price-amount.amount {
    font-family: 'aed', sans-serif !important;
    font-weight: 400 !important;
    font-size: 24px !important;          /* Larger numbers on single product */
    letter-spacing: 0 !important;
    vertical-align: middle !important;
}

/* Currency symbol */
.single-product p.price span.woocommerce-Price-currencySymbol {
    font-family: 'aed', sans-serif !important;
    font-weight: 400 !important;
    font-size: 28px !important;          /* Larger symbol on single product */
    letter-spacing: 0 !important;
    vertical-align: middle !important;
}
/* -------------------------------------------------------------- */