body {
    font-family: Arial, sans-serif;
    line-height: 1.4;
    background: #fff7f2;
    color: #223344;
  }

header {
  padding: 20px;
  text-align: right;
}

.contact-link {
  text-decoration: none;
  color: #223344;
  font-weight: bold;
  margin-right: 40px;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
}

.hero-text h1 {
  font-size: 2.8em;
  margin: 0 0 10px;
  color: #2a3f4d;
}

.hero-text p {
  font-size: 1.25em;
  margin-bottom: 30px;
  color: #334f5c;
}

.btn-primary {
  background: #ffd8c2;
  color: #223344;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: #ffc9ab;
}

.hero-image img {
  margin-top: 40px;
  max-width: 400px;
  width: 100%;
  height: auto;
}
.testimonials {
    background: #eafcf6;
    padding: 60px 20px;
    text-align: center;
  }
  
  .testimonials h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #223344;
  }
  
  .testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .testimonial {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }
  
  .testimonial p {
    font-style: italic;
    color: #333;
    margin-bottom: 10px;
  }
  
  .testimonial strong {
    font-weight: bold;
    color: #444;
  }
  
  .signup {
    padding: 60px 20px;
    text-align: center;
    background: #fff7f2;
  }
  
  .signup h2 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #223344;
  }
  
  .signup p {
    margin-bottom: 25px;
    font-size: 1.1em;
    color: #334f5c;
  }
  
  .signup form {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .signup input[type="email"] {
    padding: 12px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 250px;
  }
  
  .signup button {
    background: #ffd8c2;
    color: #223344;
    border: none;
    padding: 12px 24px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
  }
  
  .signup button:hover {
    background: #ffc9ab;
  }

  .coming-soon {
    padding: 80px 20px;
    text-align: center;
    background: #f9f9ff;
    color: #223344;
  }
  
  .coming-soon h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #2a3f4d;
  }
  
  .coming-soon p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #334f5c;
  }
  
  .coming-soon .btn-primary {
    padding: 14px 28px;
    background: #ffd8c2;
    color: #223344;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
  }
/* Reset & basics */
* { box-sizing: border-box; margin:0; padding:0; }

/* HEADER */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.site-header .logo { font-size: 1.5rem; }
.site-header nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #223344;
  font-weight: bold;
}

/* LAYOUT */
.builder-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px;
}
.builder-form {
  flex: 1 1 400px;
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.summary {
  flex: 0 0 280px;
  background: #e3e9f5;
  padding: 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  position: sticky;
  top: 20px;
  align-self: flex-start;
}
.summary .price { font-size: 1.2rem; margin-top:10px; }

/* STEPS */
.builder-form h2 { margin-bottom: 20px; }
.step {
  margin-bottom: 20px;
}
.step h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #334f5c;
}
.step label {
  display: inline-block;
  margin-right: 15px;
  font-size: 0.95rem;
}
.step input[type="range"] {
  display: block;
  width: 100%;
  margin-top: 5px;
}

/* BUTTONS */
.btn-checkout {
  display: block;
  width: 100%;
  padding: 12px;
  background: #ffd8c2;
  color: #223344;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}
.btn-checkout:hover {
  background: #ffc9ab;
}

/* DISCLAIMER */
.disclaimer {
  margin-top: 10px;
  font-size: 0.8rem;
  color: #777;
  text-align: center;
}

.ingredient-table {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
    gap: 10px;
    margin-top: 10px;
  }
  
  .ingredient-row {
    display: contents;
  }
  
  .ingredient-row > div {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    font-size: 0.95rem;
  }
  
  .ingredient-row.header > div {
    font-weight: bold;
    background: #f3f3f3;
    border-top: 1px solid #ddd;
    border-bottom: 2px solid #ccc;
  }

  .button-group {
    display: flex;
    gap: 12px;
    margin: 10px 0 20px;
    flex-wrap: wrap;
  }
  
  .radio-btn {
    flex: 1;
    max-width: 200px;
    text-align: center;
    padding: 10px 12px;
    border: 2px solid #ccc;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1rem;
    background-color: #f9f9f9;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    position: relative;
  }
  
  .radio-btn input[type="radio"] {
    display: none;
  }
  
  .radio-btn input[type="radio"]:checked + label,
  .radio-btn:has(input[type="radio"]:checked) {
    background-color: #ffd8c2;
    border-color: #223344;
    color: #223344;
  }

  .radio-btn.selected {
    background-color: #ffd8c2;
    border-color: #223344;
    color: #223344;
  }
  
/* ───── Responsive Styles for Mobile ───── */
@media (max-width: 768px) {
    .builder-container {
      flex-direction: column;
      padding: 20px;
    }
  
    .builder-form {
      padding: 20px;
    }
  
    .summary {
      position: static;
      width: 100%;
      margin-top: 20px;
    }
  
    .button-group {
      flex-direction: column;
      gap: 8px;
    }
  
    .radio-btn {
      padding: 12px;
      font-size: 1rem;
    }
  
    .ingredient-table {
      grid-template-columns: 1fr 1fr;
    }
  
    .ingredient-row.header {
      display: none; /* hide headers if they crowd things */
    }
  
    .ingredient-row > div:nth-child(1)::before {
      content: "Ingredient: ";
      font-weight: bold;
    }
    .ingredient-row > div:nth-child(2)::before {
      content: "Benefit: ";
      font-weight: bold;
    }
    .ingredient-row > div:nth-child(3)::before {
      content: "Dose: ";
      font-weight: bold;
    }
  
    header, .site-header {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .site-header nav {
      margin-top: 10px;
    }
  }
  .ingredient-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .ingredient-card strong {
    color: #223344;
  }
  
  .ingredient-card input[type="range"] {
    width: 100%;
    margin-top: 6px;
  }

  @media (max-width: 768px) {
    .ingredient-card {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
  
    .ingredient-name, .ingredient-benefit, .ingredient-dose {
      width: 100%;
    }
  }   

  .ingredient-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .ingredient-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
    font-size: 0.95rem;
  }
  
  .ingredient-name {
    flex: 1;
    font-weight: bold;
    color: #223344;
  }
  
  .ingredient-benefit {
    flex: 2;
    color: #334;
    font-style: italic;
  }
  
  .ingredient-dose {
    flex: 3;
  }
  
  .ingredient-dose input[type="range"] {
    width: 100%;
    margin-top: 4px;
  }
  
  .modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  
  .modal-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
  }
  
  .modal-box h2 {
    margin-bottom: 10px;
    font-size: 1.3rem;
  }
  
  .modal-box p {
    margin-bottom: 20px;
    font-size: 1rem;
  }
  
  .modal-box input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 12px;
    font-size: 1rem;
  }
  
  .modal-box button {
    background: #ffd8c2;
    color: #223344;
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
  
  .modal-box .modal-close {
    background: transparent;
    color: #666;
    margin-top: 10px;
    font-size: 0.9rem;
    text-decoration: underline;
  }
  