/* Montador de Pizza */
.pizza-builder-container {
  text-align: center;
  margin-top: 40px;
}

.pizza-filters {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.filter-select select {
  padding: 10px 15px;
  border-radius: 10px;
  background-color: #e53935;
  color: black;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.filter-select label {
  font-weight: bold;
  color: black;
  margin-right: 10px;
}

.pizza-circles {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 40px auto;
}

.pizza-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px dashed #a20003;
  background-image: url("../tabua_de_pizza-removebg-preview.png");
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: 0.3s;
}

.pizza-circle.selected {
  border: 3px solid #a20003;
  transform: scale(1.05);
}

.pizza-list {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  justify-content: center;
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.pizza-item {
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
  padding: 12px;
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
}

.pizza-item:hover {
  border-color: #a20003;
  transform: scale(1.05);
}

.pizza-item img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 8px auto;
  display: block;
  border: 2px solid #a20003;
}

.pizza-item h4 {
  margin: 6px 0 4px 0;
  color: #333;
  font-size: 15px;
  font-weight: bold;
}

.pizza-item p {
  color: #a20003;
  font-weight: bold;
  font-size: 14px;
}

.pizza-footer {
  margin-top: 30px;
}

#pizza-preco {
  color: #a20003;
  font-weight: bold;
  font-size: 22px;
}

.pedido-btn {
  background-color: #e53935;
  color: black;
  font-weight: bold;
  border: none;
  padding: 12px 25px;
  border-radius: 10px;
  margin-top: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.pedido-btn:hover {
  background-color: #a20003;
  color: white;
}
