* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
}

.topo {
    display: flex;
    align-items: center;
    background-color: #ff9800;
    padding: 10px;
}

.logo {
    height: 50px;
    margin-right: 10px;
}

.nome-estabelecimento {
    font-size: 24px;
    color: white;
}

.conteudo {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
}

/* Categorias */
.categorias {
    flex: 1;
    min-width: 120px;
    background: #fff;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.categoria img.img-categoria {
    width: 100%;
    border-radius: 15px;
    border: 3px solid #ffa726;
    transition: transform 0.3s;
}

.categoria img.img-categoria:hover {
    transform: scale(1.05);
}

/* Produtos */
.produtos {
    flex: 3;
    background: #fff;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.card-produto {
    width: 150px;
    background-color: #ffe0b2;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

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

.info-produto {
    padding: 8px;
    background: linear-gradient(45deg, #ffcc80, #ffb74d);
}

.info-produto h2 {
    font-size: 16px;
    color: #333;
}

.info-produto p {
    font-size: 14px;
    font-weight: bold;
    color: #d84315;
}

/* Aguardando */
.sem-produtos {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-aguardando {
    width: 200px;
    opacity: 0.5;
}

/* Responsivo */
@media (max-width: 768px) {
    .conteudo {
        flex-direction: column;
    }
    
    .categorias {
        flex-direction: row;
        overflow-x: auto;
    }
    
    .produtos {
        justify-content: center;
    }
}
