/* ============================================================
   Components — header, nav, cards, chips, pills, sheets,
   steppers, inputs, toasts. iOS-fintech aesthetic per refs.
   ============================================================ */

/* ------------------------------------------------ App header */
.app-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  min-height: var(--header-h);
  padding: calc(env(safe-area-inset-top, 0px) + 8px) var(--sp-4) 8px;
  background: var(--header-blur-bg);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.app-header .logo {
  height: 22px;
  width: auto;
  cursor: pointer;
}
/* wordmark is Philips blue — render it white on dark surfaces */
[data-theme='dark'] .app-header .logo {
  filter: brightness(0) invert(1);
}

.header-spacer { flex: 1; }

.stock-stamp {
  font-size: var(--fs-xs);
  color: var(--text-3);
  white-space: nowrap;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: var(--touch);
  min-height: var(--touch);
  border-radius: var(--r-pill);
  color: var(--text-2);
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.icon-btn:active { transform: scale(0.92); }
.icon-btn:hover { background: var(--tint); }
.icon-btn svg { width: 22px; height: 22px; }

.lang-btn {
  font-weight: 700;
  font-size: var(--fs-sm);
  padding-inline: var(--sp-3);
  border: 1px solid var(--border-strong);
  color: var(--text-2);
}

/* ------------------------------------------------ Bottom nav */
.bottom-nav {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  max-width: var(--content-max);
  margin-inline: auto;
  height: calc(var(--nav-h) + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: var(--card);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-2);
}

.nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--text-3);
  transition: color var(--t-fast) var(--ease);
  position: relative;
}
.nav-item svg { width: 23px; height: 23px; }
.nav-item[aria-current='page'] { color: var(--primary); }
[data-theme='dark'] .nav-item[aria-current='page'] { color: var(--accent); }

/* Center "More Items" emphasised button */
.nav-item.center .nav-orb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-top: -20px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--philips-blue), var(--philips-navy));
  color: #fff;
  box-shadow: 0 6px 16px rgba(11, 94, 215, 0.4);
}
.nav-item.center .nav-orb svg { width: 22px; height: 22px; }

.nav-badge {
  position: absolute;
  top: 6px;
  inset-inline-end: calc(50% - 20px);
  min-width: 17px;
  height: 17px;
  padding-inline: 4px;
  border-radius: var(--r-pill);
  background: var(--bad);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ------------------------------------------------ Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: var(--touch);
  padding: 10px var(--sp-5);
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: var(--fs-base);
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease),
    box-shadow var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease);
}
.btn:active { transform: scale(0.97); }
.btn:disabled { opacity: 0.45; pointer-events: none; }
.btn svg { width: 20px; height: 20px; flex: none; }

.btn-primary {
  background: var(--primary);
  color: var(--on-primary);
  box-shadow: 0 4px 14px rgba(11, 94, 215, 0.35);
}
.btn-primary:hover { background: var(--primary-press); }

.btn-tonal {
  background: var(--tint);
  color: var(--primary);
}
[data-theme='dark'] .btn-tonal { color: var(--accent); }
.btn-tonal:hover { background: var(--tint-strong); }

.btn-outline {
  border: 1.5px solid var(--border-strong);
  color: var(--text-2);
  background: var(--card);
}

.btn-danger { background: var(--bad-bg); color: var(--bad); }

.btn-sm {
  min-height: 44px;
  padding: 6px var(--sp-4);
  font-size: var(--fs-sm);
}

.btn-block { width: 100%; }

/* ------------------------------------------------ Cards */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-1);
}

.card-press {
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-med) var(--ease);
}
.card-press:active { transform: scale(0.985); }

/* ------------------------------------------------ Chips */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  font-size: var(--fs-xs);
  font-weight: 700;
  white-space: nowrap;
}
.chip::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.chip.ok { background: var(--ok-bg); color: var(--ok); }
.chip.warn { background: var(--warn-bg); color: var(--warn); }
.chip.bad { background: var(--bad-bg); color: var(--bad); }
.chip.promo { background: var(--promo-bg); color: var(--promo); }
.chip.plain { background: var(--tint); color: var(--text-2); }
.chip.plain::before, .chip.promo::before { display: none; }

/* Spec chips on family cards (warranty / lifetime / IP) */
.spec-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: var(--r-pill);
  background: var(--tint);
  color: var(--text-2);
  font-size: var(--fs-xs);
  font-weight: 600;
  white-space: nowrap;
}

