.bp-wizard {
	--bp-maroon: #5c1a3a;
	--bp-maroon-dark: #4a1530;
	--bp-mauve-track: #cba9b1;
	--bp-mauve-btn: #b4939b;
	--bp-mauve-btn-hover: #a37f88;
	--bp-box-bg: #ececec;
	--bp-text: #3a3a3a;
	max-width: 640px;
	margin: 0 auto;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: var(--bp-text);
}

.bp-wizard * { box-sizing: border-box; }

.bp-card {
	background: #fff;
	padding: 32px 28px 24px;
}

.bp-title {
	color: var(--bp-maroon);
	font-size: 32px;
	font-weight: 700;
	margin: 0 0 14px;
}

.bp-subtitle {
	font-size: 18px;
	color: #444;
	margin-bottom: 26px;
}

.bp-progress-wrap {
	margin-bottom: 22px;
}

.bp-step-label {
	color: var(--bp-maroon);
	font-size: 15px;
	margin-bottom: 10px;
}

.bp-progress-track {
	background: var(--bp-mauve-track);
	height: 8px;
	border-radius: 5px;
	overflow: hidden;
}

.bp-progress-fill {
	background: var(--bp-maroon);
	height: 100%;
	border-radius: 5px;
	transition: width .25s ease;
}

.bp-box {
	background: var(--bp-box-bg);
	border-radius: 10px;
	padding: 6px 20px;
}

.bp-box-pad { padding: 20px; }

.bp-service-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 0;
	border-bottom: 1px solid #ddd;
	cursor: pointer;
}
.bp-service-row:last-child { border-bottom: none; }

.bp-service-title {
	color: var(--bp-maroon);
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 6px;
}

.bp-service-meta {
	display: flex;
	gap: 16px;
	align-items: baseline;
}

.bp-service-price {
	color: var(--bp-maroon);
	font-weight: 700;
	font-size: 15px;
}

.bp-service-duration {
	color: #8a8a8a;
	font-size: 15px;
}

.bp-service-desc {
	color: #666;
	font-size: 14px;
	margin-top: 6px;
}

.bp-service-checkbox {
	appearance: none;
	-webkit-appearance: none;
	width: 26px;
	height: 26px;
	min-width: 26px;
	border: 2px solid var(--bp-maroon);
	border-radius: 4px;
	background: #d8d8d8;
	cursor: pointer;
	position: relative;
}
.bp-service-checkbox:checked {
	background: var(--bp-maroon);
}
.bp-service-checkbox:checked::after {
	content: "";
	position: absolute;
	left: 8px;
	top: 3px;
	width: 6px;
	height: 12px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

/* Calendar (step 2) */
.bp-calendar-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
}
.bp-cal-month-label {
	color: var(--bp-maroon);
	font-weight: 700;
	font-size: 18px;
}
.bp-nav-btn {
	background: none;
	border: 2px solid var(--bp-maroon);
	color: var(--bp-maroon);
	width: 32px;
	height: 32px;
	border-radius: 50%;
	font-size: 18px;
	cursor: pointer;
	line-height: 1;
}
.bp-cal-weekdays {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	text-align: center;
	font-size: 13px;
	color: #8a8a8a;
	margin-bottom: 8px;
}
.bp-cal-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 4px;
}
.bp-cal-day {
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	cursor: pointer;
	font-size: 14px;
	color: var(--bp-text);
}
.bp-cal-day.bp-disabled {
	color: #ccc;
	cursor: not-allowed;
}
.bp-cal-day.bp-empty { visibility: hidden; }
.bp-cal-day:not(.bp-disabled):not(.bp-empty):hover {
	background: var(--bp-mauve-track);
}
.bp-cal-day.bp-selected {
	background: var(--bp-maroon);
	color: #fff;
}

/* Time slots (step 3) */
.bp-slots-date-label {
	color: var(--bp-maroon);
	font-weight: 700;
	margin-bottom: 14px;
	font-size: 16px;
}
.bp-slots-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
	gap: 10px;
}
.bp-slot-btn {
	background: #fff;
	border: 2px solid var(--bp-maroon);
	color: var(--bp-maroon);
	padding: 10px 6px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 15px;
	font-weight: 600;
}
.bp-slot-btn.bp-selected {
	background: var(--bp-maroon);
	color: #fff;
}
.bp-slots-empty {
	color: #888;
	padding: 10px 0;
}

/* Form (step 4) */
.bp-field {
	margin-bottom: 16px;
}
.bp-field label {
	display: block;
	color: var(--bp-maroon);
	font-weight: 600;
	margin-bottom: 6px;
	font-size: 14px;
}
.bp-field input {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #c9c9c9;
	border-radius: 6px;
	font-size: 15px;
	background: #fff;
}
.bp-field input:focus {
	outline: none;
	border-color: var(--bp-maroon);
}

/* Summary (step 5) */
.bp-summary-row {
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
	border-bottom: 1px solid #ddd;
}
.bp-summary-row:last-child { border-bottom: none; }
.bp-summary-label { color: #666; }
.bp-summary-value { color: var(--bp-maroon); font-weight: 600; text-align: right; }

.bp-confirm-message {
	text-align: center;
	padding: 30px 10px;
	color: var(--bp-maroon);
	font-size: 18px;
	font-weight: 600;
}

/* Footer */
.bp-footer {
	margin-top: 26px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 14px;
}
.bp-subtotal {
	color: #888;
	font-size: 18px;
}
.bp-subtotal strong {
	color: var(--bp-maroon);
	font-size: 20px;
}
.bp-buttons {
	display: flex;
	gap: 10px;
	margin-left: auto;
}
.bp-btn {
	border: none;
	border-radius: 30px;
	padding: 14px 34px;
	font-size: 16px;
	cursor: pointer;
	font-weight: 500;
}
.bp-btn-primary {
	background: var(--bp-mauve-btn);
	color: #fff;
}
.bp-btn-primary:hover:not(:disabled) {
	background: var(--bp-mauve-btn-hover);
}
.bp-btn-primary:disabled {
	opacity: .6;
	cursor: not-allowed;
}
.bp-btn-secondary {
	background: transparent;
	color: var(--bp-maroon);
	border: 2px solid var(--bp-maroon);
}

@media (max-width: 480px) {
	.bp-card { padding: 24px 16px 18px; }
	.bp-title { font-size: 26px; }
	.bp-footer { flex-direction: column; align-items: stretch; }
	.bp-buttons { margin-left: 0; justify-content: stretch; }
	.bp-btn { flex: 1; }
}
