:root {
  --bg: #faf8f4;
  --surface: #ffffff;
  --surface-2: #f3efe8;
  --text: #26241f;
  --muted: #7a746a;
  --line: #e6e0d6;
  --accent: #4c8c4a;
  --accent-dark: #3c7139;
  --accent-soft: #e7f1e6;
  --danger: #c0492f;
  --shadow: 0 2px 10px rgba(40, 33, 20, 0.08);
  --radius: 16px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

body { overscroll-behavior-y: none; }

button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

/* ---------- Layout ---------- */
:root { --app-max: 600px; }
#app { min-height: 100vh; padding-bottom: calc(84px + var(--safe-bottom)); max-width: var(--app-max); margin-inline: auto; }
@media (min-width: 620px) {
  body { background: var(--surface-2); }        /* okolí sloupce na širokém displeji */
  #app { background: var(--bg); box-shadow: 0 0 24px rgba(40,33,20,.06); }
  .topbar { background: var(--bg); }
}
@media (min-width: 1024px) {
  :root { --app-max: 1240px; }                  /* na webu širší plocha */
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--bg);
  padding: calc(12px + var(--safe-top)) 16px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid transparent;
}
.topbar.scrolled { border-bottom-color: var(--line); }
.topbar h1 { font-size: 22px; margin: 0; font-weight: 700; letter-spacing: -0.01em; }
.topbar .spacer { flex: 1; }

.icon-btn {
  border: none;
  background: var(--surface);
  color: var(--text);
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid; place-items: center;
  box-shadow: var(--shadow);
  font-size: 20px;
}
.icon-btn:active { transform: scale(0.94); }

.content { padding: 0 16px; }

/* ---------- Search ---------- */
.search {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  margin: 4px 0 16px;
}
.search input {
  border: none; outline: none; background: transparent;
  font-size: 16px; width: 100%; color: var(--text);
}

/* ---------- Toolbar (řazení) ---------- */
.toolbar { display: flex; align-items: center; gap: 8px; margin: 0 0 14px; flex-wrap: wrap; }
.toolbar-label { color: var(--muted); font-size: 13px; font-weight: 600; }
.sortbtn {
  border: 1px solid var(--line); background: var(--surface); color: var(--muted);
  font-size: 13px; font-weight: 650; padding: 6px 12px; border-radius: 999px;
}
.sortbtn.on { background: var(--accent-soft); color: var(--accent-dark); border-color: transparent; }
.sortbtn:active { transform: scale(0.96); }

