/* ═══════════════════════════════════════════════════════
   iCookMagic — Magic Meal Planner
   shared.css — used by every step page
   Palette: 50% white · 30% ink/black · 10% baby pink · 10% magenta accent
═══════════════════════════════════════════════════════ */

:root {
  --magenta: #FF3D7F;
  --magenta-dk: #D9266A;
  --baby: #FFC6D9;
  --baby-dk: #FFA8C4;
  --baby-lt: #FFF0F6;
  --ink: #1A1A1A;
  --ink-soft: #3A3A3A;
  --muted: #6B6B6B;
  --white: #FFFFFF;
  --line: #EAEAEA;
  --bg: #FAFAFA;
  --green: #16A34A;
  --amber: #F59E0B;
  --ff-head: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--white);
  color: var(--ink);
  line-height: 1.55;
  font-weight: 400;
  min-height: 100vh;
}

/* ── SITE HEADER — black dominant ── */
.site-header {
  background: #1A1A1A;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  height: 54px;
  position: sticky;
  top: 0;
  z-index: 300;
}
.site-header .logo {
  font-family: var(--ff-head);
  font-size: 20px;
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  flex-shrink: 0;
}
.site-header .logo span { color: var(--baby); font-style: italic; }
.site-header .h-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.site-header .h-nav a {
  font-size: 12px; color: rgba(255,255,255,.8); padding: 6px 10px;
  border-radius: 6px; text-decoration: none; font-weight: 500; transition: .15s;
}
.site-header .h-nav a:hover { background: rgba(255,255,255,.1); color: var(--white); }
.site-header .h-nav a.active { background: rgba(255,255,255,.14); font-weight: 700; color: var(--white); }
.site-header .try-btn {
  border: 1.5px solid rgba(255,255,255,.4); border-radius: 100px;
  padding: 5px 12px; font-size: 11.5px; font-weight: 700; margin-left: 4px;
  color: var(--white); text-decoration: none; transition: .15s;
}
.site-header .try-btn:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.site-header .cart-btn {
  background: var(--magenta); color: var(--white);
  border-radius: 100px; padding: 5px 14px; font-size: 11.5px;
  font-weight: 700; margin-left: 4px; text-decoration: none; transition: .15s;
}
.site-header .cart-btn:hover { background: var(--magenta-dk); }

/* ── PROGRESS STEPPER ── */
.stepper-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 0 24px;
  overflow-x: auto;
  scrollbar-width: none;
  position: sticky;
  top: 54px;
  z-index: 200;
}
.stepper-bar::-webkit-scrollbar { display: none; }
.stepper-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  min-width: 900px;
}
.step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 4px;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  transition: .15s;
}
.step-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--line);
  transition: .3s;
}
.step-item.done::after { background: var(--ink-soft); }
.step-item.active::after { background: var(--magenta); }
.step-item:hover { background: var(--baby-lt); }

.step-dot {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--line); color: var(--muted);
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px; flex-shrink: 0; transition: .2s;
}
.step-item.done .step-dot { background: var(--ink-soft); color: var(--white); }
.step-item.active .step-dot { background: var(--magenta); color: var(--white); box-shadow: 0 0 0 4px rgba(255,61,127,.15); }
.step-item.done .step-dot::after { content: '✓'; }

.step-label {
  font-size: 10px; font-weight: 600; color: var(--muted);
  white-space: nowrap; letter-spacing: .02em;
}
.step-item.active .step-label { color: var(--magenta); font-weight: 700; }
.step-item.done .step-label { color: var(--ink-soft); }

/* ── PROFILE COMPLETION BAR ── */
.profile-bar {
  background: #F5F5F5;
  border-bottom: 1px solid var(--line);
  padding: 8px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.profile-bar-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 14px; width: 100%; }
