
        /* All the CSS remains exactly the same as before */
        /* CSS Reset and Base Styles */


        /* Header and Navigation - FIXED DUPLICATION */
        header {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            position: relative;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo img {
            height: 50px;
        }

        .logo h1 {
            color: var(--primary-color);
            font-size: 1.8rem;
        }

        .logo span {
            color: var(--accent-color);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }

        nav a {
            text-decoration: none;
            color: var(--dark-color);
            font-weight: 600;
            font-size: 1.1rem;
            transition: color 0.3s;
            padding: 5px 0;
            position: relative;
        }

        nav a:hover {
            color: var(--primary-color);
        }

        nav a.active {
            color: var(--primary-color);
        }

        nav a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--primary-color);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary-color);
            cursor: pointer;
            z-index: 103;
            transition: transform 0.3s;
        }

        .mobile-menu-btn .fa-bars,
        .mobile-menu-btn .fa-times {
            transition: opacity 0.3s;
        }

        .mobile-menu-btn .fa-times {
            display: none;
        }

        .mobile-menu-btn.active .fa-bars {
            display: none;
        }

        .mobile-menu-btn.active .fa-times {
            display: inline-block;
        }

        /* Social Media Sidebar */
        .social-sidebar {
            position: fixed;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            background-color: white;
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
            border-radius: 0 10px 10px 0;
            z-index: 99;
            display: flex;
            flex-direction: column;
            padding: 15px 5px;
        }

        .social-sidebar a {
            color: var(--dark-color);
            font-size: 1.4rem;
            margin: 10px 0;
            padding: 10px;
            transition: all 0.3s;
            border-radius: 5px;
        }

        .social-sidebar a:hover {
            color: white;
            background-color: var(--primary-color);
        }

        .social-sidebar .fa-facebook:hover {
            background-color: #3b5998;
        }

        .social-sidebar .fa-instagram:hover {
            background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
        }

        .social-sidebar .fa-youtube:hover {
            background-color: #FF0000;
        }

        .social-sidebar .fa-whatsapp:hover {
            background-color: #25D366;
        }

        /* Hero Section - UPDATED WITH LOGO COLORS */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero-image.webp');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 20px;
            text-align: center;
        }

        .hero h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: white;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            color: #f0f0f0;
        }

        .btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Why Choose BiteExpress Section - UPDATED WITH LOGO COLORS */
        .why-choose-section {
            background-color: white;
            padding: 80px 20px;
        }

        .why-choose-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .why-choose-header h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .why-choose-header p {
            color: var(--gray-color);
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        .why-choose-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .why-choose-item {
            background-color: #f9f9f9;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            border-top: 4px solid var(--primary-color);
        }

        .why-choose-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .why-choose-icon {
            background-color: rgba(255, 107, 53, 0.1);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .why-choose-icon i {
            font-size: 1.8rem;
            color: var(--primary-color);
        }

        .why-choose-item h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--dark-color);
        }

        .why-choose-item p {
            color: var(--gray-color);
            font-size: 0.95rem;
        }

        /* Menu Section - UPDATED WITH LOGO COLORS */


        /* Combo Deals Section - UPDATED WITH LOGO COLORS */
        .combo-deals {
            background-color: #f9f5ff;
            padding: 80px 20px;
        }

        .combo-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .combo-header h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .combo-header p {
            color: var(--gray-color);
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        .combo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .combo-item {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s;
            position: relative;
            border-top: 5px solid var(--primary-color);
        }

        .combo-item:hover {
            transform: translateY(-10px);
        }

        .combo-badge {
            position: absolute;
            top: 15px;
            right: -35px;
            background-color: var(--primary-color);
            color: white;
            padding: 8px 40px;
            font-weight: 700;
            font-size: 0.9rem;
            transform: rotate(45deg);
            z-index: 1;
        }

        .combo-item-img {
            height: 200px;
            width: 100%;
            object-fit: cover;
        }

        .combo-item-content {
            padding: 20px;
        }

        .combo-item-title {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 10px;
        }

        .combo-item-title h3 {
            font-size: 1.4rem;
            color: var(--primary-color);
        }

        .combo-item-price {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.5rem;
        }

        .combo-item-desc {
            color: var(--gray-color);
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .combo-includes {
            margin-bottom: 20px;
        }

        .combo-includes h4 {
            font-size: 1rem;
            margin-bottom: 8px;
            color: var(--dark-color);
        }

        .combo-includes ul {
            list-style-type: none;
            padding-left: 0;
        }

        .combo-includes li {
            margin-bottom: 5px;
            font-size: 0.9rem;
            color: var(--gray-color);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .combo-includes li i {
            color: var(--primary-color);
            font-size: 0.8rem;
        }

        .free-drink {
            background-color: rgba(0, 78, 137, 0.1);
            padding: 10px;
            border-radius: 5px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .free-drink i {
            color: var(--accent-color);
            font-size: 1.2rem;
        }

        .free-drink span {
            font-weight: 600;
            color: var(--accent-color);
        }

        /* Customer Reviews Section - NEW SECTION */
        .reviews-section {
            background-color: white;
            padding: 80px 20px;
        }
        
        .reviews-container {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 40px;
            margin-top: 40px;
        }

        .reviews-container > * {
            min-width: 0;
        }
        
        .review-form-container {
            background-color: #f9f9f9;
            padding: 30px;
            border-radius: 10px;
            border-top: 4px solid var(--primary-color);
        }
        
        .review-form-container h3 {
            color: var(--primary-color);
            margin-bottom: 25px;
            font-size: 1.5rem;
        }

        .rating-fieldset {
            border: none;
            padding: 0;
            margin: 0;
            min-width: 0;
        }

        .rating-fieldset legend {
            padding: 0;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark-color);
            font-size: 1rem;
        }
        
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            font-size: 1.8rem;
            gap: 5px;
            margin-top: 10px;
        }
        
        .star-rating input {
            display: none;
        }
        
        .star-rating label {
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .star-rating input:checked ~ label,
        .star-rating input:hover ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: var(--primary-color);
        }
        
        .reviews-slider-container {
            padding: 20px;
        }
        
        .reviews-slider-container h3 {
            color: var(--primary-color);
            margin-bottom: 25px;
            font-size: 1.5rem;
            text-align: center;
        }
        
        .reviews-slider {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            background-color: #f9f9f9;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            max-width: 100%;
        }
        
        .slider-track {
            display: flex;
            transition: transform 0.5s ease;
            margin-bottom: 30px;
            min-height: 200px;
            width: 100%;
            will-change: transform;
        }
        
        .review-slide {
            flex: 0 0 100%;
            max-width: 100%;
            padding: 0 15px;
            box-sizing: border-box;
        }
        
        .review-card {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-left: 4px solid var(--primary-color);
        }
        
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .reviewer-info h4 {
            color: var(--dark-color);
            margin-bottom: 5px;
        }
        
        .review-date {
            color: var(--gray-color);
            font-size: 0.9rem;
        }
        
        .review-stars {
            color: var(--primary-color);
            font-size: 1.2rem;
        }
        
        .review-content {
            color: var(--gray-color);
            line-height: 1.6;
            font-style: italic;
            overflow-wrap: anywhere;
        }
        
        .review-content p {
            margin-bottom: 0;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .slider-dots {
            display: flex;
            gap: 8px;
        }
        
        .slider-dot {
            appearance: none;
            border: none;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd;
            cursor: pointer;
            transition: background-color 0.3s;
            padding: 0;
        }

        .slider-dot:focus-visible {
            outline: 3px solid rgba(0, 78, 137, 0.35);
            outline-offset: 3px;
        }
        
        .slider-dot.active {
            background-color: var(--primary-color);
        }

        .reviews-slider:focus-visible {
            outline: 3px solid rgba(0, 78, 137, 0.25);
            outline-offset: 6px;
        }

        /* Cart Sidebar - FIXED: Now properly hidden by default */
        .cart-sidebar {
            width: 100%;
            max-width: 400px;
            background-color: white;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            transition: right 0.4s ease;
        }

        .cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            border-bottom: 1px solid #eee;
        }

        .cart-header h3 {
            font-size: 1.5rem;
            color: var(--primary-color);
        }

        .close-cart {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--gray-color);
        }

        .cart-items {
            padding: 20px;
        }

        .cart-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }

        .cart-item-img {
            width: 70px;
            height: 70px;
            object-fit: cover;
            border-radius: 5px;
        }

        .cart-item-details {
            padding: 0 15px;
        }

        .cart-item-details h4 {
            margin-bottom: 5px;
            color: var(--dark-color);
        }

        .cart-item-details p {
            color: var(--primary-color);
            font-weight: 600;
        }

        .cart-item-quantity {
            gap: 10px;
        }

        .cart-item-quantity button {
            width: 25px;
            height: 25px;
            border-radius: 50%;
            background-color: var(--light-color);
            border: none;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }

        .cart-item-quantity button:hover {
            background-color: var(--primary-color);
            color: white;
        }

        .cart-item-remove {
            background: none;
            border: none;
            color: #ff4d4d;
            cursor: pointer;
            font-size: 1.2rem;
            transition: color 0.3s;
        }

        .cart-item-remove:hover {
            color: #ff0000;
        }

        .cart-footer {
            padding: 20px;
        }

        .cart-totals {
            margin-bottom: 20px;
        }

        .cart-totals div {
            margin-bottom: 10px;
        }

        .cart-totals .total {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-color);
            border-top: 1px solid #eee;
            padding-top: 10px;
        }

        .checkout-btn {
            width: 100%;
            padding: 15px;
            font-size: 1.1rem;
            background-color: var(--accent-color);
        }

        .checkout-btn:hover {
            background-color: var(--primary-color);
        }

        /* Fixed: Cart icon in header */
        .header-cart-icon {
            position: relative;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            transition: color 0.3s;
        }

        .header-cart-icon:hover {
            color: var(--primary-color);
        }

        .cart-count {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            width: 22px;
            height: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: bold;
        }

        /* Order Form Modal - UPDATED WITH LOGO COLORS */
        .modal-overlay {
            background-color: rgba(0, 0, 0, 0.7);
        }

        .order-form {
            max-width: 600px;
            border-radius: 10px;
            padding: 30px;
        }

        .order-form h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
            text-align: center;
            font-size: 1.8rem;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark-color);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--primary-color);
            outline: none;
        }

        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }

        .form-buttons {
            gap: 15px;
            margin-top: 30px;
        }

        /* Back to Top Button - UPDATED WITH LOGO COLORS */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 98;
            opacity: 0;
            visibility: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background-color: var(--accent-color);
            transform: translateY(-5px);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .reviews-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .reviews-slider-container {
                padding: 0;
            }
            
            .review-form-container {
                max-width: 500px;
                margin: 0 auto;
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                padding: 15px;
            }

            nav ul {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }

            .hero h2 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            /* FIXED: Cart sidebar on mobile and tablet */
            .cart-sidebar {
                max-width: 100%;
                right: -100%; /* Ensure it's hidden by default */
            }

            .cart-sidebar.active {
                right: 0; /* Only show when active */
            }
            
            .reviews-section {
                padding: 60px 20px;
            }
            
            .review-form-container,
            .reviews-slider {
                padding: 20px;
            }

            .slider-track {
                min-height: auto;
                margin-bottom: 20px;
            }

            .review-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }

            /* Fixed: Mobile menu and cart layout - REMOVED DUPLICATION */
            .mobile-menu-btn {
                display: block;
                order: 1;
            }

            .header-cart-icon {
                order: 2;
                margin-left: auto;
                margin-right: 15px;
            }

            .logo {
                order: 0;
                flex: 1;
            }

            .desktop-nav {
                display: none !important; /* Ensure desktop nav is hidden on mobile */
            }

            .mobile-nav {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background-color: white;
                z-index: 102;
                padding: 80px 20px 20px;
                overflow-y: auto;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            }

            .mobile-nav.active {
                display: block;
            }

            .mobile-nav ul {
                flex-direction: column;
                align-items: center;
                gap: 0;
            }

            /* Fixed: Removed duplicate menu items */
            .mobile-nav ul li {
                width: 100%;
                text-align: center;
                border-bottom: 1px solid #eee;
            }

            .mobile-nav ul li:last-child {
                border-bottom: none;
            }

            .mobile-nav ul li a {
                padding: 18px 20px;
                display: block;
                font-size: 1.2rem;
                color: var(--dark-color);
                transition: all 0.3s;
            }

            .mobile-nav ul li a:hover {
                background-color: var(--light-color);
                color: var(--primary-color);
            }
            
            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
            }
        }

        @media (min-width: 769px) {
            /* Ensure mobile nav is hidden on desktop */
            .mobile-nav {
                display: none !important;
            }
            
            .mobile-menu-btn {
                display: none !important;
            }
            
            .desktop-nav {
                display: flex !important;
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
            }

            .header-cart-icon {
                margin-left: auto;
            }

            .hero {
                padding: 60px 20px;
            }

            .section-title h2,
            .combo-header h2,
            .why-choose-header h2 {
                font-size: 2rem;
            }

            .header-container {
                flex-wrap: wrap;
            }
            
            .why-choose-item {
                padding: 20px;
            }
            
            .slider-controls {
                flex-direction: column;
                gap: 10px;
            }
            
            .slider-dots {
                order: -1;
                margin-bottom: 10px;
            }

            .reviews-container {
                gap: 30px;
            }

            .review-card {
                padding: 18px;
            }

            .reviews-slider {
                padding: 18px;
            }
        }

        /* Page Content Styles */
        .page-content {
            padding: 60px 20px;
            min-height: 60vh;
        }

        .page-content h2 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-size: 2.2rem;
        }

        .page-content h3 {
            color: var(--accent-color);
            margin: 25px 0 15px;
        }

        .page-content p {
            margin-bottom: 15px;
            color: var(--dark-color);
        }

        .page-content ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }

        .page-content li {
            margin-bottom: 8px;
            color: var(--dark-color);
        }
    
