:root {
  --bg: #f0f2f5;
  --side: #e8eaee;
  --card: #ffffff;
  --text: #2d3340;
  --muted: #8b93a3;
  --line: #eceef2;
  --pink: #ff4b7d;
  --pink-2: #ff6b93;
  --purple: #7c4dff;
  --danger: #ef5350;
  --ok: #43a047;
  --warn: #fb8c00;
  --shadow: 0 8px 24px rgba(45, 51, 64, 0.06);
  --radius: 12px;
}

* { box-sizing: border-box; }
html, body, #root { min-height: 100%; }
body {
  margin: 0;
  color: var(--text);
  font-family: Inter, "Segoe UI", sans-serif;
  background: var(--bg);
}

a { color: inherit; }
button, input, select, textarea { font: inherit; }

.shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}
.side {
  background: var(--side);
  padding: 28px 18px 20px;
  display: flex;
  flex-direction: column;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 22px;
  text-decoration: none;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
  color: var(--text);
}
.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
  display: inline-block;
  flex: 0 0 auto;
}
.brand-name { color: var(--text); font-weight: 700; white-space: nowrap; }
.brand-name span { font-weight: 700; }
.nav-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 12px 10px;
}
.nav { display: flex; flex-direction: column; gap: 4px; }
.nav a {
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 10px;
  color: #7a8294;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}
.nav a svg { width: 18px; height: 18px; flex: 0 0 auto; opacity: 0.7; }
.nav a.active {
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow);
}
.nav a.active svg { opacity: 1; }
.nav a:hover:not(.active) { background: rgba(255, 255, 255, 0.55); color: var(--text); }
.side-user {
  margin-top: auto;
  padding-top: 18px;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px 12px;
  align-items: center;
  font-size: 13px;
}
.side-user b { display: block; font-size: 13px; }
.side-user .btn { grid-column: 1 / -1; }
.balance { color: var(--pink); font-weight: 600; margin-top: 2px; }

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8aa8, var(--purple));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  flex: 0 0 auto;
}
.avatar.sm { width: 34px; height: 34px; font-size: 11px; }

.workspace { min-width: 0; display: flex; flex-direction: column; flex: 1; }
.topbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 18px 36px 0;
  gap: 10px;
}
.topbar-brand { display: none; }
.topbar-logout { display: none; }
.topbar-actions { display: flex; align-items: center; gap: 10px; }
.tabbar { display: none; }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  background: #eceff3;
}
.lang-btn {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
}
.lang-btn.on {
  background: #fff;
  color: var(--text);
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.08);
}
.auth .lang-switch { margin: 0 0 14px; }
.side .lang-switch { margin: 0 12px 14px; }
.topbar .lang-switch { display: none; }
.icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  color: #9aa3b4;
  text-decoration: none;
  position: relative;
  box-shadow: var(--shadow);
  border: 0;
  cursor: pointer;
}
.icon-btn svg { width: 16px; height: 16px; }
.icon-btn .dot {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 7px;
  height: 7px;
  background: var(--pink);
  border-radius: 50%;
  border: 2px solid #fff;
}