.pb-label { font-size: 11.5px; font-weight: 700; color: var(--ink-soft); white-space: nowrap; }
.pb-track { flex: 1; height: 6px; background: var(--line); border-radius: 3px; overflow: hidden; }
.pb-fill { height: 100%; background: linear-gradient(to right, var(--ink-soft), var(--magenta)); border-radius: 3px; transition: width .6s; }
.pb-pct { font-family: var(--ff-head); font-style: italic; font-size: 14px; font-weight: 700; color: var(--magenta-dk); white-space: nowrap; }
.pb-actions { display: flex; gap: 8px; margin-left: auto; }
.pb-action-btn {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; padding: 5px 12px;
  border-radius: 100px; cursor: pointer; transition: .15s;
  border: 1.5px solid var(--line); background: var(--white);
  color: var(--muted); text-decoration: none;
}
.pb-action-btn:hover { border-color: var(--ink); color: var(--ink); background: var(--line); }
.pb-action-btn.primary { background: var(--ink); color: var(--white); border-color: var(--ink); }
.pb-action-btn.primary:hover { background: var(--magenta); border-color: var(--magenta); }

/* ── PAGE CONTENT ── */
.page-content { max-width: 1100px; margin: 0 auto; padding: 28px 24px 60px; }

/* ── PAGE TITLE ── */
.page-title {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 24px; gap: 16px; flex-wrap: wrap;
}
.pt-left {}
.pt-step { font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.pt-h1 { font-family: var(--ff-head); font-size: clamp(22px, 3vw, 34px); font-weight: 600; color: var(--ink); line-height: 1.1; }
.pt-h1 em { font-style: italic; color: var(--magenta-dk); }
.pt-sub { font-size: 13px; color: var(--muted); margin-top: 5px; }
.pt-right { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  transition: .2s;
}
.card:hover { border-color: var(--ink-soft); }
.card.selected { border-color: var(--ink); background: #F5F5F5; }
.card-title {
  font-family: var(--ff-head); font-size: 16px; font-weight: 600;
  color: var(--ink); margin-bottom: 4px;
}
.card-title em { font-style: italic; color: var(--magenta-dk); }

/* ── FORM ELEMENTS ── */
.f-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.f-label {
  font-size: 11.5px; font-weight: 700; color: var(--ink-soft);
  letter-spacing: .05em; text-transform: uppercase;
  display: flex; align-items: center; gap: 6px;
}
.f-label .req { color: var(--magenta); }
.f-label .opt { font-size: 10px; color: var(--muted); font-weight: 400; text-transform: none; letter-spacing: 0; }

.f-input, .f-select, .f-textarea {
  padding: 9px 12px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-family: var(--ff-body);
  font-size: 13.5px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: .15s;
  width: 100%;
}
.f-input:focus, .f-select:focus, .f-textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(26,26,26,.08);
}
.f-select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6'><path d='M1 1L5 5L9 1' stroke='%231A1A1A' stroke-width='1.5' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
  cursor: pointer;
}
.f-textarea { resize: vertical; min-height: 80px; }

