/* ========== BOUTONS SUPPLÉMENTS PIZZA ========== */
.btn-supp-pizza {
  width: 95%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 16px;     /* hauteur réduite */
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  background: #f9f9f9;    /* clair simple */
  border: 1px solid #ddd;
  color: #333;
  transition: all 0.3s ease;
}

.btn-supp-pizza i {
  font-size: 1.4rem;
}

/* Couleurs spécifiques */
#btn-supp-ingredient i { color: #ff9800; } /* orange fromage */
#btn-supp-viande i     { color: #d32f2f; } /* rouge viande */

/* Hover moderne */
.btn-supp-pizza:hover {
  background: #ff6b35;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}
.btn-supp-pizza:hover i {
  color: #fff;
}
