/**
 * Shared calculator wizard chrome — named pills, sticky live total, inline errors.
 */

.silva-calculator-root[data-wizard-chrome="1"] .calc-step-dots {
	display: none;
}

.silva-calculator-root[data-wizard-chrome="1"] .calculator-step > .calc-running-total,
.silva-calculator-root[data-wizard-chrome="1"] .dw-live-total {
	display: none;
}

.swc-step-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 16px;
}

.swc-step-pill {
	display: inline-flex;
	align-items: center;
	padding: 0.45rem 0.9rem;
	font-size: 0.8rem;
	font-weight: 600;
	color: #64748b;
	background: #f8fafc;
	border: 1.5px solid #e2e8f0;
	border-radius: 999px;
	cursor: pointer;
	user-select: none;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.swc-step-pill:hover {
	border-color: #94a3b8;
	color: #1e3a5f;
}

.swc-step-pill.active {
	background: #014385;
	border-color: #014385;
	color: #fff;
}

.swc-step-pill.done {
	background: #e6f0ff;
	border-color: #2f67b7;
	color: #014385;
}

.swc-step-pill[hidden],
.swc-step-pill.is-hidden {
	display: none !important;
}

.swc-live-total {
	position: sticky;
	top: 0;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 0 0 20px;
	padding: 12px 16px;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	box-shadow: 0 4px 14px rgba(1, 67, 133, 0.08);
}

.swc-live-total-label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #64748b;
}

.swc-live-total-note {
	display: block;
	font-size: 12px;
	color: #94a3b8;
}

.swc-live-total-amount {
	font-size: 1.35rem;
	font-weight: 700;
	color: #014385;
	white-space: nowrap;
}

.swc-quote-band {
	margin: 10px 0 16px;
	padding: 12px 14px;
	background: #fffbeb;
	border: 1px solid #f59e0b;
	border-radius: 10px;
}

.swc-quote-label {
	margin: 0 0 4px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #92400e;
}

.swc-quote-range {
	margin: 0 0 8px;
	font-size: 1.15rem;
	font-weight: 700;
	color: #78350f;
}

.swc-quote-assumptions {
	margin: 0;
	padding-left: 18px;
	font-size: 13px;
	color: #78350f;
}

.swc-quote-assumptions li + li {
	margin-top: 4px;
}

.swc-invalid {
	border-color: #dc2626 !important;
	box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12) !important;
}

.swc-field-error {
	display: block;
	margin: 6px 0 0;
	font-size: 13px;
	font-weight: 600;
	color: #dc2626;
}

@media (max-width: 640px) {
	.swc-live-total {
		padding: 10px 12px;
	}
	.swc-live-total-amount {
		font-size: 1.15rem;
	}
}
