// Single source of truth for shipping numbers/timeframes — consumed by // both the cart's order summary (CartContent.tsx) and the /versand policy // page, so the two can never drift apart. export const SHIPPING_COST = 2.9; export const FREE_SHIPPING_THRESHOLD = 39; // Kept as an explicit range (not "so schnell wie möglich") per Art. 246a // § 1 Abs. 1 Nr. 8 EGBGB — German law requires disclosing a concrete // delivery timeframe before contract conclusion, and split into // Bearbeitungszeit/Versanddauer so it's clear whether processing time is // included in the stated number, not just a single ambiguous figure. export const HANDLING_DAYS = { min: 1, max: 2 }; export const TRANSIT_DAYS_DE = { min: 2, max: 4 }; export const TOTAL_DAYS_DE = { min: HANDLING_DAYS.min + TRANSIT_DAYS_DE.min, max: HANDLING_DAYS.max + TRANSIT_DAYS_DE.max, };