        /* Design Token Configurations */
        :root {
            --bg-main: #f1fdff;
            --bg-header: #C1EBE9;
            --text-color: #000000;
            --card-bg: #FFFFFF;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-main);
            color: var(--text-color);
            font-family: 'Lato', sans-serif;
            font-weight: 400;
            overflow-x: hidden;
        }

        /* Strict Typography Scale Adjustments */
        h1, h2, h3, .editorial-heading, .lato-black {
            font-family: 'Lato', sans-serif;
            font-weight: 900 !important;
            letter-spacing: -0.02em;
        }

        h4, h5, h6, .lato-bold {
            font-family: 'Lato', sans-serif;
            font-weight: 700 !important;
        }

        p, span, div, label, input, .lato-regular {
            font-family: 'Lato', sans-serif;
            font-weight: 400 !important;
        }

        blockquote, q, .lato-light-italic {
            font-family: 'Lato', sans-serif;
            font-weight: 300 !important;
            font-style: italic !important;
        }

        /* Sticky Header Control Layout */
        header {
            background-color: var(--bg-header);
            position: sticky;
            top: 0;
            height: 100px;
            z-index: 100;
            transition: background-color 0.3s ease;
        }

        /* Editorial Navigation Underline Micro-interaction */
        .nav-link {
            position: relative;
            color: var(--text-color);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 100%;
            transform: scaleX(0);
            height: 1px;
            bottom: -4px;
            left: 0;
            background-color: var(--text-color);
            transform-origin: bottom right;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .nav-link:hover::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }

        /* Continuous Scrolling Marquee Settings */
        @keyframes marquee {
            0% { transform: translateX(0%); }
            100% { transform: translateX(-50%); }
        }
        .marquee-container {
            display: flex;
            width: 200%;
            animation: marquee 22s linear infinite;
        }
        .marquee-container:hover {
            animation-play-state: paused;
        }

        /* Subtle Slow Zoom Base Classes */
        .zoom-box {
            overflow: hidden;
        }
        .zoom-img {
            transition: transform 7s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .zoom-box:hover .zoom-img {
            transform: scale(1.06);
        }

        /* Subtle Fade Reveal Controls */
        .fade-in-up {
            animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Premium Rounded Cards Layout */
        .product-card {
            background-color: var(--card-bg);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 30px 45px rgba(0, 0, 0, 0.04);
        }

        /* Button Ripple Fill Visual Treatment */
        .btn-ripple {
            position: relative;
            overflow: hidden;
            z-index: 1;
            transition: color 0.3s ease, border-color 0.3s ease;
        }
        .btn-ripple::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background-color: var(--text-color);
            transform: translate(-50%, -50%);
            transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1), height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: -1;
        }
        .btn-ripple:hover {
            color: #FFFFFF !important;
        }
        .btn-ripple:hover::before {
            width: 320%;
            height: 320%;
        }

        /* Multipage Screen Visibility Toggles */
        .app-view {
            display: none;
        }
        .app-view.active-view {
            display: block;
        }

        /* Right Side Sliding Cart Drawer Panel CSS */
        #cart-drawer {
            transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: -10px 0 40px rgba(0,0,0,0.08);
            background-color: #FFFFFF;
        }
        #cart-drawer.open {
            transform: translateX(0);
        }

        /* Responsive Mobile Hamburger Menu Flyout Transition */
        #mobile-menu-overlay {
            background-color: var(--bg-header);
            transform: translateY(-100%);
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }
        #mobile-menu-overlay.is-active {
            transform: translateY(0);
        }
