        :root {
            --blue-trust: #d0e3ff;
            --green-depth: #55ff66;
            --soft-white: #260c0c;
        }

        body {
            font-family: 'Cormorant Garamond', serif;
            background-color: var(--soft-white);
            color: #504747;
            overflow-x: hidden;
        }

        /* Typography Rules */
        h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.02em; }
        .product-title { font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.85rem; }
        .quote-italic { font-style: italic; font-weight: 300; }
        
        /* Layout Utilities */
        .editorial-container { max-width: 1440px; margin: 0 auto; padding: 0 5%; }
        
        /* Navigation Interactions */
        .nav-link { position: relative; transition: color 0.3s ease; }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -4px;
            left: 0;
            background-color: var(--blue-trust);
            transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .nav-link:hover::after { width: 100%; }
        .nav-link:hover { color: var(--blue-trust); text-shadow: 0 0 10px rgba(52, 103, 57, 0.1); }

        /* Animation System */
        .reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
        .reveal.active { opacity: 1; transform: translateY(0); }

        .float-parallax { animation: float 10s ease-in-out infinite; }
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-25px) rotate(2deg); }
        }

        /* Custom UI Elements */
        .blue-pill { background: var(--blue-trust); color: white; padding: 4px 12px; border-radius: 99px; font-size: 0.75rem; font-weight: 700; }
        .green-glow-hover:hover { box-shadow: 0 0 25px rgba(52, 103, 57, 0.15); border: 1px solid var(--green-depth); }
        
        /* Search & Cart Overlays */
        .overlay-panel {
            position: fixed;
            inset: 0;
            background: rgba(255,255,255,0.98);
            z-index: 200;
            display: none;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .overlay-panel.active { display: flex; opacity: 1; }

        /* Ingredient Diagram */
        .circle-node {
            width: 120px;
            height: 120px;
            border: 1px solid var(--green-depth);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 10px;
            font-size: 0.8rem;
            background: white;
            z-index: 5;
        }
        .diagram-line {
            position: absolute;
            background: var(--green-depth);
            height: 1px;
            transform-origin: left center;
            opacity: 0.3;
        }

        /* Cart Shake */
        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-2px); }
            75% { transform: translateX(2px); }
        }
        .cart-bump { animation: shake 0.3s ease-in-out; }

        /* Hide Scrollbar */
        .no-scrollbar::-webkit-scrollbar { display: none; }
