* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #F8FFF2;
}

.container {
  max-width: 420px;
  margin: auto;
  padding: 20px;
}

/* Header */
.top-bar {
  display: flex;
  align-items: center;
}

.top-bar a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.back-btn {
  width: 36px;
  height: 36px;
  background: #4A8A4D;
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
}

.back-text {
  margin-left: 10px;
  color: #374837;
}

/* Main Product Icon */
.main-icon {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.main-icon img {
  width: 90px;
}

/* Sections */
.section {
  margin: 20px 0;
  text-align: left;   
}

.label-title {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #3D3D3D;
  margin-bottom: 12px;
}

.label-title span {
  font-weight: 400;
  font-size: 10px;
  color: #8FAF90;
}

/* Food Cards */
.food-options {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.food-card {
  width: 120px;
  background: #FFF;
  padding: 14px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0px 3px 8px rgba(0,0,0,0.05);
  cursor: pointer;
}

.food-card.active {
  border: 2px solid #4A8A4D;
}

.food-card img {
  height: 50px;
  margin-bottom: 6px;
}

/* Protein item wrapper */
.protein-item {
  display: flex;
  flex-direction: column;
  align-items: center; /* centers card + text vertically */
  gap: 6px; /* space between card and label */
}

/* Text below food cards */
.food-title {
  font-size: 14px;
  color: #3C3C3C;
  font-weight: 500;
}

/* Chips / Tags */
.tag-group {
  display: flex;
  gap: 10px;
}

.tag {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1.5px solid #DADADA;
  font-size: 14px;
  color: #757575;
  cursor: pointer;
}

.tag.selected {
  background: #4A8A4D;
  color: white;
  border-color: #4A8A4D;
}

/* Circles Selection */
.circle-group {
  display: flex;
  gap: 15px;
}

.circle-item {
  text-align: center;
  cursor: pointer;
}

.circle-item p {
  font-size: 12px;
  margin-top: 4px;
  color: #707070;
}

.circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.red { background: #FBC5BE; }
.yellow { background: #FFECA7; }
.orange { background: #FFB3A2; }
.green { background: #C5EBA7; }
.white { background: #FFF; border: 1.5px solid #E2E2E2; }
.lightgreen { background: #DFF8C1; }

/* Textarea */
textarea {
  width: 100%;
  height: 90px;
  border: 1px solid #E6E6E6;
  border-radius: 10px;
  padding: 10px;
  background: #FDFDFD;
  font-size: 14px;
}

/* Button 
.btn-primary {
  height: 50px;
  background: #4A8A4D;
  border: none;
  border-radius: 10px;
  color: #FFFFFF;
  font-weight: 600;
  margin-top: 10px;
  cursor: pointer;
}
*/
.btn-primary {
	width: 100%;
	height: 50px;
	background: #4A8A4D;
	color: #fff;
	border: none;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	text-decoration: none;
	display: inline-block;
}

.btn-primary:hover {
	background: #3b6f3f; /* slightly darker green on hover */
	transform: translateY(-2px); /* lift effect */
	box-shadow: 0 4px 10px rgba(74, 138, 77, 0.4); /* soft shadow */
}

.w-100 {
  width: 100%;
}