.wizard-shell {
	margin-bottom: 2rem;
	padding: 1.5rem;
	border-radius: 20px;
	background: linear-gradient(180deg, #f6f8fb 0%, #ffffff 100%);
	box-shadow: 0 20px 45px rgba(17, 38, 66, 0.08);
}
.wizard-header {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}
.wizard-step {
	flex: 1 1 180px;
	min-width: 0;
	padding: 0.9rem 1rem;
	border: 1px solid #d2dae6;
	border-radius: 16px;
	background: #ffffff;
	color: #4b5c71;
	text-align: left;
	cursor: pointer;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.wizard-step:hover,
.wizard-step:focus {
	border-color: #0d5ea8;
	box-shadow: 0 10px 24px rgba(13, 94, 168, 0.12);
	transform: translateY(-1px);
}
.wizard-step[disabled] {
	cursor: default;
	opacity: 0.6;
	box-shadow: none;
	transform: none;
}
.wizard-step.is-active {
	border-color: #0d5ea8;
	background: #0d5ea8;
	color: #ffffff;
}
.wizard-step.is-complete {
	border-color: #7fb66a;
	background: #edf8e8;
	color: #244b18;
}
.wizard-step-number {
	display: block;
	margin-bottom: 0.35rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.wizard-step-label {
	display: block;
	font-size: 0.98rem;
	font-weight: 600;
	line-height: 1.35;
}
.wizard-panel {
	display: none;
	padding: 1.5rem;
	border-radius: 18px;
	background: #ffffff;
	box-shadow: inset 0 0 0 1px #e4eaf2;
}
.wizard-panel.is-active {
	display: block;
}
.wizard-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	margin-top: 1.5rem;
}
.wizard-footer-spacer {
	flex: 1 1 auto;
}
.wizard-nav-btn {
	min-width: 140px;
}
@media (max-width: 767px) {
	.wizard-shell,
	.wizard-panel {
		padding: 1rem;
	}
	.wizard-footer {
		flex-direction: column-reverse;
		align-items: stretch;
	}
	.wizard-nav-btn {
		width: 100%;
	}
}

.submit-loader {
	display: none;
	width: 1rem;
	height: 1rem;
	margin-left: 0.5rem;
	flex-shrink: 0;
	border: 2px solid rgba(18, 52, 86, 0.28);
	border-top-color: #123456;
	border-radius: 50%;
	animation: submit-spin 0.7s linear infinite;
}
.submit-action-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.submit-btn-label {
	line-height: 1;
}
@keyframes submit-spin {
	to { transform: rotate(360deg); }
}