# Consumer protection rules that shape how retailers price, advertise and sell
A sign reads "Was $89.99, Now $49.99. Save 44%." The checkout adds a $6.95 "service fee" that wasn't visible until the last screen. Somewhere in a pricing algorithm, that $89.99 "was" price was never actually charged to a meaningful number of customers. Every element of that scene is a regulatory trigger. This lesson walks through exactly where.
Retail pricing sits at the intersection of three legal risks: false reference pricing, drip pricing, and unfair commercial practices. Regulators in the US and Europe attack all three, but with different tools.
Reference pricing means comparing a current price to a former or "regular" price ("Was $89.99"). The legal question: was $89.99 a real, recently charged price, or an inflated anchor invented to make the markdown look bigger?
Drip pricing means advertising a low headline price and adding mandatory fees later in the purchase flow (resort fees, service charges, processing fees). The customer only discovers the real price near checkout.
Unfair commercial practices is the broader EU/UK legal category covering both of the above plus misleading omissions, fake urgency claims ("Only 2 left!"), and fake countdown timers.
United States: the Federal Trade Commission (FTC) enforces Section 5 of the FTC Act, which bans "unfair or deceptive acts or practices." Its Guides Against Deceptive Pricing (not binding law, but the standard the FTC uses in enforcement) say a "former price" must be a genuine price offered "for a reasonably substantial period of time" recently, in the regular course of business, not inflated for the markdown.
In late 2024, the FTC finalized a rule on "junk fees" targeting drip pricing directly in live event tickets and short-term lodging, requiring total price to be shown upfront. This took effect in 2025 and is a live enforcement priority into 2026.
European Union: the Unfair Commercial Practices Directive (UCPD, Directive 2005/29/EC) is the umbrella law. On reference pricing specifically, the Omnibus Directive (EU 2019/2161, transposed into national law from 2022) requires that any "price reduction" announcement disclose the lowest price charged in the prior 30 days. This is the single most concrete, checkable rule in this lesson.
United Kingdom: post-Brexit, the UK runs its own regime via the Competition and Markets Authority (CMA) under the Digital Markets, Competition and Consumers Act 2024 (DMCCA), which from 2025 gives the CMA direct fining power (up to 10% of global turnover) without needing a court case first, a major shift from the old regime.
A European fashion retailer sells a jacket at €120 for most of the year. Two weeks before a sale, it raises the price to €150, then advertises "Now €100, Save 33%."
Under the EU Omnibus rule, the retailer must disclose the lowest price in the 30 days before the reduction. That lowest price was €120, not €150.
The retailer must display "Save 17%" (or show both the manipulated pre-sale price and the true 30-day low, which makes the manipulation visible to regulators and, increasingly, to price-tracking browser plug-ins). This single rule is why many EU retailers redesigned markdown calendars starting in 2022 to 2023.
Think through a checkout in stages. Each stage is a separate legal checkpoint:
1. Search/ad price: the price in a Google Shopping ad or on a marketplace listing. If mandatory fees exist, this price is potentially deceptive on its own under FTC and UCPD standards.
2. Product page price: still no mandatory fees shown.
3. Cart page: a "service fee," "handling fee," or "processing fee" appears. If it applies to every customer and every order, it should have been part of the advertised price from the start.
4. Final checkout screen: shipping, taxes disclosed. Taxes and genuinely optional add-ons are generally fine; mandatory fees dressed as optional are not.
The FTC's 2024 junk fees rule specifically targets step 3 to step 4 gaps in live-event ticketing and short-term rentals (think Ticketmaster, Airbnb-style listings), and the direction of travel points toward broader retail application. Airlines and hotels have faced similar "all-in pricing" pressure in the EU for years under the Air Services Regulation and national consumer codes.
Modern retail pricing isn't set by a person adjusting tags; it is often set by software reacting to demand, competitor prices, inventory, and even browsing behavior. This raises three additional risk questions regulators now ask:
A simplified compliance check, the kind a retail finance or compliance team should be running before a markdown campaign launches, looks like this:
def is_reference_price_compliant(current_offer, price_history_30d, jurisdiction="EU"):
"""
price_history_30d: list of (date, price) tuples for the last 30 days
Returns the legally required reference price and whether the claimed
discount is compliant.
"""
lowest_30d = min(p for _, p in price_history_30d)
if jurisdiction == "EU":
required_reference = lowest_30d
else:
# US FTC: "recently" charged, "substantial period" - less precise,
# flag for legal review rather than auto-approve
required_reference = None
if required_reference:
true_discount_pct = round((required_reference - current_offer) / required_reference * 100, 1)
return {"reference_price": required_reference, "true_discount_pct": true_discount_pct}
return {"flag": "manual_legal_review_required"}This kind of check belongs in the pricing pipelinepipelineAll active sales opportunities across the stages of the sales process, together with their combined potential value and probability of closing.View full definition → itself, not in a post-hoc legal review after the sale has already run.
Knowledge check
1. A retailer advertises a markdown from a 'former price' that was set artificially high and rarely, if ever, actually charged to customers. Under the FTC's approach to reference pricing, what is the core legal problem?
2. Which scenario is the clearest example of drip pricing, as distinct from false reference pricing?
3. Why does EU/UK law group false reference pricing and drip pricing under the broader category of 'unfair commercial practices' rather than treating them as entirely separate legal issues?
4. Select ALL correct answers describing what regulators examine when assessing whether a 'Was $X, Now $Y' claim is deceptive.
Select all the correct answers.
5. Select ALL correct answers about practices that fall under 'unfair commercial practices' in the EU/UK framework.
Select all the correct answers.
As always with regulatory penalty figures: treat specific settlement amounts as estimates unless drawn from a primary source, and check the CMA's enforcement case page or FTC press releases directly for current, verified figures.
🎬 [VIDEO: "How the FTC's Junk Fees Rule Works" - youtube.com - search for FTC or consumer-law channel explainers on the 2024/2025 junk fees rule, illustrating drip pricing enforcement with real checkout examples]
Before signing off on a markdown or promotional campaign: