# Supply chain and sourcing risk exposure
In June 2024, a single Volkswagen shipment of Porsches, Bentleys and Audis was detained at US ports because a small imported component was linked to banned Xinjiang sourcing. The cars sat. The same mechanism hits apparel constantly: a container of finished jackets can be frozen at customs because the cotton three tiers up the supply chain is suspect. The garments are already paid for. The season is already on the calendar. And the margin evaporates while the goods sit in a bonded warehouse.
This lesson is about the money side of that risk: which regulations trigger it, how it lands on the P&L, and the due-diligence checks a finance team runs before it happens.
The Uflpa (Uniform Forced Labor Prevention Act, effective 2022) is the sharpest tool. It creates a rebuttable presumption: US Customs and Border Protection (CBP, the agency that clears imports) assumes any goods with inputs from the Xinjiang region of China are made with forced labor and are therefore banned. "Rebuttable" means the importer can try to prove otherwise, but the burden is on them, and it is heavy.
For apparel this bites hardest on cotton, because a large share of Chinese cotton comes from Xinjiang and it flows into fabric mills across Asia before becoming a finished garment. You may buy a t-shirt from a Vietnamese factory and still be exposed through the yarn.
CBP publishes enforcement statistics. You can see detained shipment values by sector on the CBP UFLPA dashboard.
Europe works through due-diligence law rather than border seizure. The Csddd (Corporate Sustainability Due Diligence Directive, adopted 2024) requires large companies to identify and address human-rights and environmental harms across their chain of activities. Germany's LkSG (Supply Chain Due Diligence Act, in force since 2023) already imposes fines calculated as a percentage of global annual turnover for serious failures.
The finance distinction matters:
A global fashion brand faces both at once.
Three financial channels turn a sourcing problem into a loss.
When CBP detains a shipment, you have already paid the factory (apparel terms are often 30 to 60 percent on order, balance on shipment). The cash is out. The goods produce zero revenue while detained. If you cannot rebut within the selling window, the season passes.
Worked example (illustrative figures):
Shipment detained. You miss the 12-week selling window. Options:
So one container can swing the outcome by several million dollars. These numbers are illustrative, but the structure (paid upfront, revenue at risk, markdown salvage) is exactly how it plays out.
Single-country sourcing concentration means too much of your buying sits in one country. If a regulatory event, tariff change or port closure hits that country, your whole line is exposed at once.
China still dominates global apparel exports (widely estimated at roughly 30 percent of world clothing exports as of the mid-2020s; treat as an estimate). Many brands have diversified into Vietnam, Bangladesh, India and increasingly nearshore locations like Mexico and Turkey, precisely to reduce this concentration. Finance teams track a simple metric: percentage of cost of goods sold (COGS) sourced from any single country or single factory.
A useful rule of thumb: if any one country is more than 50 percent of COGS, or any one factory more than 15 to 20 percent, you have a concentration exposure that belongs in your risk register.
A failed factory social audit (an inspection against a standard such as SMETA or amfori BSCI) can force you to pull orders, re-source at higher cost, and fund remediation. Re-sourcing mid-season means air freight instead of ocean freight. Air freight can cost several times ocean freight per unit, which alone can erase the margin on a fast-fashion item.
This is the practical core: what you actually verify before writing the purchase order.
Ask for the full input trail: garment factory, fabric mill, yarn spinner, cotton origin. The financial question is simple: can this shipment be released if CBP asks for proof of origin? If the answer is "we do not know where the cotton comes from," treat the order as high risk and hold a reserve.
Build a table of COGS by country and by top factories. Flag anything above your thresholds. This is a one-hour spreadsheet exercise that most finance teams skip.
Here is a minimal version:
# COGS concentration check (illustrative)
cogs = {"China": 4_200_000, "Vietnam": 2_100_000,
"Bangladesh": 1_400_000, "Turkey": 300_000}
total = sum(cogs.values())
for country, spend in cogs.items():
share = spend / total
flag = "REVIEW" if share > 0.50 else "ok"
print(f"{country}: {share:.0%} {flag}")Run this quarterly. A rising single-country share is an early warning that belongs in the CFO's dashboard.
For higher-risk shipments, hold an inventory reserve (a provision against goods that may be detained or marked down). If 10 percent of your incoming orders sit in a flagged origin, and history suggests a portion get detained, provision accordingly rather than booking full margin on day one.
Confirm the factory holds a current, valid social-compliance audit before the deposit leaves. A deposit paid to a factory that fails audit next month is cash you may not recover. Tie payment milestones to compliance status in the purchase contract.
Knowledge check
1. Why does the 'rebuttable presumption' in UFLPA place a particularly heavy burden on apparel importers?
2. A finance team is assessing why UFLPA exposure can arise even when a garment is sewn in Vietnam with no direct Chinese suppliers. What is the key conceptual reason?
3. What is the fundamental difference in enforcement mechanism between UFLPA and Europe's CSDDD/LkSG?
4. Why is a detained shipment financially damaging even beyond the value of the goods themselves in a seasonal apparel business?
5. Select ALL correct answers about how supply-chain sourcing risk lands on a company's finances.
Select all the correct answers.
6. Select ALL correct answers about what a finance team should build into pre-shipment due diligence given these regulations.
Select all the correct answers.
Sourcing risk is not a compliance box. It is a cash-flow and margin decision that finance owns jointly with sourcing.
The clean way to think about it: every purchase order carries an expected loss you can estimate.
Expected loss = probability of a disruptive event x financial impact if it happens.
Take the earlier example. Suppose a flagged-origin shipment has an estimated 20 percent chance of detention leading to a full markdown, and the impact of that markdown is a $2,000,000 margin loss.
Expected loss = 0.20 x $2,000,000 = $400,000.
If diversifying that order to a fully traceable supplier costs an extra $150,000 in unit cost, paying the premium is rational: you spend $150,000 to remove a $400,000 expected loss. This is the calculation that justifies nearshoring and dual sourcing in hard financial terms, not just ethics.
Note the probabilities here are illustrative. The discipline is real: force yourself to put a number on the exposure so the trade-off is explicit.