  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        :root {
            --primary: #FF7F11; /* Main orange color */
            --primary-dark: #E06D00;
            --primary-light: #FFA04D;
            --secondary: #2E3532;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --light-gray: #e9ecef;
            --success: #4CAF50;
        }
        
        body {
            background-color: #f5f5f5;
            color: var(--dark);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            padding-bottom: 80px; /* Space for cart button */
        }
        
        /* Header */
        header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo img {
            height: 60px !important;
            width: auto;
        }
        
        .logo-text h1 {
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        /* Category Filter */
        .category-filter {
            display: flex;
            overflow-x: auto;
            padding: 10px 0;
            background: white;
            position: sticky;
            top: 95px !important;
            z-index: 90;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .category-filter::-webkit-scrollbar {
            display: none;
        }
        
        .filter-btn {
            padding: 8px 15px;
            margin: 0 5px;
            border: none;
            background: var(--light-gray);
            border-radius: 20px;
            font-weight: 500;
            white-space: nowrap;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .filter-btn.active {
            background: var(--primary);
            color: white;
        }
        
        /* Menu Items */
        main {
            flex: 1;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 15px;
            width: 100%;
        }
        
        .menu-section {
            margin-bottom: 30px;
        }
        
        .menu-section h3 {
            color: var(--secondary);
            font-size: 1.3rem;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--primary);
        }
        
        .menu-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
        }
        
        .menu-item {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        .menu-item:hover {
            transform: translateY(-3px);
        }
        
        .menu-item-img {
            height: 150px;
            width: 100%;
            object-fit: cover;
        }
        
        .menu-item-info {
            padding: 15px;
        }
        
        .menu-item-title {
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 8px;
            color: var(--secondary);
            display: flex;
            justify-content: space-between;
        }
        
        .menu-item-price {
            color: var(--primary);
            font-weight: bold;
        }
        
        .menu-item-desc {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 15px;
            line-height: 1.5;
        }
        
        .add-to-cart {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            text-align: center;
        }
        
        .add-to-cart:hover {
            background-color: var(--primary-dark);
        }
        
        /* Shopping Cart */
        .cart-icon {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--primary);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            z-index: 100;
        }
        
        .cart-count {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: var(--secondary);
            color: white;
            border-radius: 50%;
            width: 22px;
            height: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: bold;
        }
        
        .cart-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 200;
            display: none;
            justify-content: flex-end;
            flex-direction: column;
        }
        
        .cart-overlay.active {
            display: flex;
        }
        
        .cart-container {
            width: 100%;
            background-color: white;
            max-height: 70vh;
            overflow-y: auto;
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            border-radius: 15px 15px 0 0;
        }
        
        .cart-overlay.active .cart-container {
            transform: translateY(0);
        }
        
        .cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--light-gray);
        }
        
        .cart-header h3 {
            font-size: 1.3rem;
            color: var(--secondary);
        }
        
        .close-cart {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--gray);
        }
        
        .cart-items {
            margin-bottom: 15px;
        }
        
        .cart-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid var(--light-gray);
        }
        
        .cart-item-info {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1;
        }
        
        .cart-item-img {
            width: 50px;
            height: 50px;
            object-fit: cover;
            border-radius: 5px;
        }
        
        .cart-item-details h4 {
            font-size: 1rem;
            margin-bottom: 5px;
                color: #ff7f11 !important;
        }
        
        .cart-item-details p {
            font-size: 0.9rem;
            color: var(--primary);
            font-weight: bold;
        }
        
        .remove-item {
            background: none;
            border: none;
            color: var(--gray);
            cursor: pointer;
            font-size: 1.1rem;
            margin-left: 10px;
        }
        
        .cart-summary {
            border-top: 1px solid var(--light-gray);
            padding-top: 15px;
        }
        
        .cart-total {
            display: flex;
            justify-content: space-between;
            font-weight: bold;
            margin-bottom: 15px;
        }
        
        .checkout-btn {
            background-color: var(--success);
            color: white;
            border: none;
            width: 100%;
            padding: 12px;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            margin-top: 10px;
        }
        
        .empty-cart {
            text-align: center;
            padding: 30px 0;
            color: var(--gray);
        }
        
        /* Customer Info Form */
        .customer-form {
            display: none;
            margin-top: 20px;
            padding: 15px;
            background-color: var(--light-gray);
            border-radius: 8px;
        }
        
        .customer-form.active {
            display: block;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }
        
        .form-group input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        
        .form-actions {
            display: flex;
            gap: 10px;
        }
        
        .back-to-cart {
            background-color: var(--gray);
            color: white;
            border: none;
            padding: 10px;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            flex: 1;
        }
        
        /* Responsive */
        @media (min-width: 768px) {
            .menu-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .cart-icon {
                bottom: 30px;
                right: 30px;
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
            }
            
            .cart-container {
                max-width: 400px;
                max-height: 80vh;
                margin-right: 30px;
                margin-bottom: 30px;
                border-radius: 10px;
            }
            
            .category-filter {
                justify-content: center;
                top: 80px;
            }
            category-filter {
    display: flex
;
    overflow-x: auto;
    padding: 10px 0;
    background: white;
    position: sticky;
    top: 95px !important;
    z-index: 90;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
        }
        :root {
            --primary: #FF7F11; /* Main orange color */
            --primary-dark: #E06D00;
            --primary-light: #FFA04D;
            --secondary: #2E3532;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --light-gray: #e9ecef;
            --success: #4CAF50;
        }
        
        body {
            background-color: #f5f5f5;
            color: var(--dark);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            padding-bottom: 80px; /* Space for cart button */
        }
        
        /* Header */
        header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo img {
            height: 40px;
            width: auto;
        }
        
        .logo-text h1 {
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        /* Navigation */
        nav {
            display: flex;
            align-items: center;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 20px;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--light-gray);
        }
        
        .nav-links a.active {
            font-weight: bold;
            text-decoration: underline;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Category Filter */
        .category-filter {
            display: flex;
            overflow-x: auto;
            padding: 10px 0;
            background: white;
            position: sticky;
            top: 120px !important;
            z-index: 90;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        /* ... (بقية الأنماط تبقى كما هي) ... */

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 90px;
                left: 0;
                right: 0;
                background: var(--primary-dark);
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-links li {
                margin: 10px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            category-filter {
    display: flex
;
    overflow-x: auto;
    padding: 10px 0;
    background: white;
    position: sticky;
    top: 95px !important;
    z-index: 90;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
        }

        @media (min-width: 768px) {
            .menu-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            category-filter {
    display: flex
;
    overflow-x: auto;
    padding: 10px 0;
    background: white;
    position: sticky;
    top: 95px !important;
    z-index: 90;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
            .cart-icon {
                bottom: 30px;
                right: 30px;
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
            }
            
            .cart-container {
                max-width: 400px;
                max-height: 80vh;
                margin-right: 30px;
                margin-bottom: 30px;
                border-radius: 10px;
            }
            
            .category-filter {
                justify-content: center;
                top: 80px ;
            }
            category-filter {
    display: flex
;
    overflow-x: auto;
    padding: 10px 0;
    background: white;
    position: sticky;
    top: 95px !important;
    z-index: 90;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
            
        }
        footer {
    background-color: var(--secondary);
    color: white;
    padding: 50px 0 0;
    margin-top: 50px;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section {
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary);
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
}

.footer-section p, 
.footer-section a {
    color: var(--light-gray);
    margin-bottom: 12px;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary);
    padding-left: 5px;
}
.footer-section i{
    color:white;
}

.footer-section i {
    /* margin-right: 10px; */
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.newsletter-form {
    margin-top: 20px;
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 0.9rem;
}

.newsletter-form button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--primary-dark);
}

.copyright {
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.copyright p {
    margin-bottom: 10px;
    color: var(--light-gray);
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
    color: var(--light-gray);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-section {
        margin-bottom: 20px;
        /* padding: 16px; */
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        border-radius: 5px;
    }
    
    .newsletter-form button {
        margin-top: 10px;
        padding:20px;
    }