/* ---------- Recipe cards ---------- */
.grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 1024px) { .grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: left;
  padding: 0;
  color: inherit;
  cursor: pointer;
  display: flex; flex-direction: column;
}
.card:active { transform: scale(0.98); }
.card .fav {
  position: absolute; top: 6px; right: 6px; z-index: 2;
  width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.9); color: #c9a227; font-size: 18px; line-height: 1;
  box-shadow: 0 1px 4px rgba(0,0,0,.15);
}
.card .fav.on { color: #e6b800; }
.icon-btn.fav-on { color: #e6b800; }
.card .thumb {
  aspect-ratio: 4 / 3;
  background: var(--surface-2) center/cover no-repeat;
  display: grid; place-items: center;
  font-size: 34px;
}
.card .body { padding: 10px 12px 12px; }
.card .title { font-weight: 650; font-size: 15px; line-height: 1.25; }
.card .meta { color: var(--muted); font-size: 12.5px; margin-top: 6px; display: flex; gap: 10px; }

/* ---------- Empty state ---------- */
.empty {
  text-align: center; padding: 48px 24px; color: var(--muted);
}
.empty .big { font-size: 52px; margin-bottom: 12px; }
.empty h2 { color: var(--text); margin: 0 0 6px; font-size: 20px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; border-radius: 12px;
  padding: 14px 18px;
  font-size: 16px; font-weight: 650;
  background: var(--accent); color: #fff;
  box-shadow: var(--shadow);
  width: 100%;
}
.btn:active { transform: scale(0.98); background: var(--accent-dark); }
.btn.secondary { background: var(--surface); color: var(--text); border: 1px solid var(--line); box-shadow: none; }
.btn.ghost { background: transparent; color: var(--accent); box-shadow: none; }
.btn.danger { background: transparent; color: var(--danger); box-shadow: none; }

/* ---------- FAB ---------- */
.fab {
  position: fixed;
  right: max(18px, calc(50vw - var(--app-max) / 2 + 18px)); bottom: calc(80px + var(--safe-bottom));
  width: 60px; height: 60px; border-radius: 20px;
  background: var(--accent); color: #fff;
  border: none; font-size: 30px; line-height: 1;
  box-shadow: 0 6px 20px rgba(60, 113, 57, 0.4);
  z-index: 30;
}
.fab:active { transform: scale(0.94); }

/* ---------- Detail ---------- */
.detail-hero {
  aspect-ratio: 16 / 10;
  background: var(--surface-2) center/cover no-repeat;
  display: grid; place-items: center; font-size: 64px;
}
.detail-body { padding: 16px; }
.detail-body h1 { font-size: 26px; margin: 4px 0 10px; letter-spacing: -0.01em; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 4px; }
.chip {
  background: var(--surface-2); color: var(--muted);
  padding: 6px 12px; border-radius: 999px; font-size: 13px; font-weight: 600;
}
.chip.accent { background: var(--accent-soft); color: var(--accent-dark); }
.cat-chip { border: none; cursor: pointer; background: var(--accent-soft); color: var(--accent-dark); font-family: inherit; }
.cat-chip:active { transform: scale(0.96); }
.drawer-count { color: var(--muted); font-weight: 600; font-size: 13px; float: right; }

.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-chip {
  border: 1px solid var(--line); background: var(--surface); color: var(--accent-dark);
  font-size: 13px; font-weight: 600; padding: 7px 13px; border-radius: 999px;
}
.tag-chip:active { transform: scale(0.96); background: var(--accent-soft); }

.filter-bar {
  display: flex; align-items: center; gap: 8px; margin: 0 0 14px;
  background: var(--accent-soft); color: var(--accent-dark);
  padding: 8px 14px; border-radius: 12px; font-size: 14px;
}
.filter-clear {
  margin-left: auto; border: none; background: transparent; color: var(--accent-dark);
  font-size: 16px; font-weight: 700; padding: 2px 6px; cursor: pointer;
}

.section-title { font-size: 18px; font-weight: 700; margin: 24px 0 12px; }
.section-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.section-head .section-title { margin-bottom: 12px; }

.chip-ico { width: 13px; height: 13px; vertical-align: -2px; margin-right: 3px; }
.tm-ico { width: 15px; height: 15px; vertical-align: -3px; color: var(--accent-dark); margin: 0 1px; }

/* Přepínač porcí */
.portions { display: inline-flex; align-items: center; gap: 8px; }
.portions-label { color: var(--muted); font-size: 13px; font-weight: 600; }
.pbtn {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--surface); color: var(--accent-dark);
  font-size: 18px; font-weight: 700; line-height: 1; display: grid; place-items: center;
}
.pbtn:active { transform: scale(0.92); background: var(--accent-soft); }
.pcount { min-width: 20px; text-align: center; font-weight: 700; font-size: 16px; }

.ingredients { list-style: none; padding: 0; margin: 0; }
.ingredients li {
  display: flex; gap: 12px; padding: 11px 0;
  border-bottom: 1px solid var(--line); align-items: center;
}
.ing-thumb {
  flex: none; width: 40px; height: 40px; border-radius: 10px;
  object-fit: cover; background: var(--surface-2);
}
.ing-thumb--empty { background: var(--surface-2); }
.ingredients li:last-child { border-bottom: none; }
.ingredients .amount { font-weight: 650; min-width: 96px; color: var(--accent-dark); }
.ingredients .name { flex: 1; }
.ingredients .note { color: var(--muted); font-size: 13px; }

.steps { counter-reset: step; padding: 0; margin: 0; list-style: none; }
.steps li {
  position: relative; padding: 4px 0 20px 44px; margin: 0;
}
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent-dark);
  display: grid; place-items: center; font-weight: 700; font-size: 14px;
}
.steps .tm { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.steps .tm .tag {
  font-size: 12.5px; font-weight: 650; padding: 4px 9px; border-radius: 8px;
  background: var(--surface-2); color: var(--text);
}

/* Zvýraznění nastavení Thermomixu přímo v textu kroku */
.tm-hi {
  display: inline-block;
  background: var(--accent-soft); color: var(--accent-dark);
  font-weight: 700; padding: 0 7px; border-radius: 7px;
  white-space: nowrap; line-height: 1.5;
}
.cook-step-text .tm-hi { font-size: 0.92em; padding: 1px 9px; }

.tips { list-style: none; padding: 0; margin: 0; }
.tips li {
  position: relative; padding: 10px 0 10px 20px;
  border-bottom: 1px solid var(--line); line-height: 1.45;
}
.tips li:last-child { border-bottom: none; }
.tips li::before {
  content: '•'; position: absolute; left: 4px; top: 8px;
  color: var(--accent); font-size: 18px; font-weight: 700; line-height: 1.4;
}

.nutrition { list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
@media (max-width: 400px) { .nutrition { grid-template-columns: 1fr; } }
.nutrition li {
  display: flex; justify-content: space-between; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid var(--line);
}
.nutrition .nu-name { color: var(--muted); }
.nutrition .nu-val { font-weight: 650; color: var(--accent-dark); text-align: right; }

.note-box {
  background: var(--surface-2); border-radius: 12px; padding: 14px;
  line-height: 1.5; white-space: normal; border-left: 3px solid var(--accent);
}
.note-edit {
  width: 100%; min-height: 120px; resize: vertical; box-sizing: border-box;
  border: 1px solid var(--line); border-radius: 12px; padding: 12px;
  font-size: 16px; font-family: inherit; line-height: 1.5; color: var(--text);
  background: var(--surface); outline: none;
}
.note-edit:focus { border-color: var(--accent); }

.detail-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.detail-actions #cookBtn { flex: 1 1 100%; }
.detail-actions #toShopBtn, .detail-actions #toPlanBtn { flex: 1 1 0; }

/* Dvousloupcový detail na webu */
@media (min-width: 1024px) {
  .detail-cols { display: grid; grid-template-columns: 1fr 1.3fr; gap: 0 40px; align-items: start; }
  .detail-hero { max-height: 360px; }
  .detail-cols .col .section-title:first-child { margin-top: 8px; }
}
.detail-actions .btn { flex: 1; }

/* ---------- Cook mode ---------- */
.cook {
  position: fixed; top: 0; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: var(--app-max); z-index: 100;
  background: var(--bg); display: flex; flex-direction: column;
}
.cook-head {
  padding: calc(14px + var(--safe-top)) 16px 10px;
  display: flex; align-items: center; gap: 12px;
}
.cook-head .title { font-weight: 700; font-size: 16px; flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cook-progress { height: 5px; background: var(--surface-2); border-radius: 999px; margin: 0 16px; overflow: hidden; }
.cook-progress > span { display: block; height: 100%; background: var(--accent); transition: width .25s ease; }
.cook-body {
  flex: 1; overflow-y: auto; padding: 22px;
  display: flex; flex-direction: column; justify-content: flex-start;
}
.cook-step-no { color: var(--accent-dark); font-weight: 700; font-size: 15px; letter-spacing: .04em; text-transform: uppercase; }
.cook-step-text { font-size: 26px; line-height: 1.4; margin: 12px 0 0; font-weight: 500; }
.cook-tm { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.cook-tm .tag { font-size: 16px; font-weight: 650; padding: 10px 14px; border-radius: 12px; background: var(--surface); box-shadow: var(--shadow); }
.cook-timer {
  margin-top: 22px; align-self: flex-start;
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--accent-soft); color: var(--accent-dark);
  padding: 12px 18px; border-radius: 14px; font-size: 22px; font-weight: 700;
  border: none;
}
.cook-ings { margin-top: 26px; border-top: 1px solid var(--line); padding-top: 16px; }
.cook-ings-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); margin-bottom: 8px; }
.cook-ing-list { list-style: none; padding: 0; margin: 0; }
.cook-ing-list li { display: flex; align-items: center; gap: 10px; padding: 7px 0; border-bottom: 1px solid var(--line); }
.cook-ing-list li:last-child { border-bottom: none; }
.cook-ing-thumb { flex: none; width: 34px; height: 34px; border-radius: 8px; object-fit: cover; background: var(--surface-2); }
.cook-ing-txt { font-size: 15px; line-height: 1.3; }

.cook-nav {
  display: flex; gap: 12px; padding: 14px 16px calc(16px + var(--safe-bottom));
}
.cook-nav .btn { flex: 1; padding: 18px; font-size: 17px; }
.cook-ing-toggle { text-align: center; padding: 6px; }

/* ---------- Form ---------- */
.form { padding: 4px 0 20px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 650; font-size: 14px; margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; border: 1px solid var(--line); border-radius: 12px;
  padding: 12px; font-size: 16px; background: var(--surface); color: var(--text);
  outline: none;
}
.field input:focus, .field textarea:focus { border-color: var(--accent); }
.field textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.field .hint { color: var(--muted); font-size: 13px; margin-top: 6px; }
.row { display: flex; gap: 10px; }
.row .field { flex: 1; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: calc(90px + var(--safe-bottom));
  transform: translateX(-50%) translateY(20px);
  background: #26241f; color: #fff; padding: 12px 18px; border-radius: 12px;
  font-size: 14px; font-weight: 600; opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s; z-index: 200; box-shadow: var(--shadow);
  max-width: 88%;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Modal ---------- */
.modal-back {
  position: fixed; inset: 0; background: rgba(20,16,10,.45);
  z-index: 150; display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.modal-back.show { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--surface); width: 100%; max-width: 520px;
  border-radius: 20px 20px 0 0; padding: 22px 20px calc(22px + var(--safe-bottom));
  transform: translateY(30px); transition: transform .25s;
}
.modal-back.show .modal { transform: translateY(0); }
.modal h3 { margin: 0 0 8px; font-size: 19px; }
.modal p { color: var(--muted); margin: 0 0 18px; }
.modal .btn + .btn { margin-top: 10px; }

.center { text-align: center; }
.mt { margin-top: 16px; }
.muted { color: var(--muted); }

/* ---------- Přihlášení ---------- */
.login {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 24px; padding-top: calc(24px + var(--safe-top));
}
.login-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 20px;
  box-shadow: var(--shadow); padding: 32px 24px; width: 100%; max-width: 380px; text-align: center;
}
.login-logo { font-size: 54px; margin-bottom: 8px; }
.login-card h1 { margin: 0 0 6px; font-size: 24px; }
.login-card .field { margin: 20px 0 12px; text-align: left; }
.login-card .btn { margin-top: 4px; }
.login-err { color: var(--danger); font-size: 14px; font-weight: 600; margin: 0 0 12px; }
.pw-field { position: relative; }
.pw-field input { padding-right: 48px; }
.pw-toggle {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  border: none; background: transparent; font-size: 20px; padding: 8px;
  opacity: .5; line-height: 1;
}
.pw-toggle.on { opacity: 1; }

/* ---------- Boční menu (web) / hamburger (mobil) ---------- */
.home-layout { display: block; }
.sidebar { display: none; }
@media (min-width: 1024px) {
  .home-layout { display: grid; grid-template-columns: 210px 1fr; gap: 30px; align-items: start; }
  .sidebar { display: block; position: sticky; top: 74px; }
  .home-hamburger { display: none; }
}
.sidebar-head { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); padding: 4px 12px 10px; }
.sidebar .drawer-item { padding: 10px 12px; border-radius: 10px; }

