* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #0f0f0f;
  color: #fff;
}

/* HERO (TOPO) */
.hero {
  position: relative;
  height: 140px;
  background: #111;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #000, transparent);
}

.hero-conteudo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
  gap: 10px;
  z-index: 1;
}

.logo {
  width: 120px;
  height: auto;
}

.hero-conteudo p {
  margin: 0;
  font-size: 14px;
  color: #ccc;
}

/* CONTAINER */
.container {
  padding: 15px;
}

/* CATEGORIAS */
.categorias {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  overflow-x: auto;
}

.botao-categoria {
  background: #1f1f1f;
  border: none;
  color: #fff;
  padding: 8px 12px;
  border-radius: 20px;
  cursor: pointer;
}

.botao-categoria.ativo {
  background: #ff3c00;
}

/* PRODUTOS */
.grid-produtos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.card {
  background: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.card-conteudo {
  padding: 10px;
}

.card-categoria {
  font-size: 12px;
  color: #aaa;
}

.card h3 {
  font-size: 16px;
  margin: 5px 0;
}

.card p {
  font-size: 13px;
  color: #bbb;
}

.card-rodape {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.preco {
  font-weight: bold;
}

.botao {
  background: #ff3c00;
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
}

/* BADGES */
.badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 11px;
  padding: 4px 6px;
  border-radius: 5px;
}

.badge.mais {
  background: #00c853;
}

.badge.promo {
  background: #ff3c00;
}

/* CARRINHO */
.carrinho-fixo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ff3c00;
  border: none;
  padding: 12px;
  border-radius: 50%;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
}

.painel-carrinho {
  position: fixed;
  right: -100%;
  top: 0;
  width: 100%;
  max-width: 350px;
  height: 100%;
  background: #111;
  transition: 0.3s;
  z-index: 999;
}

.painel-carrinho.aberto {
  right: 0;
}

.topo-carrinho {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid #333;
}

.item-carrinho {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}

.item-acoes button {
  margin: 0 3px;
  padding: 4px 8px;
  border: none;
  cursor: pointer;
}

.btn-remover {
  color: red;
}

/* TOAST */
.toast {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: #333;
  padding: 10px;
  border-radius: 5px;
  opacity: 0;
  transition: 0.3s;
}

.toast.ativo {
  opacity: 1;
}