/* ✅ تغيير "مجموع المنتجات" */
body:not(.switch1_on) .cart-total-wrapper .subtotal-wrapper span:nth-of-type(1) {
  font-size: 0;
  display: inline-block;
}

body:not(.switch1_on) .cart-total-wrapper .subtotal-wrapper span:nth-of-type(1)::before {
  content: "مجموع المنتجات قبل الضريبة";
  font-size: 14px;
  color: var(--color-primary);
  direction: rtl;
  display: inline-block;
}

/* ✅ تغيير "الإجمالي" */
body:not(.switch1_on) .cart-total-wrapper .total-wrapper span:nth-of-type(1) {
  font-size: 0;
  display: inline-block;
}

body:not(.switch1_on) .cart-total-wrapper .total-wrapper span:nth-of-type(1)::before {
  content: "الإجمالي شامل الضريبة";
  font-size: 16px;
  color: var(--color-primary);
  direction: rtl;
  display: inline-block;
}