body{
margin:0;
font-family:Arial;
background:#111;
color:#fff;
}

.header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px;
background:#000;
}

.logo{
width:50px;
border-radius:50%;
}

.produtos-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:10px;
padding:10px;
}

.produto-card{
background:#1a1a1a;
padding:10px;
border-radius:10px;
}

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

.preco{
color:#00ff88;
font-weight:bold;
}

.badge{
background:red;
padding:5px;
font-size:10px;
display:inline-block;
}

.carrinho{
position:fixed;
bottom:0;
width:100%;
background:#000;
padding:10px;
}