 * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            scroll-behavior: smooth;
        }

        body {
            background-image: url('tikka-pizza.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            background-repeat: no-repeat;
            color: #f5f5f5;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* --- HEADER NAVIGATION --- */
       /* --- HEADER NAVIGATION --- */
.header {
    background-color: rgb(255, 255, 255);
    backdrop-filter: blur(12px);
    position: fixed; /* Sticky se Fixed kar diya taake layout shift na ho */
    top: 0;
    left: 0;
    width: 100%; /* Pure screen par set karne ke liye */
    z-index: 1000;
    padding: 12px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ff6b12;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    
    /* Yeh mobile vibration aur jitter ko fix karega */
    will-change: transform;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
}

        /* BRAND AREA (LOGO + NAME) */
        .brand-area {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .brand-area .logo {
            width: 35px;
            height: 44px;
            object-fit: contain;  
        }

        .cafename {
            font-size: 22px;
            font-weight: bold;
            color: #ff6b12;
            letter-spacing: 1px;
        }

        /* Desktop Navbar */
        .navbar {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .navbar a {
            text-decoration: none;
            color: #ccc;
            font-weight: 600;
            font-size: 12px;
            transition: all 0.3s;
            padding: 6px 12px;
            border-radius: 20px;
            background: rgba(4, 4, 4, 0.619);
            border: 1px solid #333;
        }

        .navbar a:hover {
            color: #fff;
            background-color: #ff6b12;
            border-color: #ff6b12;
        }

        /* Mobile Hamburger Button */
        .hamburger-btn {
            display: none;
            font-size: 28px;
            background: none;
            border: none;
            color: #ff6b12;
            cursor: pointer;
            z-index: 1002;
        }

        /* Mobile Slide-out Drawer Overlay */
        .mobile-nav-overlay {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(15px);
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
            z-index: 1001;
            display: flex;
            flex-direction: column;
            padding: 80px 20px 20px 20px;
            gap: 15px;
            transition: right 0.4s ease;
            border-left: 2px solid #ff6b12;
        }

        .mobile-nav-overlay.open {
            right: 0;
        }

        .mobile-nav-overlay a {
            text-decoration: none;
            color: #fff8f8;
            font-size: 16px;
            font-weight: 600;
            padding: 12px 15px;
            background: rgba(0, 0, 0, 0.982);
            border-radius: 8px;
            border-left: 4px solid transparent;
            transition: all 0.2s;
        }

        .mobile-nav-overlay a:hover {
            background: #ff6b12;
            color: black;
        }

        /* Dark background dim layer */
        .menu-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1000;
            display: none;
        }

        .menu-backdrop.show {
            display: block;
        }

        /* --- LAYOUT CONTAINER --- */
.container {
    display: flex;
    max-width: 1400px;
    width: 100%;
    margin: 90px auto 30px auto; /* Top margin ko 30px se barha kar 90px kar diya hai */
    padding: 0 20px;
    gap: 25px;
    flex: 1;
}

/* Mobile responsive section mein bhi margin set karein */
@media (max-width: 992px) {
    .container {
        flex-direction: column;
        margin: 80px auto 15px auto; /* Mobile ke liye bhi top margin adjust kiya */
        padding: 0 10px;
    }
}
        .main {
            flex: 2.8;
        }

        .rightaside {
            flex: 1.2;
            background: rgba(22, 22, 22, 0.95);
            backdrop-filter: blur(10px);
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
            position: sticky;
            top: 100px;
            height: max-content;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .food-category {
            margin-bottom: 40px;
            padding: 25px;
            border-radius: 16px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(4px);
            background: rgba(20, 20, 20, 0.85);
        }

        .category-title {
            font-size: 26px;
            border-bottom: 3px solid #ff6b12;
            padding-bottom: 8px;
            margin-bottom: 25px;
            color: #ff6b12;
            font-weight: 800;
            text-transform: uppercase;
        }

        .session-title {
            font-size: 16px;
            color: #ff9f43;
            margin: 25px 0 15px 0;
            font-weight: 600;
            border-left: 4px solid #ff6b12;
            padding-left: 10px;
            text-transform: uppercase;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 20px;
        }

        .dish-card {
            background: rgba(15, 15, 15, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 12px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
        }

        .dish-card:hover {
            transform: translateY(-4px);
            border-color: #ff6b12;
            box-shadow: 0 6px 15px rgba(255, 107, 18, 0.25);
        }

        .card-body {
            padding: 15px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            justify-content: space-between;
            flex: 1;
        }

        .dish-card h4 {
            font-size: 15px;
            color: #fff;
            font-weight: bold;
            line-height: 1.3;
        }

        .dish-card p.deal-details {
            font-size: 12px;
            color: #aaa;
            line-height: 1.4;
            margin-top: -5px;
        }

        .size-select,
        .form-select {
            width: 100%;
            padding: 11px;
            border: 1px solid #3a3a3a;
            border-radius: 6px;
            background-color: #0c0c0c;
            color: #fff;
            font-size: 14px;
            outline: none;
            cursor: pointer;
        }

        .size-select {
            padding: 7px;
            font-size: 12px;
            background-color: #121212;
            border: 1px solid #444;
        }

        .card-price {
            color: #ff6b12;
            font-weight: bold;
            font-size: 18px;
            margin: 2px 0;
        }

        .add-btn {
            background-color: #ff6b12;
            color: white;
            border: none;
            padding: 8px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            font-size: 13px;
            width: 100%;
            transition: background 0.2s;
        }

        .add-btn:hover {
            background-color: #e05300;
        }

        .cart-title {
            font-size: 22px;
            margin-bottom: 20px;
            border-bottom: 2px solid #2a2a2a;
            padding-bottom: 12px;
            display: flex;
            justify-content: space-between;
            font-weight: bold;
            color: #ff6b12;
        }

        .form-section {
            margin-bottom: 20px;
            border-bottom: 1px dashed #2a2a2a;
            padding-bottom: 15px;
        }

        .form-label {
            color: #ff9f43;
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 10px;
            display: block;
            margin-top: 10px;
        }

        .form-input {
            width: 100%;
            padding: 11px;
            margin-bottom: 12px;
            border-radius: 6px;
            border: 1px solid #3a3a3a;
            background: #0c0c0c;
            color: #fff;
            font-size: 14px;
            outline: none;
        }

        #cart-items {
            list-style: none;
            max-height: 300px;
            overflow-y: auto;
            margin-bottom: 15px;
            margin-top: 15px;
        }

        #cart-items li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px dashed #2a2a2a;
            font-size: 14px;
        }

        .remove-btn {
            background: none;
            border: none;
            color: #ff4757;
            cursor: pointer;
            font-weight: bold;
            margin-left: 12px;
            font-size: 18px;
        }

        .cart-total {
            font-size: 20px;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
            padding-top: 12px;
            border-top: 2px solid #2a2a2a;
            color: #fff;
        }

        .order-btn {
            width: 100%;
            background-color: #25D366;
            color: white;
            border: none;
            padding: 14px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            margin-top: 15px;
        }

        .order-btn:hover {
            background-color: #1eaf53;
        }

        /* --- FOOTER STYLES --- */
        .footer {
            background-color: rgba(16, 16, 16, 0.95);
            backdrop-filter: blur(12px);
            border-top: 2px solid #ff6b12;
            padding: 30px 20px;
            text-align: center;
            margin-top: auto;
            /* Yeh footer ko page ke hamesha aakhir mein rakhega */
            box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.5);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
            align-items: center;
        }

        .footer-info {
            font-size: 14px;
            color: #ccc;
            line-height: 1.6;
        }

        .footer-info strong {
            color: #ff6b12;
        }

        .footer-socials {
            display: flex;
            gap: 15px;
            margin: 10px 0;
        }

        .footer-socials a {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            background: rgba(255, 107, 18, 0.1);
            padding: 6px 15px;
            border-radius: 20px;
            border: 1px solid rgba(255, 107, 18, 0.3);
            transition: all 0.3s ease;
        }

        .footer-socials a:hover {
            background: #ff6b12;
            color: #fff;
            box-shadow: 0 0 10px rgba(255, 107, 18, 0.5);
        }

        .footer-copyright {
            font-size: 12px;
            color: #777;
            border-top: 1px solid #222;
            padding-top: 15px;
            width: 100%;
        }

        /* --- MOBILE MEDIA QUERIES --- */
        @media (max-width: 992px) {
            .container {
                flex-direction: column;
                margin: 15px auto;
                padding: 0 10px;
            }

            .rightaside {
                position: static;
                width: 100%;
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                display: none;
            }

            .hamburger-btn {
                display: block;
            }

            .menu-grid {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
                gap: 12px;
            }

            .category-title {
                font-size: 22px;
            }

            .food-category {
                padding: 15px;
            }

            .cafename {
                font-size: 18px;
            }

            .brand-area .logo {
                width: 35px;
                height: 44px;
                
            }
        }

        /* --- PREMIUM MOBILE CART BUTTON STYLES --- */
.mobile-cart-btn {
    display: none; /* Desktop par hidden rahega */
    position: relative;
    text-decoration: none;
    font-size: 20px;
    background: rgba(255, 107, 18, 0.15); /* Soft premium orange tint */
    border: 1px solid rgba(255, 107, 18, 0.4);
    padding: 8px 12px;
    border-radius: 30px; /* Capsule shape jo zyada modern lagti hai */
    align-items: center;
    justify-content: center;
    gap: 5px;
    backdrop-filter: blur(8px); /* Premium Glass effect */
    box-shadow: 0 4px 15px rgba(255, 107, 18, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-tap-highlight-color: transparent;
}

/* Jab user mobile par click kare toh soft bounce effect ho */
.mobile-cart-btn:active {
    transform: scale(0.92);
    background: rgba(255, 107, 18, 0.3);
    box-shadow: 0 2px 8px rgba(255, 107, 18, 0.4);
}

/* Premium Dynamic Counter Badge */
#mobile-cart-count {
    background: linear-gradient(135deg, #ff4757, #ff6b12); /* Eye-catching gradient */
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(255, 71, 87, 0.5);
    border: 1.5px solid #fff; /* White border jo badge ko pop-out karta hai */
    transition: all 0.2s ease;
}

/* Jab cart khali na ho to button halka sa pulse kare (optional feature ke liye) */
@keyframes cartPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 18, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(255, 107, 18, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 18, 0); }
}

/* Media Query: Sirf Mobile Screens par activate hoga */
@media (max-width: 768px) {
    .mobile-cart-btn {
        display: flex; /* Flexbox alignment ke liye */
    }
}

/* --- CART INCREMENT / DECREMENT STYLES --- */
.cart-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 60%;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.cart-item-price {
    font-size: 13px;
    color: #ff6b12; /* Theme Orange color */
    font-weight: bold;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Plus/Minus Controller Container */
.qty-control {
    display: flex;
    align-items: center;
    background: #252525;
    border: 1px solid #444;
    border-radius: 6px;
    overflow: hidden;
}

.qty-btn {
    background: transparent;
    color: #fff;
    border: none;
    width: 28px;
    height: 28px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.qty-btn:hover {
    background: #333;
    color: #ff6b12;
}

.qty-btn.minus {
    border-right: 1px solid #444;
}

.qty-btn.plus {
    border-left: 1px solid #444;
}

.qty-val {
    padding: 0 10px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    min-width: 20px;
    text-align: center;
}

/* Delete Trash Button Styling */
.cart-del-btn {
    background: transparent;
    border: none;
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    transition: transform 0.2s;
}

.cart-del-btn:hover {
    transform: scale(1.15);
}

.dish-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 12px;
    background: #111;
    color: #fff;
    margin: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Image container styling */
.card-img-container {
    height: 150px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #222; /* Fallback color if image fails */
    width: 100%;
}

.card-body {
    padding: 15px;
}