    /* Custom styles and overrides */
    
    html {
        scroll-behavior: smooth;
    }
    
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Navbar scroll state */
    #navbar.scrolled {
        background: rgba(254, 254, 252, 0.95);
        backdrop-filter: blur(12px);
        box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
    }
    
    /* Process cards */
    .process-card {
        opacity: 1;
    }
    
    .process-card:hover {
        transform: translateY(-4px);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    /* Flavor cards */
    .flavor-card {
        opacity: 1;
    }
    
    .flavor-card:hover {
        transform: translateY(-6px);
        transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .flavor-card:hover img {
        transform: scale(1.1);
    }
    
    /* Mobile menu animations */
    #mobileMenu.open {
        opacity: 1;
        pointer-events: all;
    }
    
    #mobileMenu.closed {
        opacity: 0;
        pointer-events: none;
    }
    
    /* Menu button animation */
    #menuBtn.active .menu-line:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }
    
    #menuBtn.active .menu-line:nth-child(2) {
        opacity: 0;
    }
    
    #menuBtn.active .menu-line:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
        width: 5px;
    }
    
    /* Mobile link animation */
    .mobile-link {
        opacity: 1;
    }
    
    /* Scroll reveal (progressive enhancement) */
    @media (prefers-reduced-motion: no-preference) {
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }
        
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }
    }
    
    /* Respect reduced motion */
    @media (prefers-reduced-motion: reduce) {
        *, *::before, *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
        
        html {
            scroll-behavior: auto;
        }
    }
    
    /* Selection color */
    ::selection {
        background: rgba(212, 84, 43, 0.2);
        color: #2a1d14;
    }
    
    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    
    ::-webkit-scrollbar-track {
        background: #fdfefc;
    }
    
    ::-webkit-scrollbar-thumb {
        background: #d4542b;
        border-radius: 4px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background: #b83f1e;
    }
    
    /* Focus styles */
    a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
        outline: 2px solid #d4542b;
        outline-offset: 2px;
        border-radius: 4px;
    }