/* Detail receptu s bočním panelem (web) */
.detail-layout { display: block; }
.detail-main { min-width: 0; }
@media (min-width: 1024px) {
  .detail-layout { display: grid; grid-template-columns: 210px 1fr; gap: 30px; align-items: start; padding: 12px 16px 0; }
  .detail-main .detail-hero { border-radius: 16px; }
}

/* ---------- Zásuvka s kategoriemi ---------- */
.drawer-back {
  position: fixed; inset: 0; background: rgba(20,16,10,.45); z-index: 150;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.drawer-back.show { opacity: 1; pointer-events: auto; }
.drawer {
  position: absolute; top: 0; bottom: 0; left: 0; width: 280px; max-width: 82%;
  background: var(--surface); transform: translateX(-100%); transition: transform .25s;
  padding: calc(16px + var(--safe-top)) 0 16px; overflow-y: auto;
  box-shadow: 2px 0 16px rgba(40,33,20,.12);
}
.drawer-back.show .drawer { transform: none; }
.drawer-head { font-size: 19px; font-weight: 700; padding: 0 18px 12px; }
.drawer-item {
  display: block; width: 100%; text-align: left; border: none; background: transparent;
  padding: 12px 18px; font-size: 15px; font-weight: 600; color: var(--text);
}
.drawer-item.on { background: var(--accent-soft); color: var(--accent-dark); }
.drawer-item:active { background: var(--surface-2); }
.drawer-sub { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); padding: 16px 18px 6px; }
.sidebar .drawer-sub { padding: 16px 12px 6px; }
.drawer-toggle { display: flex; align-items: center; gap: 6px; width: 100%; text-align: left; border: none; background: transparent; cursor: pointer; }
.drawer-toggle:active { color: var(--text); }
.drawer-caret { font-size: 10px; }

