*,
*::before,
*::after{
    box-sizing:border-box;
}
body{
    font-family:'Poppins',sans-serif;
    background:#f5f5f7;
    color:#222;
}
.nav-blur{
    background:rgba(15,15,20,0.9);
    backdrop-filter:blur(12px);
}
.hero-section{
    min-height:70vh;
    display:flex;
    align-items:center;
    background:linear-gradient(135deg,#1f2933,#111827);
    color:#fff;
    position:relative;
    overflow:hidden;
}
.hero-section::after{
    content:"";
    position:absolute;
    top:-40%;
    right:-10%;
    width:420px;
    height:420px;
    background:radial-gradient(circle at center,rgba(255,255,255,0.12),transparent 60%);
    opacity:0.6;
}
.hero-content{
    position:relative;
    z-index:2;
}
.btn-pill{
    border-radius:999px;
}
.menu-card{
    border:none;
    border-radius:18px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:all .3s ease;
}
.menu-card:hover{
    transform:translateY(-4px) scale(1.01);
    box-shadow:0 18px 40px rgba(0,0,0,0.18);
}
.menu-card img{
    height:200px;
    object-fit:cover;
}
.cart-count-badge{
    position:absolute;
    top:2px;
    right:4px;
    font-size:11px;
}
.auth-card{
    max-width:480px;
    margin:40px auto;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
    border:none;
}
.table thead th{
    background:#111827;
    color:#f9fafb;
}
.admin-sidebar{
    min-height:100vh;
    background:#111827;
    color:#e5e7eb;
}
.admin-sidebar a{
    color:#9ca3af;
    text-decoration:none;
}
.admin-sidebar a.active,
.admin-sidebar a:hover{
    color:#fff;
}
.badge-status{
    border-radius:999px;
    padding:.25rem .7rem;
}
