
/* General Sattvic Styling */
body.sattvic-page {
    font-family: 'Inter', sans-serif;
    background-color: #fdf6ee;
    color: #2f3e2f;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    background: #fffdf9;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    width: 90%;
    max-width: 400px;
}

/* Branding & Logo */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.logo-icon {
    font-size: 28px;
    margin-right: 10px;
}
.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: #2f3e2f;
}

/* Typography */
.title {
    font-size: 22px;
    font-weight: bold;
    color: #2f3e2f;
    margin-bottom: 10px;
}
.subtitle {
    font-size: 15px;
    color: #6b6b6b;
    margin-bottom: 20px;
}

/* Mood/Ingredient Buttons */
.mood-buttons, .allergy-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.chip {
    padding: 10px 16px;
    background-color: #f1e7db;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.chip.selected, .chip:active {
    background-color: #cce3cc;
    color: #2f3e2f;
}

/* Text Field */
.text-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
}

/* Continue Button */
.continue-btn {
    padding: 12px 24px;
    background-color: #405e3c;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
}
.continue-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* === Page 4 cards === */
.meal-card {
  background: #fffdf9;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  padding: 18px;
  margin: 14px 0;
  text-align: left;
}
.meal-card h3 { margin: 0 0 6px; font-size: 18px; color: #2f3e2f; }
.meal-card .meal-name { font-weight: 600; }
.meal-card .meal-desc { color: #545454; margin: 6px 0 12px; }
.meal-actions { display: flex; gap: 10px; }
.meal-actions button {
  padding: 10px 12px;
  background: #e9efe6;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}
.meal-actions button:hover { background: #dbe7d7; }