/* ── PILL TOGGLES ── */
.pills { display: flex; flex-wrap: wrap; gap: 7px; }
.pill {
  border: 1.5px solid var(--line);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: .15s;
  background: var(--white);
  white-space: nowrap;
  user-select: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.pill:hover { border-color: var(--ink); color: var(--ink); }
.pill.on {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
}
.pill.sm { font-size: 11.5px; padding: 5px 11px; }
.pill.xs { font-size: 11px; padding: 4px 9px; }

/* Frequency tabs */
.freq-tabs {
  display: flex;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
}
.freq-tab {
  padding: 7px 16px; font-size: 12.5px; font-weight: 500;
  color: var(--muted); cursor: pointer; background: var(--white);
  border-right: 1px solid var(--line); transition: .15s; white-space: nowrap;
}
.freq-tab:last-child { border-right: none; }
.freq-tab.on { background: var(--ink); color: var(--white); font-weight: 700; }
.freq-tab:hover:not(.on) { background: #F5F5F5; color: var(--ink); }

/* Number stepper */
.num-stepper {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--line); border-radius: 8px; overflow: hidden;
}
.ns-btn {
  width: 32px; height: 32px; border: none; background: var(--white);
  font-size: 18px; cursor: pointer; color: var(--muted); transition: .15s;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ns-btn:hover { background: var(--ink); color: var(--white); }
.ns-val {
  min-width: 40px; text-align: center; font-size: 14px; font-weight: 700;
  color: var(--ink); padding: 0 6px;
  border-left: 1px solid var(--line); border-right: 1px solid var(--line);
}

/* ── WHO CARDS ── */
.who-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.who-card {
  border: 1.5px solid var(--line); border-radius: 12px;
  padding: 18px 12px; text-align: center; cursor: pointer;
  transition: .2s; background: var(--white);
}
.who-card:hover { border-color: var(--ink-soft); transform: translateY(-2px); }
.who-card.selected { border-color: var(--ink); background: #F5F5F5; box-shadow: 0 0 0 3px rgba(26,26,26,.08); }
.who-card .wc-ico { font-size: 32px; display: block; margin-bottom: 8px; }
.who-card .wc-name { font-family: var(--ff-head); font-size: 16px; font-weight: 600; color: var(--ink); }
.who-card.selected .wc-name { color: var(--ink); }
.who-card .wc-desc { font-size: 11px; color: var(--muted); margin-top: 3px; }

/* ── MEMBER ROW ── */
.member-card {
  border: 1.5px solid var(--line); border-radius: 10px;
  overflow: hidden; background: var(--white); transition: .2s;
}
.member-card.primary { border-color: var(--ink); }
.member-card-head {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.member-card.primary .member-card-head { background: #F5F5F5; }
.mc-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--line); display: flex; align-items: center;
  justify-content: center; font-size: 18px; flex-shrink: 0;
}
.mc-name-block { flex: 1; }
.mc-name { font-family: var(--ff-head); font-size: 15px; font-weight: 600; color: var(--ink); }
.mc-badge {
  font-size: 9.5px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; background: var(--ink); color: var(--white);
  padding: 2px 7px; border-radius: 100px; margin-left: 6px;
}
.mc-relation { font-size: 11px; color: var(--muted); margin-top: 1px; }
.mc-remove {
  background: none; border: none; cursor: pointer; color: var(--muted);
  font-size: 18px; padding: 4px 8px; border-radius: 6px; transition: .15s;
}
.mc-remove:hover { color: #DC2626; background: #FEE2E2; }
.member-card-body { padding: 14px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }

/* ── SECTION DIVIDER ── */
.section-div {
  display: flex; align-items: center; gap: 12px;
  margin: 20px 0 14px; font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}
.section-div::before, .section-div::after {
  content: ''; flex: 1; height: 1px; background: var(--line);
}

/* ── ZOMATO-STYLE TAGS ── */
.tag-group { margin-bottom: 18px; }
.tag-group-label {
  font-size: 12px; font-weight: 700; color: var(--ink-soft);
  margin-bottom: 9px; display: flex; align-items: center; gap: 8px;
}
.tag-group-label .tlabel-ico { font-size: 14px; }
.tag-group-label .tlabel-count { font-size: 10px; color: var(--muted); font-weight: 400; }

.tags { display: flex; flex-wrap: wrap; gap: 7px; }
.tag {
  border: 1.5px solid var(--line); border-radius: 100px;
  padding: 5px 13px; font-size: 12px; font-weight: 500;
  color: var(--muted); cursor: pointer; transition: .15s;
  background: var(--white); white-space: nowrap;
  user-select: none; display: inline-flex; align-items: center; gap: 5px;
}
.tag:hover { border-color: var(--ink); color: var(--ink); }
.tag.on { border-color: var(--ink); background: var(--ink); color: var(--white); font-weight: 700; }
.tag.sm { font-size: 11.5px; padding: 4px 11px; }
.tag .tag-ico { font-size: 13px; }

/* Tag colour variants — keep these meaningful */
.tag.veg.on { border-color: #16A34A; background: #DCFCE7; color: #15803D; }
.tag.nonveg.on { border-color: #DC2626; background: #FEE2E2; color: #DC2626; }
.tag.jain.on { border-color: #F59E0B; background: #FEF3C7; color: #92400E; }
.tag.vegan.on { border-color: #16A34A; background: #D1FAE5; color: #065F46; }
.tag.oilfree.on { border-color: #3B82F6; background: #DBEAFE; color: #1E40AF; }
.tag.gluten.on { border-color: #8B5CF6; background: #EDE9FE; color: #6D28D9; }

/* ── INGREDIENT CHIPS ── */
.ingr-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.ingr-col { border: 1.5px solid var(--line); border-radius: 10px; padding: 12px; }
.ingr-col-head { font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.ingr-col.love .ingr-col-head { color: var(--green); }
.ingr-col.hate .ingr-col-head { color: #DC2626; }
.ingr-col.ok .ingr-col-head { color: var(--muted); }
.ingr-col .ingr-input { width: 100%; padding: 6px 9px; border: 1px solid var(--line); border-radius: 6px; font-size: 12px; font-family: var(--ff-body); outline: none; margin-bottom: 8px; }
.ingr-col .ingr-input:focus { border-color: var(--ink); }
.ingr-chips { display: flex; flex-wrap: wrap; gap: 5px; }
.ingr-chip {
  font-size: 11px; padding: 3px 9px; border-radius: 100px;
  display: inline-flex; align-items: center; gap: 4px; cursor: pointer;
}
.ingr-chip .rm { font-size: 10px; opacity: .6; }
.ingr-chip.love { background: #DCFCE7; color: #15803D; }
.ingr-chip.hate { background: #FEE2E2; color: #DC2626; }
.ingr-chip.ok { background: var(--line); color: var(--muted); }

/* ── NUTRITION TABLE ── */
.nut-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.nut-table th { background: var(--ink); color: var(--white); padding: 8px 10px; text-align: left; font-weight: 600; font-size: 11.5px; }
.nut-table td { padding: 8px 10px; border-bottom: 1px solid var(--line); }
.nut-table tr:last-child td { border-bottom: none; font-weight: 700; background: #F5F5F5; }
.nut-val { font-family: var(--ff-head); font-style: italic; color: var(--magenta-dk); font-size: 13px; }

/* ── BMI GAUGE ── */
.bmi-wrap { display: flex; flex-direction: column; align-items: center; position: relative; padding-bottom: 52px; }
.bmi-gauge-svg { width: 220px; height: 122px; }
.bmi-needle {
  position: absolute; bottom: 18px; left: 50%;
  width: 3px; height: 88px; background: var(--ink);
  transform-origin: bottom center;
  transform: translateX(-50%) rotate(0deg);
  border-radius: 3px;
  transition: transform .7s cubic-bezier(.16, 1, .3, 1);
  z-index: 2;
}
.bmi-needle::before {
  content: ''; position: absolute; bottom: -4px; left: 50%;
  transform: translateX(-50%); width: 12px; height: 12px;
  border-radius: 50%; background: var(--ink); border: 2px solid var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.bmi-lbl {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: var(--white);
  padding: 4px 14px; border-radius: 100px;
  font-family: var(--ff-head); font-style: italic; font-size: 12px;
  font-weight: 600; white-space: nowrap;
}
.bmi-val-box {
  position: absolute; bottom: -28px; left: 50%; transform: translateX(-50%);
  background: var(--white); border: 1.5px solid var(--ink);
  border-radius: 6px; padding: 4px 14px;
  font-family: var(--ff-head); font-size: 18px; font-weight: 700;
  color: var(--ink); min-width: 48px; text-align: center; line-height: 1;
}

/* ── ACTION BUTTONS ── */
.btn-row {
  display: flex; align-items: center; gap: 10px;
  padding-top: 20px; border-top: 1px solid var(--line);
  margin-top: 24px; flex-wrap: wrap;
}
.btn-row .right { margin-left: auto; display: flex; gap: 8px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 10px 22px; border-radius: 100px;
  font-family: var(--ff-body); font-size: 13px; font-weight: 700;
  cursor: pointer; transition: .2s; border: none; text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--white); box-shadow: 0 4px 14px rgba(26,26,26,.2); }
.btn-primary:hover { background: var(--magenta); transform: translateY(-1px); }
.btn-ink { background: var(--ink); color: var(--white); }
.btn-ink:hover { background: var(--magenta); transform: translateY(-1px); }
.btn-ghost { background: var(--white); color: var(--muted); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn-outline { background: var(--white); color: var(--ink); border: 1.5px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-sm { padding: 7px 16px; font-size: 12px; }
.btn-xs { padding: 5px 12px; font-size: 11.5px; }

/* Share buttons */
.share-bar { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 100px; font-size: 11.5px;
  font-weight: 700; cursor: pointer; transition: .15s;
  border: 1.5px solid var(--line); background: var(--white); color: var(--muted);
  text-decoration: none;
}
.share-btn:hover { border-color: var(--ink); color: var(--ink); background: #F5F5F5; }
.share-btn.wa { border-color: #25D366; color: #128C7E; }
.share-btn.wa:hover { background: #DCFCE7; }
.share-btn.email { border-color: #3B82F6; color: #1D4ED8; }
.share-btn.email:hover { background: #DBEAFE; }
.share-btn.print { border-color: var(--ink); color: var(--ink); }
.share-btn.print:hover { background: var(--line); }

/* ── PLAN GRID ── */
.plan-grid-wrap { overflow-x: auto; border-radius: 10px; border: 1px solid var(--line); box-shadow: 0 4px 16px rgba(0,0,0,.05); }
.plan-grid { width: 100%; border-collapse: collapse; min-width: 820px; font-size: 12px; }
.plan-grid thead tr { background: var(--ink); }
.plan-grid thead th { color: var(--white); padding: 9px 8px; text-align: center; font-size: 11px; font-weight: 700; letter-spacing: .07em; border-right: 1px solid rgba(255,255,255,.08); }
.plan-grid thead th.row-h { text-align: left; padding-left: 14px; min-width: 110px; background: #252525; border-right: 2px solid rgba(255,255,255,.1); }
.plan-grid thead th.wkend { background: #2E2E2E; }
.plan-grid td { border: 1px solid var(--line); padding: 5px; vertical-align: top; min-width: 100px; }
.plan-grid td.row-lbl { background: #F8F8F8; font-size: 10.5px; font-weight: 700; color: var(--ink-soft); letter-spacing: .04em; text-transform: uppercase; padding: 8px 12px; white-space: nowrap; border-right: 2px solid var(--line); }
.plan-grid tr:nth-child(even) td:not(.row-lbl) { background: #FAFAFA; }

.meal-chip {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 7px; padding: 6px 8px;
  cursor: pointer; transition: .15s;
  display: block; width: 100%;
  text-align: left;
}
.meal-chip:hover { border-color: var(--ink); background: #F5F5F5; }
.meal-chip.wkend { border-color: var(--line); background: #FAFAFA; }
.meal-chip .mn { font-weight: 600; color: var(--ink); line-height: 1.2; font-size: 11.5px; display: block; margin-bottom: 2px; }
.meal-chip .mn em { font-style: italic; color: var(--magenta-dk); }
.meal-chip .mt { font-size: 9.5px; color: var(--muted); display: flex; justify-content: space-between; align-items: center; }
.meal-chip .mswap { color: var(--magenta-dk); font-weight: 700; opacity: 0; font-size: 9px; transition: .15s; }
.meal-chip:hover .mswap { opacity: 1; }
.empty-cell { border: 1px dashed var(--line); border-radius: 7px; padding: 7px; text-align: center; font-size: 10.5px; color: var(--line); cursor: pointer; transition: .15s; }
.empty-cell:hover { border-color: var(--ink); color: var(--ink); }

/* ── VIEW TABS ── */
.view-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.view-tab {
  padding: 6px 14px; border-radius: 100px; border: 1.5px solid var(--line);
  background: var(--white); font-size: 12px; font-weight: 600;
  color: var(--muted); cursor: pointer; transition: .15s;
}
.view-tab:hover { border-color: var(--ink); color: var(--ink); }
.view-tab.active { background: var(--ink); border-color: var(--ink); color: var(--white); }

/* ── PROFILE REVIEW CARD ── */
.review-section { border: 1.5px solid var(--line); border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
.review-section-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; background: var(--bg);
  border-bottom: 1px solid var(--line); cursor: pointer;
}
.review-section-head:hover { background: #F5F5F5; }
.rsh-left { display: flex; align-items: center; gap: 10px; }
.rsh-icon { font-size: 18px; }
.rsh-title { font-family: var(--ff-head); font-size: 16px; font-weight: 600; color: var(--ink); font-style: italic; }
.rsh-status { font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 100px; }
.rsh-status.complete { background: #DCFCE7; color: #15803D; }
.rsh-status.partial { background: #FEF3C7; color: #92400E; }
.rsh-status.empty { background: var(--line); color: var(--muted); }
.review-section-body { padding: 14px 16px; display: none; }
.review-section.open .review-section-body { display: block; }
.review-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.review-tag { font-size: 11.5px; background: #F5F5F5; border: 1px solid var(--line); color: var(--ink-soft); padding: 4px 10px; border-radius: 100px; }

/* ── GROCERY LIST ── */
.grocery-category { margin-bottom: 20px; }
.gc-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.gc-header h4 { font-family: var(--ff-head); font-size: 17px; font-weight: 600; color: var(--ink); font-style: italic; }
.gc-header::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.grocery-item {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 0; border-bottom: 1px solid #F5F5F5;
}
.grocery-item:last-child { border-bottom: none; }
.grocery-item input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--ink); cursor: pointer; flex-shrink: 0; }
.gi-name { font-size: 13.5px; color: var(--ink); flex: 1; }
.gi-qty { font-size: 12px; color: var(--muted); font-weight: 500; white-space: nowrap; }
.gi-kit { font-size: 11px; color: var(--white); font-weight: 700; background: var(--ink); padding: 2px 8px; border-radius: 100px; white-space: nowrap; }
.grocery-item.checked .gi-name { text-decoration: line-through; color: var(--muted); }

/* ── INFO BOX ── */
.info-box { background: #FEF3C7; border: 1px solid #F59E0B; border-left: 3px solid #F59E0B; border-radius: 0 8px 8px 0; padding: 10px 14px; font-size: 12.5px; color: #92400E; margin-bottom: 16px; display: flex; gap: 8px; align-items: flex-start; }
.info-box.green { background: #DCFCE7; border-color: var(--green); color: #14532D; }
.info-box.pink { background: var(--baby-lt); border-color: var(--magenta); color: var(--magenta-dk); }

/* ── FOOTER ── */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 32px 24px 20px; margin-top: 48px; }
.site-footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.site-footer h4 { font-family: var(--ff-head); font-style: italic; color: var(--white); font-size: 16px; margin: 0 0 10px; font-weight: 600; }
.site-footer h4 em { color: var(--baby); }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 5px; font-size: 12.5px; }
.site-footer ul li a { color: rgba(255,255,255,.65); text-decoration: none; transition: .15s; }
.site-footer ul li a:hover { color: var(--baby); }
.footer-bottom { max-width: 1100px; margin: 24px auto 0; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 11.5px; }
.footer-bottom b { color: var(--baby); font-style: italic; font-family: var(--ff-head); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .site-header .h-nav a:not(.try-btn):not(.cart-btn) { display: none; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .ingr-grid { grid-template-columns: 1fr; }
  .member-card-body { grid-template-columns: 1fr 1fr; }
  .site-footer-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 600px) {
  .page-content { padding: 20px 14px 48px; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .stepper-inner { min-width: 600px; }
  .site-footer-inner { grid-template-columns: 1fr; }
  .btn-row { gap: 8px; }
  .btn-row .right { margin-left: 0; width: 100%; justify-content: flex-end; }
}

/* ── PRINT STYLES ── */
@media print {
  .site-header, .stepper-bar, .profile-bar, .btn-row, .pb-actions, .share-bar, .h-nav { display: none !important; }
  .plan-grid-wrap { box-shadow: none; border: 1px solid #ccc; }
  body { background: white; }
  .page-content { padding: 0; }
}