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

.topbar{
background:#131921;
padding:15px;
display:flex;
align-items:center;
gap:20px;
color:white;
}

.logo{
font-weight:bold;
font-size:20px;
}

.search-box input{
padding:8px;
width:300px;
border-radius:4px;
border:none;
}

.whatsapp{
background:#25D366;
padding:8px 14px;
color:white;
text-decoration:none;
border-radius:6px;
}

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

.card{
background:white;
padding:15px;
border-radius:8px;
box-shadow:0 3px 8px rgba(0,0,0,0.1);
text-align:center;
}

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

.preco{
font-size:18px;
font-weight:bold;
color:#B12704;
}

button{
background:#FFA41C;
border:none;
padding:10px;
width:100%;
border-radius:5px;
cursor:pointer;
}

button:hover{
background:#F08804;
}
