:root {
  --bg: #f4f6f7;
  --panel: #ffffff;
  --panel-soft: #f9fafb;
  --text: #111820;
  --muted: #65717c;
  --line: #dfe5e9;
  --brand: #ff6b35;
  --brand-dark: #dc4e1c;
  --brand-soft: #fff0e9;
  --nav: #101820;
  --success: #11875d;
  --success-soft: #e8f7f1;
  --warning: #b76d00;
  --warning-soft: #fff6df;
  --danger: #bf3d3d;
  --danger-soft: #fff0f0;
  --blue: #2166d1;
  --blue-soft: #edf4ff;
  --shadow: 0 18px 55px rgba(16, 24, 32, 0.09);
  --radius: 18px;
  --radius-sm: 12px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}

* { box-sizing: border-box; }
html { min-height: 100%; }
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 107, 53, 0.09), transparent 26rem),
    var(--bg);
}
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: .6; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 12px 13px;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color .16s ease, box-shadow .16s ease;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(255,107,53,.13);
}
textarea { resize: vertical; }
label {
  display: grid;
  gap: 7px;
  color: #39434d;
  font-size: .88rem;
  font-weight: 650;
}
[hidden] { display: none !important; }

.eyebrow {
  margin: 0 0 6px;
  color: var(--brand-dark);
  font-size: .72rem;
  line-height: 1;
  font-weight: 850;
  letter-spacing: .12em;
}
.muted { color: var(--muted); }
.form-error { color: var(--danger); margin: 0; font-size: .88rem; }

.primary-btn, .secondary-btn, .hero-button, .text-btn, .icon-btn {
  border: 0;
  border-radius: 11px;
  font-weight: 750;
  transition: transform .14s ease, background .14s ease, opacity .14s ease;
}
.primary-btn:hover, .secondary-btn:hover, .hero-button:hover, .icon-btn:hover { transform: translateY(-1px); }
.primary-btn {
  background: var(--brand);
  color: #fff;
  padding: 12px 17px;
  box-shadow: 0 9px 20px rgba(255,107,53,.22);
}
.primary-btn:hover { background: var(--brand-dark); }
.secondary-btn {
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  padding: 11px 15px;
}
.full { width: 100%; }
.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 39px;
  height: 39px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  font-size: 1.25rem;
}
.text-btn { color: var(--brand-dark); background: none; padding: 4px; }

.toast {
  position: fixed;
  z-index: 5000;
  right: 24px;
  top: 22px;
  max-width: 390px;
  color: #fff;
  background: var(--nav);
  border-radius: 12px;
  padding: 13px 16px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: .2s ease;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast.success { background: var(--success); }
.toast.error { background: var(--danger); }

.login-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(16,24,32,.98), rgba(16,24,32,.91)),
    radial-gradient(circle at 85% 10%, rgba(255,107,53,.55), transparent 30rem);
}
.login-card {
  width: min(100%, 430px);
  padding: 38px;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0,0,0,.34);
}
.login-card h1 { margin: 0; font-size: 2.25rem; letter-spacing: -.04em; }
.login-copy { color: var(--muted); line-height: 1.55; margin: 10px 0 26px; }
.stack-form { display: grid; gap: 17px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 18px;
  color: #fff;
  background: var(--brand);
  font-weight: 900;
  letter-spacing: -.05em;
  box-shadow: 0 14px 28px rgba(255,107,53,.26);
}
.brand-mark.small { width: 42px; height: 42px; margin: 0; border-radius: 13px; }

