    /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-red: #dc3545;
            --primary-yellow: #ffc107;
            --dark-red: #c82333;
            --dark-yellow: #e0a800;
            --dark-gray: #343a40;
            --gray: #6c757d;
            --light-gray: #f8f9fa;
            --white: #ffffff;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --border-radius: 15px;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--dark-gray);
            background-color: var(--white);
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        .main-header {
            background: var(--white);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            position: relative;
        }
        
        .logo {
            text-decoration: none;
            display: flex;
            flex-direction: column;
            z-index: 1002;
        }
        
        .logo-text {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 1px;
        }
        
        .easty {
            color: var(--primary-red);
        }
        
        .westy {
            color: var(--primary-yellow);
        }
        
        .logo-sub {
            font-size: 0.875rem;
            color: var(--gray);
            font-weight: 500;
            margin-top: -5px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: var(--dark-gray);
            font-weight: 500;
            font-size: 1rem;
            padding: 10px 0;
            position: relative;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .nav-menu a:hover,
        .nav-menu a.active {
            color: var(--primary-red);
        }
        
        .nav-menu a.active:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary-red);
            border-radius: 2px;
        }
        
        .cart-icon {
            position: relative;
        }
        
        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--primary-red);
            color: var(--white);
            font-size: 0.75rem;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }
        
        /* Mobile Menu Toggle - IMPROVED */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--dark-gray);
            cursor: pointer;
            padding: 12px;
            width: 60px;
            height: 60px;
            border-radius: 8px;
            transition: var(--transition);
            z-index: 1002;
            position: relative;
            align-items: center;
            justify-content: center;
        }
        
        .mobile-menu-toggle:hover {
            background-color: rgba(0, 0, 0, 0.05);
        }
        
        .mobile-menu-toggle:active {
            background-color: rgba(0, 0, 0, 0.1);
        }
        
        .mobile-menu-toggle:focus {
            outline: 2px solid var(--primary-red);
            outline-offset: 3px;
        }
        
        /* Hero Section */
        .hero {
            position: relative;
            height: 80vh;
            min-height: 600px;
            overflow: hidden;
        }
        
        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slide-1 {
            background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/carousel1.jpg');
        }
        
        .slide-2 {
            background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/carousel2.jpg');
        }
        
        .slide-3 {
            background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/carousel3.jpg');
        }
        
        .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: var(--white);
            width: 90%;
            max-width: 800px;
        }
        
        .slide-content h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .slide-content p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        .btn {
            display: inline-block;
            padding: 15px 35px;
            background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
            color: var(--white);
            text-decoration: none;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(220, 53, 69, 0.3);
        }
        
        .btn-yellow {
            background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
        }
        
        .btn-yellow:hover {
            box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
        }
        
        .slider-controls {
            position: absolute;
            bottom: 40px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: var(--transition);
        }
        
        .slider-dot.active {
            background: var(--primary-yellow);
            transform: scale(1.2);
        }
        
        /* Concepts Section */
        .concepts {
            padding: 100px 0;
            background: var(--light-gray);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 3rem;
            color: var(--dark-gray);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-red), var(--primary-yellow));
            border-radius: 2px;
        }
        
        .section-title p {
            font-size: 1.125rem;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .concepts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }
        
        .concept-card {
            background: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .concept-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .concept-header {
            padding: 40px 40px 20px;
            text-align: center;
        }
        
        .concept-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .east-icon {
            color: var(--primary-red);
        }
        
        .west-icon {
            color: var(--primary-yellow);
        }
        
        .concept-header h3 {
            font-size: 2rem;
            margin-bottom: 10px;
        }
        
        .concept-header p {
            color: var(--gray);
        }
        
        .concept-dishes {
            padding: 30px;
            background: linear-gradient(135deg, #fff9f9, #fff);
        }
        
        .concept-dishes.west {
            background: linear-gradient(135deg, #fffef5, #fff);
        }
        
        .dish-list {
            list-style: none;
        }
        
        .dish-list li {
            padding: 15px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .dish-list li:last-child {
            border-bottom: none;
        }
        
        .dish-name {
            font-weight: 500;
        }
        
        .dish-price {
            color: var(--primary-red);
            font-weight: 600;
        }
        
        /* Featured Menu */
        .featured-menu {
            padding: 100px 0;
            background: var(--white);
        }
        
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .menu-item {
            background: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .menu-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .menu-item-image {
            height: 250px;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: var(--gray);
        }
        
        .menu-item-content {
            padding: 30px;
        }
        
        .menu-item-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .menu-item-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--dark-gray);
        }
        
        .menu-item-price {
            color: var(--primary-red);
            font-weight: 700;
            font-size: 1.125rem;
        }
        
        .menu-item-description {
            color: var(--gray);
            margin-bottom: 20px;
            font-size: 0.9375rem;
        }
        
        .menu-item-sizes {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        
        .size-badge {
            padding: 8px 15px;
            background: var(--light-gray);
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--gray);
        }
        
        .size-badge.highlight {
            background: var(--primary-red);
            color: var(--white);
        }
        
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
            color: var(--white);
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--white);
        }
        
        .cta-section p {
            font-size: 1.25rem;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--white);
            color: var(--white);
            margin-left: 15px;
        }
        
        .btn-outline:hover {
            background: var(--white);
            color: var(--primary-red);
        }
        
        /* Footer */
        .footer {
            background: var(--dark-gray);
            color: var(--white);
            padding: 80px 0 30px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-col h3 {
            color: var(--white);
            font-size: 1.25rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .footer-col h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary-red);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--primary-yellow);
            padding-left: 5px;
        }
        
        .contact-info {
            list-style: none;
        }
        
        .contact-info li {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .contact-info i {
            color: var(--primary-yellow);
            font-size: 1.125rem;
            margin-top: 3px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.875rem;
        }
        
        /* Responsive Design - FIXED */
        @media (max-width: 992px) {
            .slide-content h1 {
                font-size: 3rem;
            }
            
            .concepts-grid {
                grid-template-columns: 1fr;
            }
            
            /* FIXED: Mobile Navigation */
            .mobile-menu-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .navbar {
                padding: 10px 0;
            }
            
            .nav-menu {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                padding: 100px 20px 40px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                transform: translateX(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.4s ease;
                z-index: 1001;
                overflow-y: auto;
                gap: 0;
            }
            
            .nav-menu.active {
                transform: translateX(0);
                opacity: 1;
                visibility: visible;
            }
            
            .nav-menu li {
                width: 100%;
            }
            
            .nav-menu a {
                padding: 20px;
                border-bottom: 1px solid var(--light-gray);
                width: 100%;
                font-size: 1.2rem;
                justify-content: flex-start;
                gap: 15px;
            }
            
            .nav-menu a:last-child {
                border-bottom: none;
            }
            
            .nav-menu a i {
                width: 24px;
                text-align: center;
            }
            
            /* Ensure the toggle button stays on top of the menu */
            .mobile-menu-toggle {
                z-index: 1002;
            }
            
            /* Prevent body scroll when menu is open */
            body.menu-open {
                overflow: hidden;
            }
        }
        
        @media (max-width: 768px) {
            .slide-content h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2.5rem;
            }
            
            .menu-grid {
                grid-template-columns: 1fr;
            }
            
            .concept-header h3 {
                font-size: 1.75rem;
            }
            
            .cta-section h2 {
                font-size: 2.5rem;
            }
            
            .concepts-grid {
                grid-template-columns: 1fr;
            }
            
            .mobile-menu-toggle {
                width: 55px;
                height: 55px;
                font-size: 1.7rem;
            }
        }
        
        @media (max-width: 576px) {
            .slide-content h1 {
                font-size: 2rem;
            }
            
            .btn {
                padding: 12px 25px;
                font-size: 0.9375rem;
            }
            
            .concepts-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .slide-content {
                width: 95%;
            }
            
            .slide-content .btn {
                display: block;
                margin-bottom: 10px;
                width: 100%;
            }
            
            .slide-content .btn-outline {
                margin-left: 0;
            }
            
            .mobile-menu-toggle {
                width: 50px;
                height: 50px;
                font-size: 1.6rem;
                padding: 10px;
            }
            
            .nav-menu {
                padding: 80px 20px 40px;
            }
        }
        
        /* Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in {
            animation: fadeIn 0.5s ease forwards;
        }
        
        /* Menu Overlay Background */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }
        
        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }