@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;1,9..144,500&family=Mulish:wght@400;500;600;700&display=swap');

.fld-app {
  --cream: #f6efe3;
  --cream-2: #fbf6ec;
  --ink: #2b2922;
  --ink-soft: #6f6a5d;
  --green: #3c4a26;
  --green-2: #586b34;
  --terra: #cf6f43;
  --terra-soft: #e9a883;
  --sage: #aebb8d;
  --line: #e4dac6;
  position: relative;
  background: radial-gradient(120% 90% at 12% -10%, #fbf6ec 0%, #f6efe3 55%, #efe6d3 100%);
  color: var(--ink);
  font-family: 'Mulish', sans-serif;
  padding: clamp(18px, 4vw, 40px);
  border-radius: 18px;
  overflow: hidden;
  line-height: 1.5;
}
.fld-app *, .fld-app *::before, .fld-app *::after { box-sizing: border-box; }

.fld-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.fld-brand { display: flex; align-items: center; gap: 14px; }
.fld-leaf { display: grid; place-items: center; width: 46px; height: 46px; flex: none; border-radius: 50%; background: var(--green); color: var(--cream-2); transform: rotate(-8deg); }
.fld-logo { font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(26px, 5vw, 40px); line-height: .95; margin: 0; color: var(--green); letter-spacing: -.5px; }
.fld-tag { margin: 4px 0 0; font-size: 14px; color: var(--ink-soft); font-style: italic; }
.fld-domain { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--terra); font-weight: 700; padding-top: 8px; }

.fld-tabs { display: flex; gap: 6px; margin: 28px 0 22px; background: rgba(255,255,255,.5); padding: 5px; border-radius: 999px; border: 1px solid var(--line); width: fit-content; max-width: 100%; flex-wrap: wrap; }
.fld-tab { border: none; background: transparent; cursor: pointer; font-family: 'Mulish', sans-serif; font-weight: 600; font-size: 14px; color: var(--ink-soft); padding: 10px 20px; border-radius: 999px; transition: all .25s; }
.fld-tab.is-active { background: var(--green); color: var(--cream-2); box-shadow: 0 6px 16px -8px rgba(60,74,38,.7); }

.fld-panel { background: var(--cream-2); border: 1px solid var(--line); border-radius: 20px; padding: clamp(18px, 3vw, 34px); box-shadow: 0 20px 50px -34px rgba(43,41,34,.4); }
.fld-intro { margin-bottom: 22px; }
.fld-h2 { font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(22px, 3.5vw, 30px); margin: 0; color: var(--ink); letter-spacing: -.4px; }
.fld-sub { margin: 8px 0 0; color: var(--ink-soft); max-width: 56ch; line-height: 1.55; }

.fld-form { display: flex; flex-direction: column; gap: 18px; }
.fld-field { display: flex; flex-direction: column; gap: 9px; }
.fld-label { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--green-2); }
.fld-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.fld-chip { cursor: pointer; border: 1px solid var(--line); background: #fff; color: var(--ink); font-family: 'Mulish', sans-serif; font-weight: 600; font-size: 13.5px; padding: 9px 16px; border-radius: 999px; transition: all .2s; }
.fld-chip:hover { border-color: var(--sage); transform: translateY(-1px); }
.fld-chip.is-active { background: var(--terra); border-color: var(--terra); color: #fff; box-shadow: 0 6px 14px -8px rgba(207,111,67,.9); }

.fld-input { width: 100%; font-family: 'Mulish', sans-serif; font-size: 15px; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 12px 15px; outline: none; transition: border-color .2s; }
.fld-input::placeholder { color: #b7af9d; }
.fld-input:focus { border-color: var(--sage); }

.fld-btn { align-self: flex-start; cursor: pointer; border: none; font-family: 'Fraunces', serif; font-weight: 600; font-size: 17px; background: var(--green); color: var(--cream-2); padding: 14px 30px; border-radius: 14px; transition: all .25s; box-shadow: 0 12px 26px -14px rgba(60,74,38,.9); }
.fld-btn:hover:not(:disabled) { background: var(--green-2); transform: translateY(-2px); }
.fld-btn:disabled { opacity: .6; cursor: wait; }
.fld-btn-sm { font-size: 15px; padding: 12px 22px; }

.fld-custom { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.fld-custom .fld-input { flex: 1; min-width: 220px; }
.fld-dishes { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 6px; }

.fld-error { color: var(--terra); font-weight: 600; margin-top: 18px; }

.fld-remain { margin-top: 12px; font-size: 12.5px; color: var(--ink-soft); font-style: italic; }

.fld-savebar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.fld-save-btn {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  font-family: 'Mulish', sans-serif; font-weight: 700; font-size: 14px;
  background: #fff; color: var(--green); border: 1.5px solid var(--sage);
  padding: 11px 20px; border-radius: 999px; transition: all .2s;
}
.fld-save-btn:hover:not(:disabled) { background: var(--green); color: var(--cream-2); border-color: var(--green); transform: translateY(-1px); }
.fld-save-btn:disabled { opacity: .6; cursor: wait; }
.fld-save-ico { color: var(--terra); font-size: 15px; }
.fld-save-btn:hover .fld-save-ico { color: var(--terra-soft); }
.fld-save-done { color: var(--green-2); font-weight: 800; }
.fld-save-msg { font-size: 13.5px; color: var(--ink-soft); }
.fld-save-link { font-size: 13.5px; font-weight: 700; color: var(--terra); text-decoration: none; }
.fld-save-link:hover { text-decoration: underline; }

.fld-gate { margin-top: 26px; text-align: center; background: var(--green); color: var(--cream-2); border-radius: 18px; padding: 34px 26px; }
.fld-gate-icon { display: grid; place-items: center; width: 54px; height: 54px; margin: 0 auto 14px; border-radius: 50%; background: rgba(251,246,236,.14); color: var(--terra-soft); }
.fld-gate-text { font-family: 'Fraunces', serif; font-size: clamp(18px, 3vw, 22px); line-height: 1.4; margin: 0 auto 20px; max-width: 40ch; }
.fld-gate-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.fld-gate-actions .fld-btn { text-decoration: none; display: inline-block; }
.fld-btn-ghost { background: transparent; color: var(--cream-2); box-shadow: none; border: 1.5px solid var(--terra-soft); }
.fld-btn-ghost:hover:not(:disabled) { background: rgba(233,168,131,.16); transform: translateY(-2px); }

.fld-loading { display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 40px 0 24px; color: var(--ink-soft); }
.fld-pot { position: relative; width: 54px; height: 34px; background: var(--green); border-radius: 0 0 14px 14px; }
.fld-pot::before { content: ''; position: absolute; top: -6px; left: -7px; right: -7px; height: 8px; background: var(--green-2); border-radius: 6px; }
.fld-steam { position: absolute; bottom: 36px; width: 5px; height: 16px; background: var(--sage); border-radius: 4px; opacity: 0; animation: fld-steam 1.6s infinite ease-in-out; }
.fld-steam:nth-child(1) { left: 12px; animation-delay: 0s; }
.fld-steam:nth-child(2) { left: 25px; animation-delay: .3s; }
.fld-steam:nth-child(3) { left: 38px; animation-delay: .6s; }
@keyframes fld-steam { 0% { opacity: 0; transform: translateY(6px) scaleY(.6); } 40% { opacity: .8; } 100% { opacity: 0; transform: translateY(-12px) scaleY(1.2); } }

.fld-results { margin-top: 30px; }
.fld-hint { margin: 0 0 12px; font-size: 13px; color: var(--ink-soft); font-style: italic; }
.fld-week { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 12px; }
.fld-day { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 16px; opacity: 0; animation: fld-fadeUp .5s forwards; }
.fld-day-name { font-family: 'Fraunces', serif; font-size: 18px; margin: 0 0 12px; color: var(--terra); }
.fld-meal { display: flex; flex-direction: column; padding: 7px 0; border-top: 1px dashed var(--line); }
.fld-meal:first-of-type { border-top: none; }
.fld-meal-label { font-size: 10.5px; letter-spacing: 1px; text-transform: uppercase; color: var(--sage); font-weight: 700; }
.fld-meal-text { font-size: 14px; line-height: 1.4; }
.fld-meal-btn {
  font-family: 'Mulish', sans-serif; text-align: left; cursor: pointer; font-size: 14px; line-height: 1.4;
  background: none; border: none; padding: 0; color: var(--ink);
  border-bottom: 1px dotted var(--sage); transition: color .15s;
}
.fld-meal-btn:hover { color: var(--terra); border-bottom-color: var(--terra); }
.fld-meal-btn::after { content: " ›"; color: var(--terra); font-weight: 700; }

.fld-modal-overlay {
  position: fixed; inset: 0; z-index: 99999; display: flex; align-items: flex-start; justify-content: center;
  background: rgba(43, 41, 34, .55); backdrop-filter: blur(3px); padding: 24px 16px; overflow-y: auto;
  animation: fld-fadeIn .2s ease;
}
@keyframes fld-fadeIn { from { opacity: 0; } to { opacity: 1; } }
.fld-modal {
  position: relative; width: min(680px, 100%); margin: auto;
  background: var(--cream-2); border-radius: 20px; padding: clamp(16px, 3vw, 28px);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.6);
}
.fld-modal-close {
  position: absolute; top: 12px; right: 12px; z-index: 2; width: 38px; height: 38px; cursor: pointer;
  border: 1px solid var(--line); background: #fff; border-radius: 50%; font-size: 22px; line-height: 1; color: var(--ink);
}
.fld-modal-close:hover { background: var(--green); color: var(--cream-2); border-color: var(--green); }
.fld-modal-content .fld-recipe { margin-top: 0; }
body.fld-modal-open { overflow: hidden; }

.fld-shop { margin-top: 26px; background: var(--green); color: var(--cream-2); border-radius: 18px; padding: 24px; }
.fld-h3 { font-family: 'Fraunces', serif; font-size: 22px; margin: 0 0 16px; }
.fld-shop .fld-h3 { color: var(--cream-2); }
.fld-shop-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 18px; }
.fld-shop-cat-title { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--terra-soft); margin: 0 0 8px; font-weight: 700; }
.fld-shop-cat ul { margin: 0; padding-left: 18px; }
.fld-shop-cat li { font-size: 14px; line-height: 1.7; }

.fld-tip { margin-top: 22px; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--terra); border-radius: 12px; padding: 16px 18px; }
.fld-tip-mark { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--terra); font-weight: 700; }
.fld-tip p { margin: 6px 0 0; line-height: 1.55; color: var(--ink); }

.fld-recipe { margin-top: 30px; background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.fld-recipe-img { display: block; width: 100%; max-height: 360px; object-fit: cover; }
.fld-recipe-imgwrap { display: flex; align-items: center; justify-content: center; width: 100%; height: 220px; background: linear-gradient(120deg, #eef2e3, #f6efe3); }
.fld-recipe-imgspin { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.fld-recipe-imgtxt { font-size: 13px; font-style: italic; color: var(--ink-soft); }
.fld-recipe-head { background: var(--green); color: var(--cream-2); padding: 22px 26px; }
.fld-recipe-title { font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(22px, 4vw, 30px); margin: 0; color: var(--cream-2); }
.fld-recipe-meta { display: flex; gap: 18px; margin-top: 8px; font-size: 13px; color: var(--terra-soft); font-weight: 600; }
.fld-recipe-body { display: grid; grid-template-columns: 1fr; gap: 26px; padding: 26px; }
@media (min-width: 640px) { .fld-recipe-body { grid-template-columns: 1fr 1.4fr; } }
.fld-h4 { font-family: 'Fraunces', serif; font-size: 18px; margin: 0 0 12px; color: var(--green); }
.fld-ing { margin: 0; padding-left: 18px; }
.fld-ing li { line-height: 1.8; }
.fld-steps { margin: 0; padding-left: 20px; }
.fld-steps li { line-height: 1.6; margin-bottom: 10px; }

.fld-nutri { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; padding: 0 26px 22px; }
.fld-nutri-item { display: flex; flex-direction: column; }
.fld-nutri-item span { font-family: 'Fraunces', serif; font-size: 20px; color: var(--terra); }
.fld-nutri-item small { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-soft); }
.fld-nutri-note { flex: 1; min-width: 200px; margin: 0; font-size: 13.5px; color: var(--ink-soft); font-style: italic; }
.fld-recipe .fld-tip { margin: 0 26px 26px; }

.fld-footer { margin-top: 30px; text-align: center; }
.fld-footer p { margin: 4px 0; font-size: 12.5px; color: var(--ink-soft); line-height: 1.5; }
.fld-footer-brand { font-weight: 700; letter-spacing: .5px; color: var(--green-2); }

.fld-fade { opacity: 0; animation: fld-fadeUp .55s forwards; }
@keyframes fld-fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* Reserve space so the modal close button never overlaps the recipe title */
.fld-modal .fld-recipe-head { padding-right: 58px; }

/* ============ Mobile polish (≤600px) ============ */
@media (max-width: 600px) {
  .fld-app { padding: 16px; border-radius: 14px; }
  .fld-panel { padding: 18px 16px; }

  .fld-tabs { width: 100%; }
  .fld-tab { flex: 1; text-align: center; padding: 11px 10px; }

  .fld-week { grid-template-columns: 1fr; }
  .fld-custom { gap: 10px; }
  .fld-custom .fld-input { min-width: 0; flex: 1 1 100%; }
  .fld-btn { width: 100%; text-align: center; align-self: stretch; }
  .fld-btn-sm { width: auto; }

  .fld-recipe-head { padding: 18px 18px; }
  .fld-recipe-body { padding: 20px 18px; }
  .fld-shop { padding: 20px 18px; }
  .fld-nutri { gap: 18px; padding: 0 18px 20px; }

  .fld-modal-overlay { padding: 12px 10px; }
  .fld-modal { border-radius: 16px; }
  .fld-modal-close { top: 10px; right: 10px; width: 40px; height: 40px; }

  .fld-gate { padding: 26px 18px; }
}

/* Regimen selector (recipes tab) */
.fld-diet { display: flex; align-items: center; gap: 10px; margin: 2px 0 16px; flex-wrap: wrap; }
.fld-diet__label { font-weight: 700; font-size: 13px; color: var(--ink-soft); }
.fld-diet__select {
  font-family: 'Mulish', sans-serif; font-size: 14px; padding: 10px 14px;
  border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--ink); cursor: pointer;
}
.fld-diet__select:focus { outline: none; border-color: var(--sage); }
@media (max-width: 600px) { .fld-diet__select { flex: 1; } }

/* premium "unlimited" badge in the tool */
.fld-remain--premium {
  display: inline-block; margin-top: 8px; padding: 6px 14px; border-radius: 999px;
  background: var(--green-2, #586B34); color: #fff; font-weight: 800; font-size: 13px;
}

/* estimated progress bar (recipe / plan generation) */
.fld-prog__row { display: flex; align-items: center; gap: 12px; width: min(420px, 100%); margin: 6px auto 0; }
.fld-prog__track { flex: 1; height: 8px; border-radius: 999px; background: var(--line, #E4DAC6); overflow: hidden; }
.fld-prog__fill { position: relative; overflow: hidden; width: 0; height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--green-2, #586B34), var(--terra, #CF6F43));
  transition: width .2s linear; }
/* Continuous shimmer sweep — keeps the bar feeling alive even when the % creeps slowly. */
.fld-prog__fill::after { content: ''; position: absolute; top: 0; left: 0; height: 100%; width: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.5) 50%, transparent 100%);
  transform: translateX(-100%); animation: fld-prog-shimmer 1.15s ease-in-out infinite; }
@keyframes fld-prog-shimmer { to { transform: translateX(100%); } }
@media (prefers-reduced-motion: reduce) { .fld-prog__fill::after { animation: none; } }
.fld-prog__pct { font-family: 'Mulish', sans-serif; font-weight: 800; font-size: 13px; color: var(--ink-soft, #6F6A5D); min-width: 38px; text-align: right; }

/* FAQ accordion (recipe modal / account) */
.fld-faq { margin-top: 18px; }
.fld-faq .fld-h4 { margin-bottom: 10px; }
.fld-faq__item { border: 1px solid var(--line, #E4DAC6); border-radius: 12px; padding: 2px 14px; margin-bottom: 8px; background: #fff; }
.fld-faq__q { cursor: pointer; font-weight: 700; font-family: 'Mulish', sans-serif; padding: 11px 0; color: var(--green, #3C4A26); list-style: none; }
.fld-faq__q::-webkit-details-marker { display: none; }
.fld-faq__q::before { content: "+ "; color: var(--terra, #CF6F43); font-weight: 800; }
.fld-faq details[open] .fld-faq__q::before, .fld-faq__item[open] .fld-faq__q::before { content: "– "; }
.fld-faq__a { margin: 0 0 12px; line-height: 1.6; color: var(--ink, #2B2922); }

/* ---- Nutri-Score badge (A–E) ---- */
.fld-ns { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; margin: 6px 0 18px; }
.fld-ns__label { font-size: 11px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; color: #6f6a5d; }
.fld-ns__strip { display: inline-flex; align-items: center; padding: 3px; }
.fld-ns__cell {
  width: 30px; height: 34px; display: flex; align-items: center; justify-content: center;
  font-family: Arial, Helvetica, sans-serif; font-weight: 800; font-size: 16px; color: #fff;
  opacity: .34; transition: opacity .2s, transform .2s;
}
.fld-ns__cell:first-child { border-radius: 8px 0 0 8px; }
.fld-ns__cell:last-child { border-radius: 0 8px 8px 0; }
.fld-ns__cell--A { background: #038141; }
.fld-ns__cell--B { background: #85bb2f; }
.fld-ns__cell--C { background: #fecb02; color: #4a3d00; }
.fld-ns__cell--D { background: #ee8100; }
.fld-ns__cell--E { background: #e63e11; }
.fld-ns__cell.is-active { opacity: 1; transform: scale(1.22); border-radius: 8px; box-shadow: 0 3px 10px rgba(0,0,0,.28); position: relative; z-index: 1; }
.fld-ns__motiv { margin: 4px 0 0; font-size: 13px; line-height: 1.45; color: #6f6a5d; max-width: 460px; }

/* Nutri-Score & FAQ sit directly in the edge-to-edge recipe card, so give them the
   same horizontal inset as the body (they'd otherwise touch the card border). */
.fld-recipe > .fld-ns { padding: 0 26px; margin: 16px 0 20px; }
.fld-recipe > .fld-faq { padding: 0 26px; margin: 18px 0 26px; }
@media (max-width: 600px) {
  .fld-recipe > .fld-ns { padding: 0 18px; }
  .fld-recipe > .fld-faq { padding: 0 18px; margin-bottom: 20px; }
}

/* ------------------------------------------------------------------ */
/* Register / login pop-up (rendered on <body>, so no theme vars here) */
/* ------------------------------------------------------------------ */
.fld-auth-overlay {
  position: fixed; inset: 0; z-index: 100000; display: flex; align-items: flex-start; justify-content: center;
  background: rgba(43, 41, 34, .58); backdrop-filter: blur(3px); padding: 24px 16px; overflow-y: auto;
  animation: fld-fadeIn .2s ease; font-family: 'Mulish', sans-serif; color: #2b2922;
}
.fld-auth-modal {
  position: relative; width: min(560px, 100%); margin: auto;
  background: #fbf6ec; border-radius: 20px; padding: clamp(22px, 4vw, 34px);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.6);
  animation: fld-authpop .28s cubic-bezier(.2,.8,.3,1);
}
@keyframes fld-authpop { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
.fld-auth-close {
  position: absolute; top: 12px; right: 12px; z-index: 2; width: 38px; height: 38px; cursor: pointer;
  border: 1px solid #e4dac6; background: #fff; border-radius: 50%; font-size: 22px; line-height: 1; color: #2b2922;
}
.fld-auth-close:hover { background: #3c4a26; color: #fbf6ec; border-color: #3c4a26; }

.fld-auth-view { display: flex; flex-direction: column; gap: 14px; }
.fld-auth-lock { width: 58px; height: 58px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  background: #eef2e3; color: #3c4a26; margin: 4px auto 0; }
.fld-auth-title { font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(21px, 4vw, 25px); margin: 0; text-align: center; color: #2b2922; }
.fld-auth-lead { margin: 0; text-align: center; color: #6f6a5d; font-size: 15px; line-height: 1.5; }
.fld-auth-field { display: flex; flex-direction: column; gap: 6px; }
.fld-auth-flabel { font-size: 13px; font-weight: 700; color: #3c4a26; }
.fld-auth-input {
  width: 100%; box-sizing: border-box; border: 1.5px solid #e4dac6; background: #fff; border-radius: 12px;
  padding: 13px 15px; font-size: 16px; font-family: inherit; color: #2b2922; transition: border-color .18s, box-shadow .18s;
}
.fld-auth-input:focus { outline: none; border-color: #586b34; box-shadow: 0 0 0 3px rgba(88,107,52,.15); }
.fld-auth-code { letter-spacing: .5em; text-align: center; font-size: 24px; font-weight: 700; padding-left: .5em; }
.fld-auth-btn {
  cursor: pointer; border: none; font-family: 'Fraunces', serif; font-weight: 600; font-size: 17px;
  background: #3c4a26; color: #fbf6ec; padding: 14px 24px; border-radius: 14px; transition: all .22s; width: 100%;
  box-shadow: 0 12px 26px -14px rgba(60,74,38,.9);
}
.fld-auth-btn:hover:not(:disabled) { background: #586b34; transform: translateY(-2px); }
.fld-auth-btn:disabled { opacity: .6; cursor: wait; }
.fld-auth-btn--ghost { background: transparent; color: #3c4a26; box-shadow: none; border: 1.5px solid #aebb8d; }
.fld-auth-btn--ghost:hover:not(:disabled) { background: rgba(174,187,141,.18); }
.fld-auth-alt { text-align: center; font-size: 14px; color: #6f6a5d; margin: 2px 0 0; }
.fld-auth-alt a { color: #cf6f43; font-weight: 700; text-decoration: none; }
.fld-auth-alt a:hover { text-decoration: underline; }
.fld-auth-err { display: none; background: #fdece7; color: #b23b1e; border-radius: 10px; padding: 10px 13px; font-size: 14px; margin: 0; }

/* stepper */
.fld-auth-steps { display: flex; gap: 8px; margin-bottom: 4px; }
.fld-auth-step { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; position: relative; opacity: .45; }
.fld-auth-step.is-active, .fld-auth-step.is-done { opacity: 1; }
.fld-auth-stepnum {
  width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; background: #e4dac6; color: #6f6a5d;
}
.fld-auth-step.is-active .fld-auth-stepnum { background: #3c4a26; color: #fbf6ec; }
.fld-auth-step.is-done .fld-auth-stepnum { background: #586b34; color: #fbf6ec; }
.fld-auth-steplbl { font-size: 11.5px; font-weight: 700; color: #6f6a5d; text-align: center; }

/* plan cards */
.fld-auth-plans { display: grid; gap: 12px; }
.fld-auth-plan { position: relative; border: 1.5px solid #e4dac6; border-radius: 16px; padding: 16px 16px 18px; background: #fff; display: flex; flex-direction: column; gap: 8px; }
.fld-auth-plan.is-featured { border-color: #586b34; box-shadow: 0 0 0 3px rgba(88,107,52,.12); }
.fld-auth-badge { position: absolute; top: -11px; left: 16px; background: #586b34; color: #fbf6ec; font-size: 11px; font-weight: 800; padding: 3px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: .04em; }
.fld-auth-planname { font-family: 'Fraunces', serif; font-weight: 600; font-size: 19px; color: #2b2922; }
.fld-auth-planprice { font-weight: 800; font-size: 22px; color: #3c4a26; }
.fld-auth-feats { list-style: none; margin: 4px 0 8px; padding: 0; display: flex; flex-direction: column; gap: 5px; }
.fld-auth-feats li { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: #2b2922; line-height: 1.35; }
.fld-auth-feats li.is-out { color: #a49e90; }
.fld-auth-tick { flex: 0 0 auto; font-weight: 800; }
.fld-auth-feats li.is-in .fld-auth-tick { color: #586b34; }
.fld-auth-feats li.is-out .fld-auth-tick { color: #c9c0ad; }
@media (min-width: 520px) {
  .fld-auth-plans { grid-template-columns: 1fr 1fr; }
}
