.immunity-booster-section { 
  margin: 60px auto;
  max-width: 1200px;
}

/* -------- Header -------- */
.immunity-booster-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.immunity-booster-title {
  font-size: 24px;
  font-weight: 700;
}

.immunity-booster-subtitle {
  font-size: 18px;
  color: #6b6b6b;
}

.immunity-booster-toggle {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

/* -------- Cards Layout -------- */
.immunity-booster-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 50px;
  align-items: stretch; 
}

.immunity-booster-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s;
}

.immunity-booster-card:hover {
  transform: translateY(-5px);
}

/* -------- Card Content -------- */
.immunity-booster-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.immunity-booster-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 10px 15px;
}

.immunity-booster-icons-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.fav-icon {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.immunity-booster-name {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  margin: 4px 0 2px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.immunity-booster-price {
  font-size: 16px;
  font-weight: 500;
  margin: 2px 0 2px 0;
}

.immunity-booster-desc {
  color: #666;
  font-size: 13px;
  margin: 2px 0 4px 0;
  max-height: 36px; 
  overflow: hidden;
  text-overflow: ellipsis;
}

/* -------- Nutrition -------- */
.immunity-booster-nutrition {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 4px;
}

.immunity-booster-nutrition .nutri-labels,
.immunity-booster-nutrition .nutri-values {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.immunity-booster-nutrition .nutri-labels {
  color: #7c7c7c;
}

.immunity-booster-nutrition .nutri-values {
  font-weight: 600;
  color: #3d8b40;
}

.menucaro-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto; 
}

.custom {
  color: #9a9a9a;
  font-size: 12px;
}

.add-btn {
  background: #3c8b90;
  border: none;
  color: white;
  padding: 6px 20px;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.add-btn:hover {
  background: #33767b;
}

/* -------- Medium Screens -------- */
@media (max-width: 1250px) {
  .immunity-booster-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin-left: 40px;
    margin-right: 40px;
  }
  .immunity-booster-header-1 {
    margin-left: 40px;
  }
}

/* -------- Mobile View -------- */
@media (max-width: 760px) {
  .immunity-booster-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0 14px;
  }

  .immunity-booster-card {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 10px;
    position: relative;
    overflow: visible;
  }

  .immunity-booster-img {
    width: 45%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    order: 2;
    flex-shrink: 0;
  }

  .immunity-booster-title {
    font-size: 18px;
  }

  .immunity-booster-subtitle {
    font-size: 15px;
  }

  .immunity-booster-info {
    flex: 1;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    order: 1;
  }

  .immunity-booster-name {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin-bottom: 3px;
  }

  .immunity-booster-price {
    font-size: 15px;
    font-weight: 500;
    color: #3d8b40;
    margin-bottom: 4px;
  }

  .immunity-booster-desc {
    font-size: 12px;
    color: #777;
    margin-bottom: 6px;
    line-height: 1.3;
    max-height: 32px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .immunity-booster-nutrition {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 6px;
  }

  .immunity-booster-nutrition .nutri-labels,
  .immunity-booster-nutrition .nutri-values {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
  }

  .immunity-booster-nutrition .nutri-labels {
    color: #777;
  }

  .immunity-booster-nutrition .nutri-values {
    font-weight: 600;
    color: #3d8b40;
  }

  .custom {
    font-size: 11px;
    color: #999;
  }

  .add-btn {
    background: #3c8b90;
    border: none;
    color: #fff;
    padding: 4px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
  }

  .add-btn:hover {
    background: #33767b;
  }

  .immunity-booster-icons-row {
    display: none;
  }
}

/* -------- Toggle button reset -------- */
.immunity-booster-header button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none;
  font-size: 22px;
  color: inherit;
}

/* -------- Small Screens (393px and below) -------- */
@media (max-width: 393px) {
  .immunity-booster-card {
    padding: 0px;
    gap: 6px;
  }

  .immunity-booster-img {
    width: 48%;         
  }

  .immunity-booster-info {
    padding-right: 6px;
  }

  .immunity-booster-name {
    font-size: 14px;
  }

  .immunity-booster-price {
    font-size: 14px;
  }

  .immunity-booster-desc {
    font-size: 10px;
  }

  .immunity-booster-nutrition {
    gap: 3px;
    margin-bottom: 4px;
  }

  .immunity-booster-nutrition .nutri-labels,
  .immunity-booster-nutrition .nutri-values {
    font-size: 9px;
  }

  .custom {
    font-size: 6px;
  }

  .add-btn {
    font-size: 12px;
    padding: 3px 12px;
  }
}
