// Header cart trigger — an icon button with a live item-count badge. Drop into the app header; opens the CartDrawer. // Icon-only by design (no "Cart" text): reads the header's currentColor, so it inherits the brand automatically. import { useCart } from "@/context/CartContext"; export default function CartButton() { const { itemCount, setIsOpen } = useCart(); return ( ); }