  :root {
            --coffee-brown: #4B2E2E;
            --cream: #F5E6CC;
            --caramel: #C69C72;
            --black: #1C1C1C;
            --light-brown: #8B5A2B;
            --dark-cream: #E8D5B5;
        }
        
        /* Custom Font */
        @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');
         html{
             overflow-x: hidden;
        }
        body {
            font-family: 'Inter', sans-serif;
            color: var(--black);
            overflow-x: hidden;
            scroll-behavior: smooth;
            background: linear-gradient(to bottom, var(--cream) 0%, #faf3e8 100%);
        }
        
        h1, h2, h3, h4, .font-serif {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--cream);
            border-radius: 10px;
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--caramel);
            border-radius: 10px;
            border: 2px solid var(--cream);
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--coffee-brown);
        }
        
        /* Navigation */
        .nav-scrolled {
            background: rgba(75, 46, 46, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        
        .mobile-menu {
            transform: translateX(-100%);
            transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        }
        
        .mobile-menu.open {
            transform: translateX(0);
        }
        
        .btn-primary {
            background: linear-gradient(to right, var(--coffee-brown), var(--light-brown));
            color: white;
            padding: 14px 28px;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: none;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary::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: 0.5s;
        }
        
        .btn-primary:hover::before {
            left: 100%;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(75, 46, 46, 0.2);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--coffee-brown);
            border: 2px solid var(--coffee-brown);
            padding: 12px 26px;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .btn-secondary:hover {
            background: var(--coffee-brown);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(75, 46, 46, 0.2);
        }
        
        .section-padding {
            padding: 100px 0;
        }
        
        .hover-lift {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .hover-lift:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
        }
        
        .loading-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(to right, var(--caramel), var(--coffee-brown));
            width: 0%;
            z-index: 9999;
            transition: width 0.4s ease;
        }
        
        /* Menu specific styles */
        .menu-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* Menu item grid */
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .menu-item {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
        }
        
        .menu-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .menu-item-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .menu-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .menu-item:hover .menu-item-image img {
            transform: scale(1.1);
            filter: brightness(1.1);
        }
        
        .menu-item-category {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--caramel);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
        }
        
        .menu-item-content {
            padding: 20px;
            position: relative;
        }
        
        .menu-item h3 {
            font-size: 20px;
            margin-bottom: 8px;
            color: var(--coffee-brown);
            transition: color 0.3s ease;
        }
        
        .menu-item:hover h3 {
            color: var(--caramel);
        }
        
        .menu-item p {
            color: #666;
            margin-bottom: 15px;
            font-size: 14px;
            line-height: 1.5;
        }
        
        .menu-item .price {
            font-weight: 700;
            color: var(--caramel);
            font-size: 22px;
            margin-bottom: 15px;
        }
        
        .menu-item-actions {
            display: flex;
            gap: 10px;
        }
        
        .add-to-cart-btn {
            flex: 1;
            padding: 12px;
            background: var(--coffee-brown);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .add-to-cart-btn:hover {
            background: var(--light-brown);
        }
        
        .order-now-btn {
            flex: 1;
            padding: 12px;
            background: transparent;
            color: var(--coffee-brown);
            border: 2px solid var(--coffee-brown);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .order-now-btn:hover {
            background: var(--coffee-brown);
            color: white;
        }
        
        /* Enhanced hover effect */
        .menu-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(75, 46, 46, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
            pointer-events: none;
        }
        
        .menu-item:hover::before {
            opacity: 1;
        }
        
        /* Category filters */
        .category-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 30px;
            justify-content: center;
        }
        
        .category-filter {
            padding: 10px 20px;
            background: white;
            border: 2px solid var(--cream);
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .category-filter:hover, .category-filter.active {
            background: var(--coffee-brown);
            color: white;
            border-color: var(--coffee-brown);
        }
        
        /* Decorative Elements */
        .coffee-bean {
            position: absolute;
            opacity: 0.03;
            z-index: 0;
            pointer-events: none;
        }
        
        .bean-1 {
            top: 20%;
            left: 5%;
            width: 150px;
            height: 150px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 15 C75 15 85 40 85 50 C85 60 75 85 50 85 C25 85 15 60 15 50 C15 40 25 15 50 15 Z" fill="%234B2E2E"/></svg>');
            background-repeat: no-repeat;
        }
        
        .bean-2 {
            bottom: 10%;
            right: 8%;
            width: 120px;
            height: 120px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 15 C75 15 85 40 85 50 C85 60 75 85 50 85 C25 85 15 60 15 50 C15 40 25 15 50 15 Z" fill="%234B2E2E"/></svg>');
            background-repeat: no-repeat;
            transform: rotate(45deg);
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--coffee-brown);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 100;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: var(--caramel);
            transform: translateY(-5px);
        }
        
        /* Cart sidebar */
        .cart-sidebar {
            position: fixed;
            top: 0;
            right: -400px;
            width: 400px;
            height: 100vh;
            background: white;
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transition: right 0.4s ease;
            overflow-y: auto;
            padding: 20px;
        }
        
        .cart-sidebar.open {
            right: 0;
        }
        
        .cart-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }
        
        .cart-overlay.open {
            opacity: 1;
            visibility: visible;
        }
        
        /* Cart item styles */
        .cart-item {
            display: flex;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .cart-item-image {
            width: 70px;
            height: 70px;
            border-radius: 8px;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .cart-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .cart-item-details {
            flex: 1;
        }
        
        .cart-item-name {
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .cart-item-price {
            color: var(--caramel);
            font-weight: 600;
        }
        
        .cart-item-quantity {
            display: flex;
            align-items: center;
            margin-top: 5px;
        }
        
        .quantity-btn {
            width: 25px;
            height: 25px;
            border-radius: 50%;
            background: #f0f0f0;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }
        
        .quantity-input {
            width: 30px;
            text-align: center;
            margin: 0 5px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        
        .cart-item-remove {
            color: #ff3b30;
            background: none;
            border: none;
            cursor: pointer;
            margin-left: 10px;
        }
        
        .summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        
        .summary-total {
            font-weight: 700;
            font-size: 18px;
            margin-top: 10px;
            padding-top: 10px;
            border-top: 2px solid #eee;
        }
        
        /* Image Slider */
        .slider-container {
            position: relative;
            width: 100%;
            height: 400px;
            overflow: hidden;
            margin: 60px 0;
            border-radius: 16px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
        }
        
        .slide {
            min-width: 100%;
            height: 100%;
            position: relative;
        }
        
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 30px;
        }
        
        .slide-content h3 {
            font-size: 24px;
            margin-bottom: 10px;
        }
        
        .slide-content p {
            font-size: 16px;
            max-width: 600px;
        }
        
        .slider-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .slider-dot.active {
            background: white;
        }
        
        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: background 0.3s ease;
            backdrop-filter: blur(5px);
        }
        
        .slider-btn:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        
        .slider-btn.prev {
            left: 20px;
        }
        
        .slider-btn.next {
            right: 20px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .menu-container {
                padding: 10px;
            }
            
            .menu-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 15px;
            }
            
            .menu-item-actions {
                flex-direction: column;
            }
            
            .category-filters {
                overflow-x: auto;
                justify-content: flex-start;
                padding-bottom: 10px;
            }
            
            .cart-sidebar {
                width: 100%;
                right: -100%;
            }
            
            .slider-container {
                height: 300px;
            }
            
            .slide-content {
                padding: 20px;
            }
            
            .slide-content h3 {
                font-size: 20px;
            }
            
            .slide-content p {
                font-size: 14px;
            }
            
            .slider-btn {
                width: 40px;
                height: 40px;
            }
        }
        
        /* Toast notification */
        .toast {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--coffee-brown);
            color: white;
            padding: 12px 20px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .toast.show {
            opacity: 1;
            visibility: visible;
        }