        :root {
            --midnight: #0B1C2D;
            --gold: #E6C27A;
            --slate: #6F7A85;
            --heritage: #C0392B;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #fff;
            color: var(--midnight);
            overflow-x: hidden;
        }

        .font-heading { font-family: 'Space Grotesk', sans-serif; }
        .font-cursive { font-family: 'Libre Baskerville', serif; }
        .font-barcode { font-family: 'Libre Barcode 39', cursive; font-size: 3.5rem; }

        /* Smooth reveal animation */
        .reveal { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.22, 1, 0.36, 1); }
        .reveal.active { opacity: 1; transform: translateY(0); }

        /* Cart Floating Badge */
        .cart-badge {
            position: fixed; bottom: 30px; right: 30px;
            background: var(--midnight); color: white;
            padding: 20px; border-radius: 100px;
            display: flex; align-items: center; gap: 15px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            z-index: 1000; cursor: pointer;
            transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .cart-badge:hover { transform: scale(1.1) translateY(-5px); }

        /* Sections */
        .section-padding { padding: 160px 0; }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 5px; }
        ::-webkit-scrollbar-track { background: #f1f1f1; }
        ::-webkit-scrollbar-thumb { background: var(--midnight); }

        /* Forms */
        .input-editorial {
            background: transparent; border-bottom: 1px solid #ddd;
            padding: 15px 0; width: 100%; outline: none;
            transition: 0.3s;
        }
        .input-editorial:focus { border-color: var(--gold); }

        /* Drawer System */
        .drawer {
            position: fixed; top: 0; right: -100%; width: 100%; max-width: 600px;
            height: 100%; background: white; z-index: 2000;
            transition: 0.6s cubic-bezier(0.82, 0.085, 0.395, 1);
            box-shadow: -20px 0 60px rgba(0,0,0,0.1);
            overflow-y: auto;
            padding: 60px;
        }
        .drawer.open { right: 0; }
        .overlay {
            position: fixed; inset: 0; background: rgba(0,0,0,0.7);
            backdrop-filter: blur(8px); opacity: 0; pointer-events: none;
            transition: 0.4s; z-index: 1999;
        }
        .overlay.active { opacity: 1; pointer-events: auto; }

        .btn-premium {
            background: var(--midnight); color: white;
            padding: 18px 36px; border-radius: 4px;
            text-transform: uppercase; letter-spacing: 2px;
            font-size: 11px; font-weight: 700;
            transition: 0.3s;
        }
        .btn-premium:hover { background: var(--gold); color: black; }
