
        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        [x-cloak] { display: none !important; }
        
        /* Blu Cabana style animations */
        .blu-fade-in {
            opacity: 0;
            transform: translateY(60px);
            transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .blu-fade-in.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .blu-slide-left {
            opacity: 0;
            transform: translateX(-80px);
            transition: all 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .blu-slide-left.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .blu-slide-right {
            opacity: 0;
            transform: translateX(80px);
            transition: all 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .blu-slide-right.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .blu-scale-up {
            opacity: 0;
            transform: scale(0.85) translateY(40px);
            transition: all 1.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .blu-scale-up.animate {
            opacity: 1;
            transform: scale(1) translateY(0);
        }

        .blu-rotate-in {
            opacity: 0;
            transform: rotate(-5deg) scale(0.9) translateY(50px);
            transition: all 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .blu-rotate-in.animate {
            opacity: 1;
            transform: rotate(0deg) scale(1) translateY(0);
        }

        /* Staggered animation delays */
        .delay-100 { transition-delay: 0.1s; }
        .delay-200 { transition-delay: 0.2s; }
        .delay-300 { transition-delay: 0.3s; }
        .delay-400 { transition-delay: 0.4s; }
        .delay-500 { transition-delay: 0.5s; }
        .delay-600 { transition-delay: 0.6s; }
        .delay-700 { transition-delay: 0.7s; }
        .delay-800 { transition-delay: 0.8s; }

        /* Menu animations */
        .hamburger-line {
            transition: all 0.3s ease-in-out;
        }
        
        .hamburger-open .line1 {
            transform: rotate(45deg) translate(5px, 5px);
        }
        
        .hamburger-open .line2 {
            opacity: 0;
        }
        
        .hamburger-open .line3 {
            transform: rotate(-45deg) translate(7px, -6px);
        }
        
        .menu-backdrop {
            backdrop-filter: blur(10px);
            background: rgba(243, 187, 124, 0.95);
        }

        .menu-item {
            opacity: 0;
            transform: translateX(30px);
            animation: slideInLeft 0.5s ease-out forwards;
        }
        
        .menu-item:nth-child(1) { animation-delay: 0.1s; }
        .menu-item:nth-child(2) { animation-delay: 0.15s; }
        .menu-item:nth-child(3) { animation-delay: 0.2s; }
        .menu-item:nth-child(4) { animation-delay: 0.25s; }
        .menu-item:nth-child(5) { animation-delay: 0.3s; }
        .menu-item:nth-child(6) { animation-delay: 0.35s; }
        .menu-item:nth-child(7) { animation-delay: 0.4s; }
        
        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Modern Navigation Dots - Redesigned */
        .modern-nav-dots {
            position: fixed;
            top: 50%;
            right: 2rem;
            transform: translateY(-50%);
            z-index: 40;
        }

        @media (max-width: 768px) {
            .modern-nav-dots {
                right: 1rem;
                transform: translateY(-50%) scale(0.8);
            }
        }

        @media (max-width: 640px) {
            .modern-nav-dots {
                display: none;
            }
        }

        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            border: 2px solid rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            margin: 1rem 0;
        }

        .nav-dot:hover {
            background: rgba(255, 255, 255, 0.6);
            border-color: rgba(255, 255, 255, 0.8);
            transform: scale(1.2);
        }

        .nav-dot.active {
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            border-color: #ffffff;
            transform: scale(1.3);
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
        }

        .nav-dot.active::before {
            content: '';
            position: absolute;
            top: -4px;
            left: -4px;
            right: -4px;
            bottom: -4px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            animation: pulse-ring 2s infinite;
        }

        @keyframes pulse-ring {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        .nav-label {
            position: absolute;
            right: 2.5rem;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            font-size: 0.875rem;
            font-weight: 500;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
            white-space: nowrap;
            backdrop-filter: blur(10px);
        }

        .nav-label::after {
            content: '';
            position: absolute;
            left: 100%;
            top: 50%;
            transform: translateY(-50%);
            border: 6px solid transparent;
            border-left-color: rgba(0, 0, 0, 0.8);
        }

        .nav-dot:hover .nav-label {
            opacity: 1;
            transform: translateY(-50%) translateX(-0.5rem);
        }

        /* Hero slider animations */
        .content-fade-in {
            animation: contentFadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .content-fade-in-delay-1 {
            animation: contentFadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
        }

        .content-fade-in-delay-2 {
            animation: contentFadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
        }

        @keyframes contentFadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
                filter: blur(2px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
                filter: blur(0px);
            }
        }

        .bg-parallax {
            transition: transform 12s ease-out;
        }

        .bg-parallax:hover {
            transform: scale(1.05);
        }

        .illustration-float {
            animation: modernFloat 8s ease-in-out infinite;
        }

        @keyframes modernFloat {
            0%, 100% { 
                transform: translateY(0px) rotate(0deg);
                filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
            }
            25% { 
                transform: translateY(-15px) rotate(1deg);
                filter: drop-shadow(0 15px 25px rgba(0,0,0,0.4));
            }
            50% { 
                transform: translateY(-10px) rotate(0deg);
                filter: drop-shadow(0 20px 30px rgba(0,0,0,0.3));
            }
            75% { 
                transform: translateY(-20px) rotate(-1deg);
                filter: drop-shadow(0 15px 25px rgba(0,0,0,0.4));
            }
        }

        .modern-button {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .modern-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s;
        }

        .modern-button:hover::before {
            left: 100%;
        }

        .modern-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .indicator {
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .indicator.active {
            transform: scale(1.2);
            background: linear-gradient(45deg, #667eea, #764ba2);
        }

        .nav-arrow {
            backdrop-filter: blur(20px);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .nav-arrow:hover {
            transform: scale(1.1);
            background: rgba(255,255,255,0.3);
        }

        /* Blu Cabana style hover effects */
        .blu-hover-lift {
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .blu-hover-lift:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        /* Mobile responsive adjustments */
        @media (max-width: 640px) {
            .blu-slide-left, .blu-slide-right {
                transform: translateY(40px);
                opacity: 0;
            }
            
            .blu-slide-left.animate, .blu-slide-right.animate {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* Mobile navigation adjustments */
        @media (max-width: 1024px) {
            .desktop-nav {
                display: none;
            }
        }

        @media (min-width: 1025px) {
            .mobile-nav {
                display: none;
            }
        }


         /* Custom animations */
         .fade-in {
            animation: fadeIn 0.6s ease-out forwards;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .slide-in {
            animation: slideIn 0.5s ease-out forwards;
        }
        
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .bounce-in {
            animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
        }
        
        @keyframes bounceIn {
            from {
                opacity: 0;
                transform: scale(0.3);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        .cart-item-enter {
            animation: cartItemEnter 0.5s ease-out forwards;
        }
        
        @keyframes cartItemEnter {
            from {
                opacity: 0;
                transform: translateX(-20px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateX(0) scale(1);
            }
        }
        
        .pulse-ring {
            animation: pulseRing 2s infinite;
        }
        
        @keyframes pulseRing {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.3);
                opacity: 0;
            }
        }
        
        /* Custom scrollbar */
        .custom-scrollbar::-webkit-scrollbar {
            width: 6px;
        }
        
        .custom-scrollbar::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        .custom-scrollbar::-webkit-scrollbar-thumb {
            background: #c1c1c1;
            border-radius: 10px;
        }
        
        .custom-scrollbar::-webkit-scrollbar-thumb:hover {
            background: #a8a8a8;
        }
        
        /* Glassmorphism effect */
        .glass {
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.18);
        }
        
        /* Hover effects */
        .hover-lift {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .hover-lift:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        /* Category tabs */
        .category-tab {
            transition: all 0.3s ease;
            position: relative;
        }
        
        .category-tab.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            border-radius: 2px;
        }
        
        /* Quantity controls */
        .quantity-btn {
            transition: all 0.2s ease;
        }
        
        .quantity-btn:hover {
            transform: scale(1.1);
        }
        
        .quantity-btn:active {
            transform: scale(0.95);
        }
        
        /* Cart badge */
        .cart-badge {
            animation: cartBadgePulse 0.3s ease-out;
        }
        
        @keyframes cartBadgePulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }
        
        /* Loading spinner */
        .spinner {
            border: 2px solid #f3f3f3;
            border-top: 2px solid #3b82f6;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .slide-in {
            animation: slideIn 0.3s ease-out forwards;
        }
        
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        /* Custom scrollbar */
        .custom-scrollbar::-webkit-scrollbar {
            width: 6px;
        }
        
        .custom-scrollbar::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        .custom-scrollbar::-webkit-scrollbar-thumb {
            background: #c1c1c1;
            border-radius: 10px;
        }
        
        .custom-scrollbar::-webkit-scrollbar-thumb:hover {
            background: #a8a8a8;
        }
        
        /* Status badges */
        .status-pending {
            @apply bg-yellow-100 text-yellow-800 border border-yellow-200;
        }
        
        .status-preparing {
            @apply bg-blue-100 text-blue-800 border border-blue-200;
        }
        
        .status-ready {
            @apply bg-green-100 text-green-800 border border-green-200;
        }
        
        .status-delivered {
            @apply bg-gray-100 text-gray-800 border border-gray-200;
        }
        
        .status-cancelled {
            @apply bg-red-100 text-red-800 border border-red-200;
        }
        
        /* Hover effects */
        .hover-lift {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .hover-lift:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        /* Loading spinner */
        .spinner {
            border: 2px solid #f3f3f3;
            border-top: 2px solid #3b82f6;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Sidebar */
        .sidebar-item {
            transition: all 0.3s ease;
        }
        
        .sidebar-item:hover {
            background: rgba(59, 130, 246, 0.1);
            border-radius: 0.5rem;
        }
        
        .sidebar-item.active {
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            color: white;
            border-radius: 0.5rem;
        }
        
        /* Chart container */
        .chart-container {
            position: relative;
            height: 300px;
        }
        
        /* Mobile sidebar */
        @media (max-width: 768px) {
            .mobile-sidebar {
                transform: translateX(-100%);
                transition: transform 0.3s ease;
            }
            
            .mobile-sidebar.open {
                transform: translateX(0);
            }
        }