/* style.css */

/* Import a clean, modern font like 'Inter' or 'Roboto' for an athletic look */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

body {
    /* Use Inter as the primary font, fall back to standard sans-serif */
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

#cart-modal { transition: all 0.3s ease-in-out; }
