/* Decorative SVG elements: berries, leaves, branches */
const BerryBranch = ({ flip = false, size = 220, color = '#E36A1F' }) => (
);
const SmallBerries = ({ size = 80 }) => (
);
const LeafFlourish = ({ size = 24, color = '#6A7A48' }) => (
);
const Sparkles = () => (
);
window.Decor = { BerryBranch, SmallBerries, LeafFlourish, Sparkles };