:root{

    --primary:#ff6b35;
    --primary-dark:#e85a2c;

    --secondary:#ffb347;

    --dark:#0f172a;

    --gray:#64748b;

    --white:#ffffff;

    --border:#e2e8f0;

    --radius:18px;

    --shadow:
        0 15px 40px rgba(0,0,0,.08);

}


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:
    'Poppins',
    sans-serif;

    background:#f8fafc;

    color:var(--dark);
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.container{

    width:100%;

    max-width:1300px;

    margin:auto;

    padding:0 20px;
}


.glass{

    background:
    rgba(255,255,255,.6);

    backdrop-filter:
    blur(16px);

    border:
    1px solid rgba(255,255,255,.5);

    box-shadow:
    var(--shadow);

    border-radius:
    var(--radius);

}

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 26px;

    border:none;

    border-radius:12px;

    cursor:pointer;

    transition:.3s;
}

.btn-primary{

    background:
    var(--primary);

    color:white;
}

.btn-primary:hover{

    background:
    var(--primary-dark);

    transform:
    translateY(-2px);

}

.navbar{

    position:sticky;

    top:0;

    z-index:999;

    background:
    rgba(255,255,255,.8);

    backdrop-filter:
    blur(12px);

    border-bottom:
    1px solid rgba(0,0,0,.05);
}

.nav-container{

    display:flex;

    justify-content:
    space-between;

    align-items:center;

    min-height:80px;
}

.logo-text{

    font-size:24px;

    font-weight:700;

    color:var(--primary);
}

.desktop-nav{

    display:flex;

    gap:30px;
}

.desktop-nav a{

    color:var(--dark);

    font-weight:500;
}

.call-btn{

    background:
    var(--primary);

    color:white;

    padding:12px 20px;

    border-radius:10px;
}

.mobile-menu-btn{

    display:none;

    border:none;

    background:none;

    font-size:30px;
}

.footer{

    background:
    var(--dark);

    color:white;

    margin-top:80px;

    padding:60px 0;
}

.footer-content{

    text-align:center;
}


.hero{

    padding:80px 0;

    min-height:85vh;

    display:flex;
    align-items:center;
}

.hero-wrapper{

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:60px;

    align-items:center;
}


.hero-badge{

    display:inline-block;

    padding:10px 18px;

    border-radius:999px;

    background:
    rgba(255,107,53,.12);

    color:var(--primary);

    font-weight:600;

    margin-bottom:20px;
}


.hero h1{

    font-size:64px;

    line-height:1.1;

    margin-bottom:20px;
}

.hero p{

    color:var(--gray);

    font-size:18px;

    margin-bottom:20px;
}


.hero-buttons{

    display:flex;

    gap:15px;

    margin:30px 0;
}

.btn-outline{

    border:2px solid var(--primary);

    color:var(--primary);

    background:white;
}

.hero-features{

    display:flex;

    gap:15px;

    flex-wrap:wrap;
}

.hero-features span{

    padding:10px 16px;

    border-radius:999px;

    background:white;

    box-shadow:
    var(--shadow);
}

.hero-image img{

    width:100%;

    max-width:550px;

    margin:auto;

    animation:
    floatFood 4s ease-in-out infinite;
}

@keyframes floatFood{

    0%{
        transform:
        translateY(0);
    }

    50%{
        transform:
        translateY(-15px);
    }

    100%{
        transform:
        translateY(0);
    }

}

.status-section{

    margin-top:-40px;

    position:relative;

    z-index:10;
}

.status-card{

    display:flex;

    justify-content:
    space-between;

    align-items:center;

    padding:30px;
}

.status-right{

    display:flex;

    gap:40px;
}


.menu-section{

    padding:100px 0;
}

.section-heading{

    text-align:center;

    margin-bottom:40px;
}

.section-heading h2{

    font-size:42px;

    margin-bottom:10px;
}

.category-wrapper{

    display:flex;

    justify-content:center;

    gap:12px;

    flex-wrap:wrap;

    margin-bottom:40px;
}

.category-btn{

    border:none;

    padding:12px 20px;

    border-radius:999px;

    cursor:pointer;

    background:white;

    box-shadow:var(--shadow);

    transition:.3s;
}

.category-btn.active{

    background:var(--primary);

    color:white;
}

.menu-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fill,minmax(320px,1fr));

    gap:25px;
}

.product-card{

    overflow:hidden;

    transition:.3s;
}

.product-card:hover{

    transform:
    translateY(-5px);
}

.product-image img{

    width:100%;

    height:250px;

    object-fit:cover;
}

.product-content{

    padding:20px;
}

.product-content h3{

    margin-bottom:10px;
}

.product-content p{

    color:var(--gray);

    min-height:60px;
}

.product-meta{

    display:flex;

    gap:10px;

    margin:15px 0;

    flex-wrap:wrap;
}

.veg-badge{
    display:inline-flex;
    align-items:center;
    gap:6px;

    padding:8px 14px;

    border-radius:999px;

    font-size:13px;
    font-weight:600;

    color:#fff;
}

.veg{
    background:linear-gradient(
        135deg,
        #22c55e,
        #16a34a
    );
}

.non-veg{
    background:linear-gradient(
        135deg,
        #ef4444,
        #dc2626
    );
}