.app-shell { min-height: 100vh; }
.sidebar {
  position: fixed;
  z-index: 50;
  inset: 0 auto 0 0;
  width: 268px;
  display: flex;
  flex-direction: column;
  color: #fff;
  background: var(--nav);
  box-shadow: 14px 0 40px rgba(16,24,32,.11);
}
.sidebar-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.sidebar-head strong, .sidebar-head span { display: block; }
.sidebar-head strong { font-size: 1.02rem; }
.sidebar-head span { color: #97a4af; font-size: .8rem; margin-top: 2px; }
.sidebar-head .icon-btn { margin-left: auto; }
.main-nav { display: grid; gap: 5px; padding: 18px 12px; overflow-y: auto; }
.nav-item {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  padding: 12px 13px;
  border: 0;
  border-radius: 11px;
  color: #cad2d8;
  background: transparent;
  text-align: left;
  font-weight: 650;
}
.nav-item:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav-item.active { color: #fff; background: var(--brand); }
.nav-item span { width: 23px; text-align: center; font-size: 1.05rem; }
.sidebar-foot { margin-top: auto; padding: 18px; border-top: 1px solid rgba(255,255,255,.09); }
.user-chip { display: flex; gap: 10px; align-items: center; margin-bottom: 13px; }
.user-chip > span {
  display: grid; place-items: center; flex: 0 0 38px; height: 38px; border-radius: 50%;
  color: #fff; background: rgba(255,255,255,.13); font-weight: 800;
}
.user-chip strong, .user-chip small { display: block; max-width: 165px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.user-chip strong { font-size: .84rem; }
.user-chip small { color: #91a0aa; font-size: .72rem; margin-top: 2px; }
.sidebar .secondary-btn { color: #fff; background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.14); }

.main-content { margin-left: 268px; min-height: 100vh; padding: 0 30px 38px; }
.topbar {
  position: sticky;
  z-index: 30;
  top: 0;
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  background: rgba(244,246,247,.89);
  backdrop-filter: blur(18px);
}
.topbar h2 { margin: 0; font-size: 1.52rem; letter-spacing: -.025em; }
.topbar-actions { display: flex; gap: 10px; margin-left: auto; }
.view-panel { max-width: 1540px; margin: 0 auto; }

.hero-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 6px 0 22px;
  padding: 30px;
  min-height: 190px;
  border-radius: 24px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(16,24,32,.98), rgba(16,24,32,.79)),
    radial-gradient(circle at 88% 20%, var(--brand), transparent 28rem);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-panel h3 { margin: 0 0 10px; font-size: clamp(1.7rem, 3vw, 2.8rem); letter-spacing: -.045em; }
.hero-panel p:not(.eyebrow) { max-width: 680px; margin: 0; color: #d2d9de; line-height: 1.6; }
.hero-button {
  min-width: 205px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  color: #fff;
  background: var(--brand);
}

.stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; margin-bottom: 22px; }
.stat-card {
  position: relative;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(16,24,32,.045);
  overflow: hidden;
}
.stat-card::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  right: -25px;
  top: -28px;
  background: var(--brand-soft);
}
.stat-card .stat-label { color: var(--muted); font-size: .82rem; font-weight: 700; }
.stat-card .stat-value { display: block; margin-top: 8px; font-size: 1.85rem; font-weight: 900; letter-spacing: -.04em; }
.stat-card .stat-sub { display: block; margin-top: 5px; color: var(--muted); font-size: .76rem; }

.content-section {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 8px 28px rgba(16,24,32,.04);
  margin-bottom: 22px;
}
.section-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.section-head h3 { margin: 0; font-size: 1.2rem; letter-spacing: -.025em; }
.quick-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 13px; }
.quick-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 13px;
  row-gap: 3px;
  align-items: center;
  min-height: 96px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  background: #fff;
  text-align: left;
}
.quick-card:hover { border-color: var(--brand); box-shadow: 0 12px 24px rgba(255,107,53,.08); transform: translateY(-1px); }
.quick-card > span { grid-row: 1 / span 2; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--panel-soft); font-size: 1.25rem; }
.quick-card strong { font-size: .94rem; }
.quick-card small { color: var(--muted); line-height: 1.35; }
.quick-card.accent { color: #fff; background: var(--brand); border-color: var(--brand); }
.quick-card.accent small { color: #ffe2d5; }
.quick-card.accent > span { background: rgba(255,255,255,.16); }
.dashboard-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.mini-list { display: grid; gap: 10px; }
.mini-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--panel-soft);
}
.mini-row .mini-icon { display: grid; place-items: center; width: 36px; height: 36px; flex: 0 0 36px; border-radius: 10px; background: #fff; }
.mini-row strong, .mini-row small { display: block; }
.mini-row strong { font-size: .87rem; }
.mini-row small { margin-top: 3px; color: var(--muted); font-size: .75rem; }
.mini-row .mini-value { margin-left: auto; font-weight: 850; }
.mini-empty { color: var(--muted); text-align: center; padding: 24px 10px; }

.toolbar-panel {
  display: grid;
  grid-template-columns: minmax(280px,1fr) 210px 210px;
  gap: 12px;
  margin: 6px 0 22px;
  padding: 14px;
  border-radius: 15px;
  border: 1px solid var(--line);
  background: var(--panel);
}
.search-wrap { position: relative; }
.search-wrap > span { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.search-wrap input { padding-left: 38px; }
.list-head { margin: 0 0 16px; }
.products-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 10px 28px rgba(16,24,32,.05);
}
.product-card:hover { border-color: #cdd5da; transform: translateY(-2px); box-shadow: 0 16px 36px rgba(16,24,32,.09); }
.product-image {
  position: relative;
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #eef1f3;
  color: #86939d;
  font-size: 2rem;
}
.product-image > span { position: absolute; z-index: 0; }
.product-image img { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.product-image .card-badges { z-index: 2; }
.card-badges { position: absolute; top: 12px; left: 12px; right: 12px; display: flex; justify-content: space-between; gap: 8px; }
.badge { display: inline-flex; align-items: center; width: fit-content; padding: 6px 9px; border-radius: 999px; font-size: .68rem; font-weight: 850; background: rgba(255,255,255,.93); color: var(--text); box-shadow: 0 5px 15px rgba(0,0,0,.1); }
.badge.low { color: var(--danger); }
.card-body { padding: 16px; display: flex; flex: 1; flex-direction: column; }
.card-body h3 { margin: 0; font-size: 1.03rem; letter-spacing: -.02em; }
.card-meta { display: flex; flex-wrap: wrap; gap: 6px 12px; margin: 7px 0 14px; color: var(--muted); font-size: .76rem; }
.card-price-row { display: flex; justify-content: space-between; align-items: end; gap: 12px; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); }
.card-price strong { display: block; font-size: 1.12rem; }
.card-price small { color: var(--muted); }
.stock-pill { padding: 8px 10px; border-radius: 10px; color: var(--success); background: var(--success-soft); font-size: .74rem; font-weight: 850; }
.stock-pill.zero { color: var(--danger); background: var(--danger-soft); }
.card-actions { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: 12px; }
.card-actions button { padding: 9px 11px; }


.product-card.inactive { opacity: .74; filter: grayscale(.18); }
.product-menu-wrap { position: absolute; z-index: 6; top: 10px; right: 10px; }
.product-menu-toggle {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0 0 5px;
  border: 1px solid rgba(17,24,32,.09);
  border-radius: 11px;
  color: var(--text);
  background: rgba(255,255,255,.95);
  box-shadow: 0 5px 18px rgba(0,0,0,.13);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
}
.product-menu-toggle:hover { background: #fff; transform: translateY(-1px); }
.product-menu {
  position: absolute;
  top: 44px;
  right: 0;
  width: 215px;
  overflow: hidden;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(16,24,32,.22);
}
.product-menu button {
  width: 100%;
  display: grid;
  grid-template-columns: 23px 1fr;
  align-items: center;
  gap: 8px;
  padding: 10px 11px;
  border: 0;
  border-radius: 9px;
  color: var(--text);
  background: transparent;
  text-align: left;
  font-size: .82rem;
  font-weight: 700;
}
.product-menu button:hover { background: var(--panel-soft); }
.product-menu .danger-action { color: var(--danger); }
.product-menu .danger-action:hover { background: var(--danger-soft); }
.product-menu-separator { height: 1px; margin: 5px 4px; background: var(--line); }
.card-badges { right: 58px; }
.badge.passive { color: #5d6670; background: #eef1f3; }
.small-dialog { width: min(92vw, 480px); }
.stock-adjust-summary { display: grid; grid-template-columns: 1fr auto; gap: 14px; margin: 22px 0 16px; padding: 15px; border-radius: 13px; background: var(--panel-soft); }
.stock-adjust-summary small, .stock-adjust-summary strong { display: block; }
.stock-adjust-summary small { margin-bottom: 4px; color: var(--muted); font-size: .74rem; }
.stock-adjust-summary > div:last-child { text-align: right; }

.empty-state { text-align: center; padding: 70px 24px; color: var(--muted); }
.empty-state > div { font-size: 2.8rem; }
.empty-state h3 { margin: 12px 0 7px; color: var(--text); }
.empty-state p { margin: 0; }

.table-wrap { overflow: auto; border: 1px solid var(--line); border-radius: 15px; background: var(--panel); }
table { width: 100%; min-width: 930px; border-collapse: collapse; }
th, td { padding: 14px 15px; border-bottom: 1px solid var(--line); text-align: left; font-size: .84rem; }
th { color: var(--muted); background: var(--panel-soft); font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; }
tbody tr:hover { background: #fffaf7; }
.direction-chip { display: inline-flex; padding: 6px 9px; border-radius: 999px; background: var(--blue-soft); color: var(--blue); font-size: .72rem; font-weight: 800; }
.direction-chip.out { color: var(--warning); background: var(--warning-soft); }

.app-dialog {
  width: min(94vw, 650px);
  max-height: 92vh;
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 20px;
  color: var(--text);
  background: #fff;
  box-shadow: 0 30px 100px rgba(0,0,0,.28);
}
.app-dialog::backdrop { background: rgba(5,12,18,.66); backdrop-filter: blur(3px); }
.wide-dialog { width: min(95vw, 1050px); }
.detail-dialog { width: min(95vw, 930px); }
.app-dialog form { padding: 0 24px 24px; }
.dialog-head {
  position: sticky;
  z-index: 5;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 21px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
}
.dialog-head h3 { margin: 0; font-size: 1.3rem; }
.form-section { padding: 22px 0; border-bottom: 1px solid var(--line); }
.form-section h4 { margin: 0 0 15px; font-size: 1rem; }
.form-grid { display: grid; gap: 14px; }
.form-grid.three { grid-template-columns: repeat(3, minmax(0,1fr)); }
.span-2 { grid-column: span 2; }
.span-3 { grid-column: span 3; }
.checkbox-label { display: flex; align-items: center; gap: 9px; align-self: end; min-height: 45px; }
.checkbox-label input { width: 18px; height: 18px; accent-color: var(--brand); }
.conditional { margin-top: 14px; }
.upload-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.upload-box {
  min-height: 122px;
  place-items: center;
  align-content: center;
  text-align: center;
  padding: 17px;
  border: 1px dashed #b9c3ca;
  border-radius: 14px;
  background: var(--panel-soft);
}
.upload-box input { border: 0; padding: 0; background: transparent; }
.upload-box span { margin-top: 7px; font-weight: 800; }
.upload-box small { color: var(--muted); font-weight: 500; }
.image-preview-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.image-preview { width: 76px; height: 76px; border-radius: 10px; overflow: hidden; background: #eef1f3; }
.image-preview img { width: 100%; height: 100%; object-fit: cover; }
.dialog-actions { display: flex; justify-content: flex-end; gap: 10px; padding-top: 22px; }
.info-note { margin-top: 16px; padding: 13px 14px; border-radius: 11px; color: #43505a; background: var(--blue-soft); font-size: .84rem; line-height: 1.5; }

.detail-wrap { padding-bottom: 24px; }
.detail-hero { display: grid; grid-template-columns: minmax(280px,.9fr) 1.1fr; gap: 24px; padding: 24px; }
.detail-main-image { aspect-ratio: 4/3; overflow: hidden; border-radius: 16px; background: #eef1f3; display: grid; place-items: center; font-size: 2.5rem; }
.detail-main-image img { width: 100%; height: 100%; object-fit: cover; }
.detail-copy h2 { margin: 6px 0 8px; font-size: 1.8rem; }
.detail-copy .detail-price { margin: 20px 0 8px; font-size: 1.65rem; font-weight: 900; color: var(--brand-dark); }
.detail-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; padding: 0 24px; }
.detail-item { padding: 13px; border-radius: 12px; background: var(--panel-soft); }
.detail-item small, .detail-item strong { display: block; }
.detail-item small { color: var(--muted); margin-bottom: 4px; }
.detail-text { margin: 20px 24px 0; padding: 17px; border-radius: 14px; background: var(--panel-soft); line-height: 1.6; white-space: pre-wrap; }
.detail-gallery { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 10px; margin: 20px 24px 0; }
.detail-gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 12px; }
.detail-footer { display: flex; justify-content: flex-end; gap: 10px; padding: 22px 24px 0; }

.sidebar-backdrop { display: none; }
.mobile-only { display: none; }

@media (max-width: 1180px) {
  .stats-grid, .products-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .quick-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 940px) {
  .mobile-only { display: inline-grid; }
  .sidebar { transform: translateX(-105%); transition: transform .2s ease; }
  .sidebar.open { transform: translateX(0); }
  .sidebar-backdrop { position: fixed; z-index: 45; inset: 0; background: rgba(4,10,15,.55); }
  .sidebar-backdrop.show { display: block; }
  .main-content { margin-left: 0; padding: 0 18px 30px; }
  .dashboard-columns { grid-template-columns: 1fr; gap: 0; }
  .toolbar-panel { grid-template-columns: 1fr 1fr; }
  .toolbar-panel .search-wrap { grid-column: 1 / -1; }
  .form-grid.three { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .span-3 { grid-column: span 2; }
  .detail-hero { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .topbar { align-items: flex-start; }
  .topbar-actions { flex-wrap: wrap; justify-content: flex-end; }
  .topbar-actions .secondary-btn { display: none; }
  .hero-panel { align-items: flex-start; flex-direction: column; padding: 23px; }
  .hero-button { width: 100%; }
  .stats-grid, .products-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .quick-grid { grid-template-columns: 1fr; }
  .upload-grid { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .detail-gallery { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 520px) {
  .main-content { padding: 0 12px 22px; }
  .topbar h2 { font-size: 1.25rem; }
  .topbar-actions .primary-btn { padding: 10px 12px; }
  .stats-grid, .products-grid { grid-template-columns: 1fr; }
  .toolbar-panel { grid-template-columns: 1fr; }
  .form-grid.three { grid-template-columns: 1fr; }
  .span-2, .span-3 { grid-column: span 1; }
  .app-dialog form { padding: 0 16px 18px; }
  .dialog-head { padding: 18px 16px; }
  .dialog-actions { position: sticky; bottom: 0; padding: 14px 0 0; background: #fff; }
  .detail-grid { grid-template-columns: 1fr; }
  .product-menu { width: 205px; }
  .detail-hero, .detail-grid { padding-left: 16px; padding-right: 16px; }
  .detail-text, .detail-gallery { margin-left: 16px; margin-right: 16px; }
}

.security-note{margin:12px 0 18px;padding:10px 12px;border:1px solid var(--line);border-radius:10px;background:var(--panel-soft);color:var(--muted);font-size:.78rem;line-height:1.45}.field-note{display:block;margin-top:3px;color:var(--muted);font-size:.75rem;line-height:1.35}input:disabled{background:#eef1f3;color:#65717c;cursor:not-allowed}
