.bfcp-wrapper {
  max-width: 700px;
  margin: 40px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 25px;
  font-family: "Poppins", sans-serif;
}

.bfcp-wrapper h2 {
  text-align: center;
  color: #222;
  font-size: 26px;
  margin-bottom: 25px;
}

.bfcp-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bfcp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  align-items: center;
}

.bfcp-row label {
  font-weight: 600;
  color: #333;
  display: block;
}

.bfcp-row select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  background: #fafafa;
}

.bfcp-allergens,
#bfcp_ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
}

#bfcp_ingredients label,
.bfcp-allergens label {
  background: #f6f6f6;
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  cursor: pointer;
}

.bfcp-center {
  text-align: center;
}

#bfcp_calculate {
  background: #6759ff;
  color: #fff;
  font-size: 16px;
  padding: 12px 30px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#bfcp_calculate:hover {
  background: #4f43e2;
}

.bfcp-results {
  margin-top: 25px;
  background: #f8f9fb;
  padding: 20px;
  border-radius: 12px;
  display: none;
}

.bfcp-results h3 {
  color: #333;
  margin-bottom: 10px;
}
