body{
margin:0;
font-family:sans-serif;
background:#f5f5f5;
color:#333;
}

h2{
margin-left:15px;
font-weight:bold;
color:#333;
}

/* Navbar */
.navbar{
display:flex;
justify-content:space-between;
padding:15px 20px;
background:white;
box-shadow:0 2px 5px rgba(0,0,0,0.1);
}

.btn{
background:#111;
color:white;
padding:10px 14px;
text-decoration:none;
border-radius:10px;
font-size:14px;
display:flex;
align-items:center;
gap:5px;
}

.cart-btn{
position:relative;
padding:8px 12px;
border-radius:10px;
}

#cart-count{
position:absolute;
top:-8px;
right:-10px;

background:#e63946;
color:white;

font-size:14px;
font-weight:bold;

padding:4px 8px;
border-radius:20px;

min-width:20px;
text-align:center;
}
/* Hero */
.hero{
padding:60px 20px;
text-align:center;
background:linear-gradient(135deg,#e63946,#ff6b6b);
color:white;
border-bottom-left-radius:30px;
border-bottom-right-radius:30px;
}

/* Menu grid */
.scroll-menu{
display:flex;
overflow-x:auto;
gap:15px;
padding:15px;
scroll-behavior:smooth;
}

.scroll-menu::-webkit-scrollbar{
display:none;
}

#menu{
margin-top:20px;
}

.card{
flex:0 0 160px;
background:white;
border-radius:15px;
padding:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.card img{
width:100%;
height:100px;
object-fit:cover;
border-radius:10px;
}

.card button{
width:100%;
margin-top:8px;
padding:8px;
border:none;
background:#2a9d8f;
color:white;
border-radius:6px;
}

.order{
display:inline-block;
margin-top:10px;
background:#2a9d8f;
color:white;
padding:6px 12px;
border-radius:6px;
text-decoration:none;
}

/* About */
.about{
padding:30px 20px;
text-align:center;
}

/* Footer */
footer{
text-align:center;
padding:20px;
background:#ddd;
}
