// RIFTR storefront — cart drawer + order confirmation modal. (() => { const { Button, IconButton, Label } = window.RIFTRDesignSystem_b64b32; function CartDrawer({ open, cart, onClose, onCheckout, onQty }) { const RM = window.RIFTR_RM; const Ic = window.Ic; if (!open) return null; const total = cart.reduce((a, b) => a + b.price * b.qty, 0); return (
); } function Confirm({ open, onClose }) { const Ic = window.Ic; if (!open) return null; return (
e.stopPropagation()} style={{ background: 'var(--surface-card)', width: 380, borderRadius: 'var(--radius-md)', overflow: 'hidden', border: '1px solid var(--border-strong)', boxShadow: 'var(--shadow-lg)', animation: 'pop .24s cubic-bezier(.34,1.4,.5,1)', textAlign: 'center' }}>

Order placed

Small-batch means we print to order. Yours ships in 3–5 days — tracking lands in your inbox.

); } Object.assign(window, { CartDrawer, Confirm }); })();