/* ------------------------------------------------ Category bar */
.cat-bar {
  display: flex;
  gap: var(--sp-2);
  overflow-x: auto;
  padding: var(--sp-3) var(--sp-4);
  margin-inline: calc(var(--sp-4) * -1);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.cat-bar::-webkit-scrollbar { display: none; }

.cat-pill {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 7px var(--sp-4);
  border-radius: var(--r-pill);
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-weight: 600;
  font-size: var(--fs-sm);
  transition: all var(--t-fast) var(--ease);
}
.cat-pill[aria-pressed='true'] {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--on-primary);
  box-shadow: 0 3px 10px rgba(11, 94, 215, 0.3);
}

/* ------------------------------------------------ Search + toolbar */
.toolbar {
  display: flex;
  gap: var(--sp-2);
  align-items: center;
  margin-top: var(--sp-2);
}

.search-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding-inline: var(--sp-4);
  min-height: var(--touch);
}
.search-wrap svg { width: 18px; height: 18px; color: var(--text-3); flex: none; }
.search-wrap input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  min-height: var(--touch);
}
.search-wrap input::placeholder { color: var(--text-3); }

.view-toggle {
  display: flex;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  overflow: hidden;
}
.view-toggle button {
  min-width: var(--touch);
  min-height: var(--touch);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
}
.view-toggle button[aria-pressed='true'] {
  background: var(--tint);
  color: var(--primary);
}
[data-theme='dark'] .view-toggle button[aria-pressed='true'] { color: var(--accent); }
.view-toggle svg { width: 19px; height: 19px; }

/* ------------------------------------------------ Family cards (sketch layout) */
.family-grid {
  display: grid;
  gap: var(--sp-4);
  margin-top: var(--sp-4);
  grid-template-columns: 1fr;
}
/* grid view: 2-up on phones, more on wider screens */
.family-grid.grid-view { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px) {
  .family-grid { grid-template-columns: repeat(2, 1fr); }
  .family-grid.grid-view { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .family-grid { grid-template-columns: repeat(3, 1fr); }
  .family-grid.grid-view { grid-template-columns: repeat(4, 1fr); }
}

/* No overflow clip / fixed intrinsic size on the card itself — height
   must grow with content so names, specs and chips are never cut off.
   The image corners are rounded by clipping the img-wrap instead. */
.family-card {
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* grid item must be allowed to shrink below its content, otherwise a
     long chip/name can push a 2-up column past the screen edge */
  min-width: 0;
}

.family-card .img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--img-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  flex: none;
}
.grid-view .family-card .img-wrap { aspect-ratio: 1 / 1; }

.family-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--sp-3);
  transition: transform var(--t-med) var(--ease);
}
.family-card:hover .img-wrap img { transform: scale(1.04); }

.family-card .ip-chip {
  position: absolute;
  bottom: var(--sp-2);
  inset-inline-start: var(--sp-2);
}

.family-card .body {
  padding: var(--sp-3) var(--sp-4) var(--sp-4);
  display: grid;
  gap: 6px;
  min-width: 0;
  flex: 1;
}

.family-card h3 {
  font-size: var(--fs-md);
  font-weight: 800;
  line-height: 1.25;
  /* wrap to 3 lines, then clean ellipsis — never a mid-word clip */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.family-card .tier {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.fam-specs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-1) var(--sp-4);
  font-size: var(--fs-sm);
  color: var(--text-2);
  min-width: 0;
}
.fam-specs > span { min-width: 0; }
/* long spec/temperature strings wrap instead of overflowing the card */
.fam-specs .val {
  font-weight: 700;
  color: var(--text);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.fam-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-1);
  margin-top: 2px;
  min-width: 0;
}
.fam-chips .chip,
.fam-chips .spec-chip { max-width: 100%; }

.fam-count {
  font-size: var(--fs-xs);
  color: var(--text-3);
}

/* Grid view is narrower — tighten type so everything fits and wraps */
.grid-view .family-card h3 {
  font-size: var(--fs-base);
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.grid-view .fam-specs { font-size: var(--fs-xs); }
.grid-view .fam-chips { gap: 4px; }

/* ------------------------------------------------ Bottom sheet / modal */
.sheet-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--overlay);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
}
.sheet-backdrop.open { opacity: 1; }

.sheet {
  position: fixed;
  z-index: 95;
  inset-inline: 0;
  bottom: 0;
  max-width: 720px;
  margin-inline: auto;
  max-height: 88dvh;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  box-shadow: var(--shadow-sheet);
  transform: translateY(100%);
  transition: transform var(--t-med) var(--ease);
}
.sheet.open { transform: none; }