.main { padding: 12px 40px 64px; max-width: 1180px; }
.page-title {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin: 8px 0 6px;
}
.lead { color: var(--muted); margin: 0 0 28px; max-width: 640px; font-size: 15px; }
.grid { display: grid; gap: 18px; }
.grid.cols-2 { grid-template-columns: 1fr 1fr; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.card h2, .card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.muted { color: var(--muted); }
.row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.btn {
  border: 0;
  border-radius: 10px;
  padding: 10px 18px;
  background: var(--pink);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
}
.btn:hover { background: var(--pink-2); }
.btn.ghost {
  background: #f4f5f8;
  color: var(--text);
}
.btn.ghost:hover { background: #eceef3; }
.btn.danger { background: var(--danger); color: #fff; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 13px; color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea,
.plan-form input, .addon-price-form input {
  background: #f7f8fa;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid rgba(255, 75, 125, 0.25);
  border-color: var(--pink);
  background: #fff;
}
.field textarea { min-height: 120px; resize: vertical; }
.hint { font-size: 12px; color: var(--muted); }

.badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: #f4f5f8;
  color: var(--muted);
  font-weight: 600;
}
.badge.ok { color: var(--ok); background: #e8f5e9; }
.badge.warn { color: var(--warn); background: #fff3e0; }
.badge.bad { color: var(--danger); background: #fdecea; }

.catalog-preview {
  width: 96px;
  height: 96px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(145deg, #eef1f6, #d9dee8);
  flex-shrink: 0;
  margin-bottom: 12px;
}
.catalog-preview.large {
  width: min(220px, 100%);
  height: auto;
  aspect-ratio: 1;
  margin-bottom: 18px;
}
.catalog-preview.placeholder { box-shadow: inset 0 0 0 1px rgba(0,0,0,.06); }
.catalog-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.catalog-card .catalog-preview { margin-bottom: 14px; }

.auth {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--bg);
}
.auth-wrap {
  width: min(440px, 100%);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.auth .card { width: 100%; }
.auth .brand { margin-bottom: 8px; }
.auth .btn { width: 100%; text-align: center; }
.auth a { color: var(--pink); font-weight: 600; }

.site-footer {
  margin-top: auto;
  padding: 20px 40px 28px;
  max-width: 1180px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.site-footer.compact {
  padding: 0 4px 8px;
  max-width: none;
}
.site-footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: baseline;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.site-footer.compact .site-footer-inner {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  border-top: 0;
  padding-top: 0;
}
.site-footer-brand {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: baseline;
}
.site-footer-brand .brand-name {
  font-size: 13px;
  letter-spacing: -0.02em;
}
.site-footer-inn { color: var(--muted); }
.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}
.site-footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}
.site-footer-links a:hover { color: var(--text); text-decoration: underline; }
.auth .site-footer-links a { color: var(--muted); font-weight: 500; }
.auth .site-footer-links a:hover { color: var(--text); }

.legal-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}
.legal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 40px 0;
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.legal-top .brand { margin-bottom: 0; }
.legal-main {
  flex: 1;
  padding: 12px 40px 24px;
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.legal-shell .site-footer {
  max-width: 820px;
  margin: 0 auto;
  width: 100%;
}
.legal {
  max-width: 720px;
}
.legal-head { margin-bottom: 8px; }
.legal-meta { margin: 0 0 24px; font-size: 13px; }
.legal-body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
}
.legal-body h2 {
  margin: 28px 0 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.legal-body p { margin: 0 0 12px; }
.legal-body ul {
  margin: 0 0 14px;
  padding-left: 1.2em;
}
.legal-body li { margin-bottom: 6px; }
.legal-body code {
  font-size: 0.92em;
  background: #f4f5f8;
  padding: 1px 6px;
  border-radius: 4px;
}
.workspace .site-footer { padding-left: 40px; padding-right: 40px; }

.steps { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.step {
  padding: 8px 12px;
  border-radius: 999px;
  border: 0;
  color: var(--muted);
  font-size: 12px;
  background: #fff;
  cursor: pointer;
  box-shadow: var(--shadow);
  font-weight: 600;
}
.step.on { background: var(--pink); color: #fff; }
.step.done { color: var(--ok); }

.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th, .table td {
  text-align: left;
  padding: 12px 8px;
  border-bottom: 1px solid var(--line);
}
.table th { color: var(--muted); font-weight: 500; }

.platform {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  user-select: none;
  background: #fff;
}
.platform input[type="checkbox"],
.platform input[type="radio"] {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--pink);
  flex: 0 0 auto;
  pointer-events: none;
}
.platform.on {
  border-color: var(--pink);
  background: #fff5f8;
  box-shadow: inset 0 0 0 1px var(--pink);
}

.asset-block { margin: 22px 0; padding-top: 8px; border-top: 1px solid var(--line); }
.asset-block h3 { margin-bottom: 6px; }
.asset-grid { display: flex; gap: 12px; flex-wrap: wrap; margin: 12px 0; }
.asset-item {
  width: 140px;
  background: #f7f8fa;
  border-radius: 12px;
  padding: 8px;
}
.asset-item img { width: 100%; height: 120px; object-fit: cover; border-radius: 8px; display: block; }
.asset-upload { position: relative; overflow: hidden; }
.asset-upload input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }

.error { color: var(--danger); margin: 0 0 12px; }
.success { color: var(--ok); }
.stat { font-size: 28px; font-weight: 700; letter-spacing: -0.03em; }
.shop-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }

.theme-layout {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 24px;
  align-items: start;
}
.color-pick {
  display: flex;
  align-items: center;
  gap: 10px;
}
.color-pick input[type="color"] {
  width: 48px;
  height: 40px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}
.hex-input {
  width: 110px;
  font-family: ui-monospace, Consolas, monospace;
  text-transform: lowercase;
}
.theme-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 4px;
}
.theme-preset {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.theme-preset span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.theme-preset:hover { border-color: var(--pink); }

.shop-preview {
  width: 210px;
  --shop-bg: #f3f4f7;
  --shop-card: #ffffff;
  --shop-text: #111827;
  --shop-muted: #6b7280;
  --shop-chip: #ffffff;
  --shop-tab-bg: #ffffff;
  --shop-tab-line: #eceef2;
  --shop-tab-muted: #9ca3af;
}
.shop-preview.compact { width: 180px; }
.shop-preview[data-shop-mode="dark"] {
  --shop-bg: #12151c;
  --shop-card: #1c212b;
  --shop-text: #f3f4f6;
  --shop-muted: #a1a8b3;
  --shop-chip: #1c212b;
  --shop-tab-bg: #161a22;
  --shop-tab-line: #2a3140;
  --shop-tab-muted: #8b93a1;
}
.shop-mode {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 3px;
  margin-bottom: 10px;
  background: #eceff3;
  border-radius: 999px;
}
.shop-mode-btn {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 6px 4px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  color: var(--muted);
}
.shop-mode-btn.on {
  background: #fff;
  color: var(--text);
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.08);
}
.shop-phone {
  background: var(--shop-bg);
  border: 8px solid #1a1d24;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  color: var(--shop-text);
}
.shop-status {
  display: flex;
  justify-content: space-between;
  padding: 6px 12px 2px;
  font-size: 9px;
  color: var(--shop-ui-text, #fff);
  background: var(--shop-ui, #2d3340);
}
.shop-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 10px;
  background: var(--shop-ui, #2d3340);
  color: var(--shop-ui-text, #fff);
  font-size: 13px;
}
.shop-header b { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.shop-mark, .shop-bag {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(255,255,255,0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  flex: 0 0 auto;
}
.shop-cats {
  display: flex;
  gap: 6px;
  padding: 8px 10px 4px;
  font-size: 10px;
}
.shop-cats span {
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--shop-chip);
  color: var(--shop-muted);
}
.shop-cats span.on {
  background: var(--shop-ui, #2d3340);
  color: var(--shop-ui-text, #fff);
}
.shop-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 6px 10px 10px;
}
.shop-item {
  background: var(--shop-card);
  border-radius: 10px;
  padding: 6px;
  font-size: 10px;
}
.shop-item p { margin: 6px 0 2px; color: var(--shop-muted); }
.shop-item strong { display: block; margin-bottom: 6px; color: var(--shop-ui, #2d3340); }
.shop-item button {
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: 6px 0;
  background: var(--shop-btn, #ff4b7d);
  color: var(--shop-btn-text, #fff);
  font-size: 10px;
  font-weight: 700;
  cursor: default;
  pointer-events: none;
}
.shop-pic {
  height: 48px;
  border-radius: 8px;
}
.shop-pic.p1 { background: linear-gradient(135deg, #dbeafe, #93c5fd); }
.shop-pic.p2 { background: linear-gradient(135deg, #fce7f3, #f9a8d4); }
.shop-preview[data-shop-mode="dark"] .shop-pic.p1 { background: linear-gradient(135deg, #1e3a5f, #3b82f6); }
.shop-preview[data-shop-mode="dark"] .shop-pic.p2 { background: linear-gradient(135deg, #4c1d3a, #f472b6); }
.shop-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--shop-tab-bg);
  border-top: 1px solid var(--shop-tab-line);
  font-size: 9px;
  text-align: center;
  color: var(--shop-tab-muted);
}
.shop-tabs span { padding: 8px 0; }
.shop-tabs span.on { color: var(--shop-ui, #2d3340); font-weight: 700; }

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 10px;
  box-shadow: var(--shadow);
}
.faq-item summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 600;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .faq-answer {
  padding: 0 18px 16px;
  color: var(--muted);
  white-space: pre-wrap;
  line-height: 1.5;
}

.section-title {
  margin: 36px 0 16px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

@media (max-width: 900px) {
  .shell {
    grid-template-columns: 1fr;
    min-height: 100dvh;
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
  }
  .side { display: none; }
  .topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    justify-content: space-between;
    background: color-mix(in srgb, var(--bg) 88%, transparent);
    backdrop-filter: blur(16px);
    padding: calc(10px + env(safe-area-inset-top, 0px)) 16px 10px;
  }
  .topbar-brand {
    display: flex;
    margin: 0;
    font-size: 18px;
  }
  .topbar-logout { display: grid; }
  .topbar .lang-switch { display: inline-flex; }
  .main {
    padding: 8px 16px calc(24px + env(safe-area-inset-bottom, 0px));
  }
  .workspace .site-footer,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  }
  .legal-top,
  .legal-main {
    padding-left: 16px;
    padding-right: 16px;
  }
  .legal-top { padding-top: calc(14px + env(safe-area-inset-top, 0px)); }
  .tabbar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    align-items: stretch;
    justify-content: space-around;
    gap: 0;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    border-top: 1px solid var(--line);
    padding: 6px 4px calc(6px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -8px 24px rgba(45, 51, 64, 0.06);
  }
  .tabbar a {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-height: 52px;
    padding: 4px 2px 2px;
    text-decoration: none;
    color: #8b93a3;
    font-size: 9px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-align: center;
  }
  .tabbar a svg {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    opacity: 0.75;
  }
  .tabbar a span {
    max-width: 100%;
    overflow: visible;
    white-space: normal;
  }
  .tabbar a.active { color: var(--pink); }
  .tabbar a.active svg { opacity: 1; }
  .tabbar-wide {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .tabbar-wide::-webkit-scrollbar { display: none; }
  .tabbar-wide a {
    flex: 0 0 auto;
    width: 72px;
  }
  .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
  .theme-layout { grid-template-columns: 1fr; }
  .page-title { font-size: 28px; }
  .regru-picker-grid { grid-template-columns: 1fr; }
  .modal-sheet { width: min(560px, 100%); max-height: 92vh; }
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(30, 34, 44, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal-sheet {
  width: min(920px, 100%);
  max-height: 88vh;
  overflow: auto;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 18px 14px;
}
.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.modal-head h3 { margin: 0; }
.modal-foot {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.regru-pick-summary {
  display: grid;
  gap: 8px;
  padding: 12px;
  background: #f6f7fa;
  border-radius: 10px;
  margin-bottom: 10px;
}
.regru-pick-summary strong { display: block; margin-top: 2px; font-weight: 600; }
.regru-picker-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 12px;
}
.regru-picker-col { min-width: 0; }
.regru-filter {
  width: 100%;
  margin-bottom: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  background: #fff;
}
.regru-pick-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 360px;
  overflow: auto;
  padding-right: 2px;
}
.regru-pick-item {
  text-align: left;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.regru-pick-item:hover { border-color: #d0d5e0; background: #fafbfd; }
.regru-pick-item.on {
  border-color: var(--pink);
  background: #fff5f8;
}
.regru-pick-item strong { font-size: 14px; }
.regru-pick-item .muted { font-size: 12px; }

.deploy-settings { margin-top: 8px; }
.deploy-settings-title { margin: 16px 0 6px; font-size: 18px; }
.form-section {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.form-section-title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.02em;
}
.form-section .hint { margin-bottom: 10px; }

.docker-image-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.docker-image-row input[name="docker_image"] {
  flex: 1;
  min-width: 0;
}
.docker-upload-btn {
  flex: 0 0 auto;
  white-space: nowrap;
  align-self: stretch;
  display: inline-flex;
  align-items: center;
}
