export default function GlassCard({ image, caption, price }) { return ( // 1. FULL SCREEN CONTAINER (Centered)
{/* 2. THE INSTAGRAM FRAME (Max width to look like a phone app) */}
{/* LAYER 1: The Image Logic (Behind the Glass) */} {/* We use percentages to tuck the image safely inside your PNG borders */}
{image ? ( Model ) : ( // EMPTY STATE: Just transparent (or subtle placeholder)
{/* Optional: Tiny text saying 'Waiting for Model' if you want, otherwise blank */}
)}
{/* LAYER 2: The Glass Frame PNG (Overlay) */}
{/* LAYER 3: Caption (Only shows AFTER upload) */} {/* Sits inside the bottom glass ledge */} {caption && (

{caption}

{/* If you want the price, uncomment this: */} {/*

{price}

*/}
)}
); }