.nsda-wizard {
	max-width: 720px;
	margin: 0 auto;
	padding: 1.5rem;
	font-family: var(--font-body, inherit);
	color: var(--color-text-body, #333);
}

.nsda-stepper {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem;
	gap: 0.5rem;
}
.nsda-stepper li {
	flex: 1;
	text-align: center;
	padding: 0.5rem;
	border-bottom: 3px solid #ddd;
	font-size: 0.9rem;
	color: #888;
}
.nsda-stepper li.nsda-step-current {
	border-color: var(--color-orange, #FE6E02);
	color: var(--color-text-strong, #1E1E1E);
	font-weight: 600;
}
.nsda-stepper li.nsda-step-done {
	border-color: var(--color-orange, #FE6E02);
	color: var(--color-orange, #FE6E02);
}

.nsda-cart-section {
	margin-bottom: 1.5rem;
}
.nsda-option {
	display: block;
	padding: 0.6rem 0.75rem;
	margin-bottom: 0.4rem;
	border: 1px solid #ddd;
	border-radius: 6px;
	cursor: pointer;
}
.nsda-option input {
	margin-right: 0.5rem;
}

.nsda-order-summary {
	padding: 0.75rem;
	background: var(--color-orange-050, #FFF1E6);
	border-radius: 6px;
	margin: 1rem 0;
	font-size: 1.1rem;
}

.nsda-btn {
	display: inline-block;
	padding: 0.6rem 1.2rem;
	border-radius: 6px;
	border: 1px solid #ccc;
	background: #fff;
	cursor: pointer;
	font-size: 1rem;
}
.nsda-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}
.nsda-btn-primary {
	background: var(--color-orange, #FE6E02);
	border-color: var(--color-orange, #FE6E02);
	color: #fff;
}

.nsda-progress {
	font-weight: 600;
	margin-bottom: 1rem;
}

.nsda-schedule-item {
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 1rem;
	margin-bottom: 1rem;
}
.nsda-schedule-item-noappt {
	background: #f7f7f7;
}
.nsda-item-complete {
	color: #1a7a3c;
	font-weight: 600;
}
.nsda-session-list {
	margin: 0.5rem 0;
	padding-left: 1.2rem;
}

.nsda-scheduler label {
	display: block;
	margin: 0.5rem 0 0.25rem;
}
.nsda-slots {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-top: 0.5rem;
}
.nsda-slot-btn {
	padding: 0.4rem 0.7rem;
	border: 1px solid var(--color-orange, #FE6E02);
	color: var(--color-orange, #FE6E02);
	background: #fff;
	border-radius: 5px;
	cursor: pointer;
	font-size: 0.9rem;
}
.nsda-slot-btn:hover {
	background: var(--color-orange-050, #FFF1E6);
}
.nsda-slot-btn-unavailable {
	border-color: #ddd;
	color: #aaa;
	background: #f2f2f2;
	text-decoration: line-through;
	cursor: not-allowed;
}
.nsda-slot-btn-unavailable:hover {
	background: #f2f2f2;
}
.nsda-day-unavailable {
	color: #888;
	font-style: italic;
}

.nsda-link-btn {
	background: none;
	border: none;
	color: #b00020;
	text-decoration: underline;
	cursor: pointer;
	font-size: 0.85rem;
	padding: 0;
}

.nsda-contact-form label {
	display: block;
	margin-bottom: 0.75rem;
}
.nsda-pickup-choice {
	margin-bottom: 1rem;
}
.nsda-pickup-note {
	display: block;
	font-size: 0.85rem;
	color: #666;
	margin-top: 0.15rem;
}
.nsda-contact-form input {
	display: block;
	width: 100%;
	max-width: 360px;
	padding: 0.5rem;
	margin-top: 0.25rem;
	border: 1px solid #ccc;
	border-radius: 4px;
}

.nsda-error {
	color: #b00020;
	font-weight: 600;
}

.nsda-wizard-success h2 {
	color: #1a7a3c;
}
