
/* ============================================
   Vishnu Auto Connect – Hide All Product Prices (Shoopy)
   Version 1.0
   ============================================ */

/* ---------- PRODUCT PAGE (PDP) ---------- */
.product-pricing-root,
.product-pricing-root * {
  display: none !important;
  visibility: hidden !important;
}

/* ---------- CATEGORY / COLLECTION PAGES ---------- */
.pr-sale-price,
.pr-mrp-price,
.sh-product-card-price,
.sh-product-card-mrp,
.product-card-price,
.product-card-mrp,
[class*="price" i],
[id*="price" i],
[class*="mrp" i] {
  display: none !important;
  visibility: hidden !important;
}

/* ---------- HIDE CURRENCY SYMBOLS ---------- */
.currency-symbol,
.fa-inr,
[class*="rupee" i],
[class*="inr" i] {
  display: none !important;
}

/* ---------- COLLAPSE EMPTY PRICE CONTAINERS ---------- */
.price-container,
.price-wrapper,
.amount,
.final-price {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
}

/* ---------- OPTIONAL: SHOW PRICES SWITCH ---------- */
/* Add class 'show-prices' to body if needed for preview */
body.show-prices [class*="price" i],
body.show-prices [class*="mrp" i],
body.show-prices .currency-symbol,
body.show-prices .fa-inr {
  display: revert !important;
  visibility: visible !important;
  height: auto !important;
  margin: revert !important;
  padding: revert !important;
}