/* ---------- Spodní lišta ---------- */
.bottomnav {
  position: fixed; left: 50%; transform: translateX(-50%); bottom: 0; z-index: 40;
  width: 100%; max-width: min(var(--app-max), 640px);
  display: flex; background: var(--surface);
  border-top: 1px solid var(--line);
  padding-bottom: var(--safe-bottom);
  box-shadow: 0 -2px 12px rgba(40, 33, 20, 0.05);
}
.navbtn {
  flex: 1; border: none; background: transparent; color: var(--muted);
  padding: 8px 4px 10px; display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-size: 11.5px; font-weight: 600;
}
.navbtn .ni { font-size: 22px; line-height: 1; filter: grayscale(1); opacity: .6; }
.navbtn.active { color: var(--accent-dark); }
.navbtn.active .ni { filter: none; opacity: 1; }
.navbtn:active { transform: scale(0.92); }

/* ---------- Nákupní seznam ---------- */
.shop { list-style: none; padding: 0; margin: 8px 0 0; }
.shop-item {
  display: flex; align-items: center; gap: 12px; padding: 12px 4px;
  border-bottom: 1px solid var(--line);
}
.shop-item .chk {
  flex: none; width: 26px; height: 26px; border-radius: 8px;
  border: 2px solid var(--line); background: var(--surface);
  color: #fff; font-size: 15px; font-weight: 800; display: grid; place-items: center;
}
.shop-item.done .chk { background: var(--accent); border-color: var(--accent); }
.shop-item .txt { flex: 1; line-height: 1.3; }
.shop-item .txt .src { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.shop-item.done .txt { color: var(--muted); text-decoration: line-through; }
.shop-item .del { border: none; background: transparent; color: var(--muted); font-size: 16px; padding: 6px; }
.shop-sep { list-style: none; color: var(--muted); font-size: 12.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em; padding: 16px 4px 6px; }

/* ---------- Plánovač týdne ---------- */
.week { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.day { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px; box-shadow: var(--shadow); }
.day-head { display: flex; align-items: center; justify-content: space-between; font-weight: 700; }
.day-add { border: none; background: var(--accent-soft); color: var(--accent-dark);
  font-weight: 700; font-size: 13px; padding: 6px 12px; border-radius: 999px; }
.day-add:active { transform: scale(0.95); }
.day-empty { color: var(--muted); padding: 8px 0 2px; }
.day-list { list-style: none; padding: 0; margin: 8px 0 0; }
.day-list li { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-top: 1px solid var(--line); }
.dl-thumb { flex: none; width: 38px; height: 38px; border-radius: 9px; object-fit: cover; background: var(--surface-2); }
.dl-thumb--emoji { display: grid; place-items: center; font-size: 20px; }
.day-list .dl-title { flex: 1; color: var(--accent-dark); font-weight: 600; }
.day-list .dl-del { border: none; background: transparent; color: var(--muted); font-size: 15px; padding: 4px 6px; }

/* ---------- Picker (v modalu) ---------- */
.picker { max-height: 50vh; overflow-y: auto; margin: 0 -4px 16px; }
.picker-item {
  display: block; width: 100%; text-align: left; border: none;
  background: var(--surface-2); color: var(--text); border-radius: 12px;
  padding: 13px 14px; font-size: 15.5px; font-weight: 600; margin-bottom: 8px;
}
.picker-item:active { transform: scale(0.98); background: var(--accent-soft); }
