body{
font-family:Arial;
background:#f4f4f4;
margin:0;
}

.title{
text-align:center;
padding:20px;
}

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

.restaurant-card{
background:white;
padding:25px;
border-radius:12px;
text-align:center;
box-shadow:0 3px 10px rgba(0,0,0,.1);
text-decoration:none;
color:black;
}

.menu{
padding:20px;
display:flex;
flex-direction:column;
gap:15px;
}

.product-card{
display:flex;
align-items:center;
justify-content:space-between;
background:white;
padding:15px;
border-radius:12px;
box-shadow:0 3px 10px rgba(0,0,0,.1);
}

.product-card img{
width:90px;
border-radius:10px;
}

.product-card button{
width:35px;
height:35px;
border:none;
border-radius:50%;
background:#ff6b00;
color:white;
font-size:18px;
cursor:pointer;
}

.cart-bar{
position:fixed;
bottom:20px;
left:50%;
transform:translateX(-50%);
background:#65b78f;
color:white;
padding:15px 30px;
border-radius:12px;
font-weight:bold;
cursor:pointer;
}
