/* ============================================================
   КЛИМАТ ПРО — системные состояния. Токены из styles.css.
   ============================================================ */
@keyframes skpulse { 0%,100% { opacity: 1; } 50% { opacity: .45; } }
.sk { background: var(--surface-3); border-radius: var(--r-sm); animation: skpulse 1.3s ease-in-out infinite; }
.sk-stack { display: flex; flex-direction: column; gap: 10px; }
.sk-line { height: 14px; }
.sk-box { width: 100%; }

.state-empty { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; padding: 44px 24px; }
.state-empty.compact { padding: 26px 18px; gap: 8px; }
.state-empty p { max-width: 460px; line-height: 1.55; margin: 0; }
.state-ic { width: 64px; height: 64px; border-radius: 50%; background: var(--surface-2); color: var(--muted); display: grid; place-items: center; }
.state-empty.compact .state-ic { width: 46px; height: 46px; }
.state-ic-warn { background: var(--warm-soft); color: var(--warm); }
.state-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 4px; }
.state-error .state-ic { background: var(--warm-soft); color: var(--warm); }

.price-tbd { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-weight: 600; font-size: 14px; }
.price-tbd.lg { font-size: 17px; color: var(--ink-2); }
.price-tbd svg { color: var(--accent); flex-shrink: 0; }
.compat-tbd { display: inline-flex; align-items: center; gap: 6px; color: var(--accent); font-weight: 600; font-size: 12.5px; }

.formstatus { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: var(--r-md); animation: popIn .24s ease both; }
.formstatus.sent { background: var(--eco-soft); }
.formstatus.sent .formstatus-ic { background: var(--eco); color: #fff; }
.formstatus.error { background: var(--warm-soft); flex-wrap: wrap; }
.formstatus.error .formstatus-ic { background: var(--warm); color: #fff; }
.formstatus-ic { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; }
.formstatus > div { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.formstatus strong { color: var(--ink); }

.state-banner { display: flex; align-items: flex-start; gap: 8px; padding: 11px 14px; border-radius: var(--r-md); font-size: 13.5px; line-height: 1.45; }
.state-banner svg { flex-shrink: 0; margin-top: 1px; }
.state-banner-info { background: var(--accent-tint); color: var(--ink-2); }
.state-banner-info svg { color: var(--accent); }
.state-banner-warn { background: var(--warm-soft); color: var(--ink-2); }
.state-banner-warn svg { color: var(--warm); }
.state-banner-eco { background: var(--eco-soft); color: var(--ink-2); }
.state-banner-eco svg { color: var(--eco); }
