.vfc-food-menu{
max-width:1200px;
margin:auto;
font-family:system-ui;
}

.vfc-food-tabs{
display:flex;
gap:12px;
justify-content:center;
margin-bottom:40px;
}

.vfc-food-tabs button{
padding:10px 20px;
border:none;
background:#eee;
border-radius:30px;
cursor:pointer;
font-weight:600;
transition:0.3s;
}

.vfc-food-tabs button.active{
background:#e50019;
color:white;
box-shadow:0 5px 20px rgba(0,0,0,0.2);
}

.vfc-food-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.vfc-food-card{
background:white;
border-radius:18px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.35s;
}

.vfc-food-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.vfc-food-img{
height:220px;
overflow:hidden;
}

.vfc-food-img img{
width:100%;
height:100%;
object-fit:cover;
transition:0.4s;
}

.vfc-food-card:hover img{
transform:scale(1.06);
}

.vfc-food-content{
padding:20px;
}

.vfc-food-title{
font-size:20px;
font-weight:700;
margin-bottom:6px;
}

.vfc-food-desc{
font-size:14px;
color:#777;
margin-bottom:10px;
}

.vfc-macros{
font-size:13px;
color:#444;
margin-bottom:15px;
}

.vfc-price{
display:flex;
align-items:center;
gap:10px;
}

.vfc-original{
text-decoration:line-through;
color:#999;
}

.vfc-discount{
font-weight:700;
color:#e50019;
font-size:18px;
}

.vfc-food-card.hide{
display:none;
}