-- The review fee is now configurable (REVIEW_FEE_PAISE / REVIEW_GST_PERCENT) and the
-- UI renders the live breakdown from GET /payments/fee. Strip the hardcoded
-- "₹700 + 18% GST = ₹826" amounts out of the seeded CMS notice so the content
-- cannot go stale when the configuration changes.
UPDATE cms_content
SET value_hi = 'समीक्षा शुल्क एवं GST देय होगा — सटीक राशि भुगतान विंडो में दर्शाई गई है',
    value_en = 'Review fee plus GST payable — the exact amount is shown in the payment window',
    updated_at = NOW()
WHERE section = 'SUBMIT'
  AND group_key = 'submit_review'
  AND field_key = 'payment_notice'
  -- Only replace the original seeded text; leave any admin-edited copy alone.
  AND value_en = 'Review fee ₹700 + 18% GST = ₹826 payable';