@media (min-width: 900px) {
  .sheet {
    inset: 0;
    margin: auto;
    bottom: auto;
    top: 50%;
    transform: translateY(-45%) scale(0.97);
    opacity: 0;
    border-radius: var(--r-xl);
    max-height: 82dvh;
    transition: transform var(--t-med) var(--ease), opacity var(--t-med) var(--ease);
  }
  .sheet.open { transform: translateY(-50%) scale(1); opacity: 1; }
}

.sheet .grab {
  width: 42px;
  height: 5px;
  border-radius: var(--r-pill);
  background: var(--border-strong);
  margin: 10px auto 2px;
  flex: none;
}

.sheet-head {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-5) var(--sp-3);
  border-bottom: 1px solid var(--border);
}
.sheet-head h2 { font-size: var(--fs-lg); font-weight: 800; flex: 1; }
.sheet-body {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: var(--sp-2) var(--sp-5) calc(var(--sp-6) + env(safe-area-inset-bottom, 0px));
}

/* ------------------------------------------------ Variant rows */
.variant-row {
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  gap: var(--sp-2);
}
.variant-row:last-child { border-bottom: 0; }

.variant-top {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
}
.variant-top .name {
  flex: 1;
  font-weight: 700;
  font-size: var(--fs-sm);
  line-height: 1.35;
}
.variant-thumb {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  object-fit: contain;
  background: var(--img-bg);
  padding: 3px;
  flex: none;
}

.article-code {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 7px;
  background: var(--tint);
  color: var(--accent);
  font-weight: 800;
  font-size: var(--fs-sm);
  letter-spacing: 0.03em;
}

.variant-desc {
  font-size: var(--fs-xs);
  color: var(--text-2);
  line-height: 1.4;
}

.variant-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-1) var(--sp-3);
  font-size: var(--fs-xs);
  color: var(--text-3);
}

.variant-price {
  display: flex;
  align-items: baseline;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
}
.variant-price .p { font-weight: 800; font-size: var(--fs-md); color: var(--text); }
.variant-price .per { color: var(--text-3); font-size: var(--fs-xs); }

.variant-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

/* unit toggle (box ⇄ piece) */
.unit-toggle {
  display: inline-flex;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  overflow: hidden;
}
.unit-toggle button {
  min-height: 44px;
  padding: 4px 14px;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--text-3);
}
.unit-toggle button[aria-pressed='true'] {
  background: var(--primary);
  color: var(--on-primary);
}