.stock-badge{
    font-size:14px;
    font-weight:600;
}

.in-stock{
    color:#16a34a;
}

.out-stock{
    color:#dc2626;
}

.product-footer{

    display:flex;

    justify-content:
    space-between;

    align-items:center;

    margin-top:20px;
}

.product-price{

    font-size:22px;

    font-weight:700;

    color:var(--primary);
}


.cart-btn{

    background:#ff6b35;

    color:#fff;

    padding:12px 16px;

    border-radius:699px;

    font-weight:700;
}



.checkout-section{

    padding:80px 0;
}

.checkout-grid{

    display:grid;

    grid-template-columns:
    1.5fr 1fr;

    gap:30px;
}

.checkout-form,
.order-summary{

    background:#fff;

    padding:25px;

    border-radius:20px;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);
}

.checkout-form form{

    display:grid;

    gap:15px;
}

.checkout-form input,
.checkout-form textarea,
.checkout-form select{

    width:100%;

    padding:14px;

    border:1px solid #ddd;

    border-radius:12px;
}

.summary-item{

    display:flex;

    justify-content:
    space-between;

    margin-bottom:15px;
}

.total{

    font-size:20px;

    color:#ff6b35;
}

.qr-box{

    text-align:center;
}

.qr-box img{

    max-width:220px;

    margin:auto;
}

.btn-checkout{

    width:100%;
}


.closed-alert{

    background:#fff1f2;

    border:2px solid #ef4444;

    color:#991b1b;

    padding:18px;

    border-radius:16px;

    margin-bottom:20px;

    text-align:center;
}

.closed-alert strong{

    display:block;

    margin-bottom:8px;

    font-size:18px;
}

.btn-disabled{

    width:100%;

    background:#94a3b8 !important;

    color:#fff !important;

    cursor:not-allowed;

    border:none;
}

.btn-checkout-back{

    display:block;

    width:100%;

    text-align:center;

    margin-top:12px;
}

.closed-popup{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.75);

    backdrop-filter:blur(6px);

    z-index:99999;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:20px;
}

.closed-popup-content{

    background:#fff;

    max-width:450px;

    width:100%;

    padding:35px;

    border-radius:24px;

    text-align:center;

    box-shadow:
    0 20px 60px rgba(0,0,0,.25);
}

.closed-icon{

    font-size:60px;

    margin-bottom:15px;
}

.closed-popup-content h2{

    color:#dc2626;

    margin-bottom:10px;
}

.closed-popup-content p{

    color:#475569;

    margin-bottom:25px;

    line-height:1.6;
}




.btn-out-stock{

    background:#cbd5e1;

    color:#475569;

    border:none;

    cursor:not-allowed;

    opacity:.8;
}


.alert-error{

    background:#fee2e2;
    color:#b91c1c;

    padding:15px;

    border-radius:12px;

    margin-bottom:20px;
}

.alert-success{

    background:#dcfce7;
    color:#166534;

    padding:15px;

    border-radius:12px;

    margin-bottom:20px;
}

.cart-btn{

    display:flex;
}



.floating-cart-side{

    position:fixed;

    top:45%;

    right:15px;

    transform:translateY(-50%);

    width:58px;
    height:58px;

    border-radius:16px;

    background:#fff;

    color:#fff;

    text-decoration:none;

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:9999;

    box-shadow:
    0 8px 25px rgba(0,0,0,.25);

    transition:.3s;
}

.floating-cart-side:hover{

    transform:
    translateY(-50%)
    scale(1.08);
}

.floating-cart-side .cart-icon{

    font-size:24px;
}

.floating-cart-side .cart-count{

    position:absolute;

    top:-8px;

    right:-8px;

    width:24px;
    height:24px;

    border-radius:50%;

    background:#fff;

    color:#e86f33;

    font-size:12px;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

    border:2px solid #e86f33;
}


.logo{

    display:flex;

    align-items:center;

    gap:12px;

    text-decoration:none;
}

.logo-text{

    font-size:28px;

    font-weight:700;

    color:#e86f33;

    line-height:1.1;
}

.logo{

    display:flex;

    align-items:center;

    text-decoration:none;
}

.logo img{

    width:auto !important;

    height:55px !important;

    max-height:55px !important;

    max-width:220px !important;

    object-fit:contain;

    display:block;
}


.summary-left{

    display:flex;

    flex-direction:column;

    gap:8px;
}

.qty-controls{

    display:flex;

    align-items:center;

    gap:10px;

    flex-wrap:wrap;
}

.qty-btn{

    width:32px;
    height:32px;

    display:flex;

    align-items:center;
    justify-content:center;

    background:#e86f33;

    color:#fff;

    border-radius:8px;

    text-decoration:none;

    font-weight:700;
}

.remove-btn{

    color:#dc2626;

    text-decoration:none;

    font-size:14px;

    font-weight:600;
}



.summary-item{

    background:#fafafa;

    border:1px solid #f1f5f9;

    border-radius:14px;

    padding:15px;

    margin-bottom:15px;

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:15px;

    transition:.3s;
}

.summary-item:hover{

    box-shadow:
    0 8px 20px rgba(0,0,0,.06);

    transform:translateY(-2px);
}

