Leaders Insights
Leaders Insights

Rester au meilleur niveau, un peu chaque jour.

DomainesMarketingDataFinanceIA
RessourcesApprendreTestOutilsBlogGlossaire
© 2026 Leaders Insights — Tous droits réservés.
Formations/Finance in retail/Regulation, risks and checks/Consumer protection rules that shape how retailers price, advertise and sell
1/4+150 XP

Regulation, risks and checks

10Consumer protection rules that shape how retailers price, advertise and sell+15011Product safety, labelling and compliance across a global supply chain+15012Payments, data and PCI risk at the till and online+15013Running financial due diligence on a retail acquisition target+150

Consumer protection rules that shape how retailers price, advertise and sell

# 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.

The three pressure points on any price tag

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.

Who enforces what

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.

The "30-day rule": a worked example

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.

  • Claimed saving: €150 − €100 = €50 (33% off)
  • Legally required comparison: €120 − €100 = €20 (17% off)

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.

Drip pricing: where it bites in a checkout flow

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.

Algorithmic and dynamic pricingdynamic pricingAutomatically adjusting prices in real time based on demand, competition or user behaviour to optimise revenue, margin or conversion.Voir la définition complète →: the newer risk layer

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:

  • Does the algorithm generate an inflated "reference price" automatically, making every retailer using the same software vendor liable for the same violation? (This is a live theory the FTC has explored regarding algorithmic collusion and pricing software vendors.)
  • Does dynamic pricingdynamic pricingAutomatically adjusting prices in real time based on demand, competition or user behaviour to optimise revenue, margin or conversion.Voir la définition complète → based on personal data (location, device type, purchase history) cross into unfair discrimination? The EU treats personalized pricing as legal if disclosed, but not if it exploits a "vulnerable consumer" under UCPD Article 5.
  • Can a "was" price be legitimately set by an algorithm that briefly touched that price for a few hours, technically satisfying "recently charged" but not the spirit of the rule? This is an active enforcement gray zone in 2026.

A simplified compliance check, the kind a retail finance or compliance team should be running before a markdown campaign launches, looks like this:

python
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.Voir la définition complète → itself, not in a post-hoc legal review after the sale has already run.

Vérification des acquis

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?

CHOIX MULTIPLES

4. Select ALL correct answers describing what regulators examine when assessing whether a 'Was $X, Now $Y' claim is deceptive.

Sélectionnez toutes les réponses correctes.

CHOIX MULTIPLES

5. Select ALL correct answers about practices that fall under 'unfair commercial practices' in the EU/UK framework.

Sélectionnez toutes les réponses correctes.

What actually gets penalized: real cases and numbers

  • The FTC has brought deceptive pricing actions against national retailers over years-long "was" prices that were rarely, if ever, actually charged; cases have resulted in settlements requiring changed practices and, in some instances, consumer redress funds.
  • In the EU, national consumer authorities (Germany's Bundesnetzagentur-adjacent bodies, France's DGCCRF, Italy's AGCM) actively audit retailer markdown calendars for Omnibus Directive compliance; fines under UCPD-derived national law can reachreachThe number of unique people exposed to your message in a given period. Unlike impressions, reach counts each person once, no matter how often they see it.Voir la définition complète → up to 4% of the trader's annual turnover in the relevant member states, as set by the Omnibus Directive's enforcement provisions (exact cap depends on national transposition).
  • The UK CMA's DMCCA powers (from 2025) mean a retailer's global turnover, not just UK revenue, is now the fine base for the most serious cases, materially raising the stakes for multinational chains.

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]

Practical due-diligence checklist for retail finance teams

Before signing off on a markdown or promotional campaign:

  • Pull the actual 30-day price history for every SKU in the promotion, not the "recommended" or "list" price.
  • Confirm all-in pricing: does the advertised price match what a customer pays at checkout, fees included?
  • Audit pricing algorithm outputs quarterly for reference-price patterns that spike immediately before a sale.
  • Check jurisdiction-by-jurisdiction: a campaign compliant in the US under FTC guidance may violate the EU's 30-day rule if run identically in French or German stores.

Key Takeaways

  • The EU's 30-day lowest-price rule (Omnibus Directive) is the clearest, most checkable reference-pricing law; the US relies on FTC's less numerically precise "recently and substantially charged" standard.
  • Drip pricing (hiding mandatory fees until late checkout) is now a direct FTC enforcement target (2024 junk fees rule) and has long been restricted in EU travel and UCPD unfair-practices law.
  • Algorithmic and dynamic pricingdynamic pricingAutomatically adjusting prices in real time based on demand, competition or user behaviour to optimise revenue, margin or conversion.Voir la définition complète → add a new compliance layer: automated reference-price inflation and undisclosed personalized pricing are active regulatory concerns for 2026.
  • The UK's CMA can now fine up to 10% of global turnover directly under the DMCCA (2025), a major escalation from prior enforcement mechanisms.
  • Compliance checks belong inside the pricing pipelinepipelineAll active sales opportunities across the stages of the sales process, together with their combined potential value and probability of closing.Voir la définition complète → (price-history validation before a markdown goes live), not as a legal afterthought once a campaign is already running.

Suivant

Product safety, labelling and compliance across a global supply chain