/* qty stepper */
.stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  overflow: hidden;
}
.stepper button {
  width: var(--touch);
  min-height: 44px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
[data-theme='dark'] .stepper button { color: var(--accent); }
.stepper input {
  width: 46px;
  border: 0;
  outline: 0;
  text-align: center;
  background: transparent;
  font-weight: 800;
  -moz-appearance: textfield;
  appearance: textfield;
}
.stepper input::-webkit-inner-spin-button { display: none; }

/* ------------------------------------------------ Live price calculator */
.price-calc {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-2) var(--sp-3);
  padding: var(--sp-3);
  background: var(--card-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
@media (min-width: 560px) {
  .price-calc { grid-template-columns: repeat(4, 1fr); }
}
.pc-field { display: grid; gap: 4px; min-width: 0; }
.pc-field[hidden] { display: none; }
.pc-field label {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.pc-static {
  font-weight: 800;
  font-size: var(--fs-md);
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.pc-static .per { font-size: var(--fs-xs); color: var(--text-3); font-weight: 600; }
.pc-static.margin-v { color: var(--ok); }
.pc-input {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-sm);
  padding-inline: 10px;
  background: var(--card);
  min-height: 44px;
}
.pc-input:focus-within { border-color: var(--primary); }
.pc-input input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-weight: 700;
  font-size: var(--fs-base);
  -moz-appearance: textfield;
  appearance: textfield;
}
.pc-input input::-webkit-inner-spin-button { display: none; }
.pc-input .suffix { color: var(--text-3); font-size: var(--fs-sm); font-weight: 600; }

/* ------------------------------------------------ Admin */
.admin-tabs {
  display: flex;
  gap: var(--sp-2);
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: var(--sp-3);
}
.admin-tabs::-webkit-scrollbar { display: none; }
.admin-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  background: var(--warn-bg);
  color: var(--warn);
  font-size: var(--fs-xs);
  font-weight: 800;
}
.admin-thumb {
  width: 46px;
  height: 46px;
  border-radius: var(--r-sm);
  object-fit: contain;
  background: var(--img-bg);
  flex: none;
}
.field-error {
  color: var(--bad);
  font-size: var(--fs-xs);
  font-weight: 600;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}

/* ------------------------------------------------ Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: max(env(safe-area-inset-top, 0px), 16px) 12px
           max(env(safe-area-inset-bottom, 0px), 16px);
  background: rgba(3, 7, 16, 0.92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
}
.lightbox.open { opacity: 1; }
.lb-figure {
  margin: 0;
  max-width: 92vw;
  max-height: 88dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
}
.lb-img {
  max-width: 92vw;
  max-height: 78dvh;
  object-fit: contain;
  border-radius: var(--r-md);
  background: #fff;
  padding: var(--sp-4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lb-cap {
  color: #eef3fb;
  font-size: var(--fs-sm);
  font-weight: 600;
  text-align: center;
  max-width: 90vw;
}
.lightbox .lb-close {
  position: absolute;
  top: max(env(safe-area-inset-top, 0px), 14px);
  inset-inline-end: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}
.lightbox .lb-close:hover { background: rgba(255, 255, 255, 0.22); }
.lb-nav {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  flex: none;
}
.lb-nav:hover { background: rgba(255, 255, 255, 0.22); }
.lb-prev svg { transform: scaleX(-1); }
[dir='rtl'] .lb-prev svg { transform: none; }
[dir='rtl'] .lb-next svg { transform: scaleX(-1); }
.lb-count {
  position: absolute;
  bottom: max(env(safe-area-inset-bottom, 0px), 16px);
  inset-inline: 0;
  text-align: center;
  color: #aebcd4;
  font-size: var(--fs-xs);
  font-weight: 700;
}

/* image affordance on cards / rows */
.img-clickable { cursor: zoom-in; }

/* ------------------------------------------------ Inputs */
.field { display: grid; gap: 6px; }
.field label { font-size: var(--fs-sm); font-weight: 700; color: var(--text-2); }
.input {
  min-height: var(--touch);
  padding: 10px var(--sp-4);
  border-radius: var(--r-md);
  border: 1.5px solid var(--border-strong);
  background: var(--card);
  color: var(--text);
  width: 100%;
  transition: border-color var(--t-fast) var(--ease);
}
.input:focus { border-color: var(--primary); outline: none; }

/* ------------------------------------------------ List rows (cart, history, more) */
.row-list { display: grid; gap: var(--sp-3); margin-top: var(--sp-4); }

.list-row {
  padding: var(--sp-4);
  display: grid;
  gap: var(--sp-2);
  content-visibility: auto;
  contain-intrinsic-size: 120px;
}

/* ------------------------------------------------ Toast */
.toast-wrap {
  position: fixed;
  bottom: calc(var(--nav-h) + env(safe-area-inset-bottom, 0px) + var(--sp-4));
  inset-inline: var(--sp-4);
  z-index: 120;
  display: grid;
  gap: var(--sp-2);
  justify-items: center;
  pointer-events: none;
}
.toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  max-width: 480px;
  padding: 12px var(--sp-5);
  border-radius: var(--r-md);
  background: var(--text);
  color: var(--bg);
  font-weight: 600;
  font-size: var(--fs-sm);
  box-shadow: var(--shadow-2);
  animation: toast-in var(--t-med) var(--ease);
}
.toast .btn { min-height: 44px; padding: 4px 12px; font-size: var(--fs-xs); }
@keyframes toast-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

/* ------------------------------------------------ Segmented control */
.segmented {
  display: flex;
  background: var(--tint);
  border-radius: var(--r-pill);
  padding: 3px;
}
.segmented button {
  flex: 1;
  min-height: 44px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--text-2);
  transition: all var(--t-fast) var(--ease);
}
.segmented button[aria-pressed='true'] {
  background: var(--card);
  color: var(--text);
  box-shadow: var(--shadow-1);
}

/* ------------------------------------------------ Empty state */
.empty {
  text-align: center;
  padding: var(--sp-8) var(--sp-4);
  color: var(--text-3);
  display: grid;
  gap: var(--sp-2);
  justify-items: center;
}
.empty svg { width: 48px; height: 48px; opacity: 0.5; }
.empty .t { font-weight: 700; color: var(--text-2); font-size: var(--fs-md); }
