/* Hide dash and second price in WooCommerce variable price */
/*
.price .woocommerce-Price-amount.amount + .woocommerce-Price-amount.amount,
.price .woocommerce-Price-amount.amount + .woocommerce-Price-amount.amount::before,
.price .woocommerce-Price-amount.amount + span {
    display: none;
}


 .price .woocommerce-Price-amount.amount:first-child ~ * {
    display: none !important;
}


 
.price .woocommerce-Price-amount.amount:first-of-type ~ * {
    display: none !important;
}


.price ins,
.price del {
    display: none;
}

.price .woocommerce-Price-amount.amount:first-of-type ~ * {
    display: none !important;
}

*/
/* Hide the dash text node and show only the first price */
.home .price:not(:has(del)):not(:has(ins)) {
  font-size: 0 !important;          /* hides:  –  (text node) */
}

.home .price:not(:has(del)):not(:has(ins)) > .woocommerce-Price-amount.amount:first-of-type {
  font-size: 16px !important;       /* restore text size for 29.00 AED */
  
 
    line-height: 20px;
}

.home .price:not(:has(del)):not(:has(ins)) > .woocommerce-Price-amount.amount:last-of-type {
  display: none !important;         /* hide 58.00 AED */
}


 

