"use client" import { useAppStore } from "@/stores/app-store" /** * Brief full-viewport overlay while the active product (and theme class) flips * after a switcher click or URL-driven product adoption. */ export function ProductSwitchOverlay() { const switching = useAppStore(s => s.productSwitching) if (!switching) return null return (