/* BTCPay v2 checkout — replace USDt payment method pill labels with a clearer
   "USDT · TRC-20" / "USDT · ERC-20" wording.

   How it works:
   - `font-size: 0` on the <a> hides its v-text content ("USD₮ on TRON" etc.)
     without collapsing padding/borders (which are set in rem in BTCPay theme).
   - `::before` pseudo-element renders our custom text at normal size.
   - `:nth-child(1)` = TRON pill, `:nth-child(2)` = ETHEREUM pill — relies on
     plugin registration order (TRON before ETHEREUM). Don't enable extra
     payment methods (Polygon-USDt, BTC, LN) without revisiting these rules. */

.btcpay-pills .payment-method {
  font-size: 0;             /* hide the original v-text label */
}

.btcpay-pills .payment-method::before {
  font-size: 14px;          /* restore readable size for our custom label */
  font-weight: 600;
  letter-spacing: .02em;
}

.btcpay-pills .payment-method:nth-child(1)::before {
  content: "USDT \00B7 TRC-20";
}

.btcpay-pills .payment-method:nth-child(2)::before {
  content: "USDT \00B7 ERC-20";
}
