body {
    margin:0;
    font-family: Arial;
    background:#1a0006;
    color:#fff;
}

/* TOPO */
header {
    display:flex;
    justify-content:space-between;
    padding:20px;
    border-bottom:1px solid rgba(255,255,255,0.1);
}

/* HERO */
.hero {
    text-align:center;
    padding:50px 20px;
}

.hero h1 {
    font-size:40px;
    margin:10px 0;
}

.busca {
    margin-top:20px;
}

.busca input {
    width:300px;
    padding:12px;
    border-radius:30px;
    border:none;
    background:#2a0a0f;
    color:#fff;
}

/* CATEGORIAS */
.categorias {
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:20px;
}

.categorias button {
    background:#2a0a0f;
    color:#fff;
    border:none;
    padding:10px 20px;
    border-radius:20px;
    cursor:pointer;
}

/* PRODUTOS */
#produtos {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    padding:40px;
}

.card {
    background:#2a0a0f;
    border-radius:15px;
    overflow:hidden;
    position:relative;
}

.card img {
    width:100%;
    height:200px;
    object-fit:cover;
}

.card .info {
    padding:15px;
}

.card h3 {
    margin:5px 0;
}

.card p {
    color:#ff7b9c;
    font-weight:bold;
}

/* TAG OFERTA */
.oferta {
    position:absolute;
    top:10px;
    left:10px;
    background:#ff4d6d;
    padding:5px 10px;
    border-radius:10px;
    font-size:12px;
}

/* CARRINHO */
#carrinho {
    position:fixed;
    right:10px;
    bottom:10px;
    background:#2a0a0f;
    padding:15px;
    border-radius:10px;
}