/* ── Modal chrome ────────────────────────────────── */
#registrationModal .modal-content {
	border-radius: 15px;
	border: none;
	box-shadow: 0 15px 40px rgba(0,0,0,.2);
}
#registrationModal .modal-header {
	background-color: #f8f9fc;
	border-bottom: 1px solid #e3e6f0;
	border-radius: 15px 15px 0 0;
	padding: 20px 30px;
}
#registrationModal .modal-footer {
	border-top: none;
	padding: 20px 30px 30px;
}

/* ── Form controls ───────────────────────────────── */
#registrationModal .form-control,
#registrationModal .form-select {
	border-radius: 8px;
	padding: 12px;
	border: 1px solid #e0e0e0;
	background-color: #f8f9fa;
}
#registrationModal .form-control:focus,
#registrationModal .form-select:focus {
	box-shadow: 0 0 0 3px rgba(49,170,57,.25);
	border-color: var(--primary-color);
}
#registrationModal .form-control.is-invalid,
#registrationModal .form-select.is-invalid,
#registrationModal .form-check-input.is-invalid {
	border-color: #dc3545 !important;
	outline: 2px solid #dc3545;
	outline-offset: 1px;
	background-color: #fff8f8;
}

/* ── Buttons ─────────────────────────────────────── */
#registrationModal .btn-primary {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s;
}
#registrationModal .btn-primary:hover {
	background-color: var(--primary-hover);
	border-color: var(--primary-hover);
	transform: translateY(-1px);
}
#registrationModal .text-primary {
	color: var(--primary-color) !important;
}

/* ── Step indicator ──────────────────────────────── */
.step-indicator {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
	position: relative;
}
.step-indicator::before {
	content: '';
	position: absolute;
	top: 15px;
	left: 0; right: 0;
	height: 2px;
	background: #e0e0e0;
	z-index: 0;
}
.step {
	width: 32px; height: 32px;
	background: #fff;
	border: 2px solid #e0e0e0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	color: #858796;
	position: relative;
	z-index: 1;
	transition: all 0.3s;
}
.step.active, .step.completed {
	border-color: var(--primary-color);
	background: var(--primary-color);
	color: white;
}
.step.active {
	box-shadow: 0 0 0 4px rgba(49,170,57,.2);
}

/* ── Step content ────────────────────────────────── */
.step-content {
	display: none;
	animation: fadeIn 0.4s ease;
}
.step-content.active { display: block; }
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* ── Category info panel ─────────────────────────── */
.category-details {
	background: #f8f9fc;
	border-radius: 10px;
	padding: 20px;
	margin-top: 15px;
	border: 1px solid #e3e6f0;
}
.price-tag {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--primary-color);
}

/* ── Order summary card ──────────────────────────── */
.order-summary-card {
	background: #f8f9fc;
	border-radius: 10px;
	padding: 20px;
	border: 1px solid #e3e6f0;
	margin-bottom: 1.5rem;
}

/* ── Membership options ──────────────────────────── */
.membership-option {
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	padding: 15px;
	margin-bottom: 10px;
	cursor: pointer;
	transition: all 0.2s;
}
.membership-option:hover,
.membership-option.selected {
	border-color: var(--primary-color);
	background-color: #f0f4ff;
}

/* ── Stripe Elements ─────────────────────────────── */
.stripe-element {
	padding: 10px 12px;
	height: auto;
	min-height: 42px;
}
.stripe-element.StripeElement--focus {
	border-color: #86b7fe;
	outline: 0;
	box-shadow: 0 0 0 .25rem rgba(13,110,253,.25);
}
.stripe-element.StripeElement--invalid {
	border-color: #dc3545;
}

/* ── Nav buttons ─────────────────────────────────── */
.reg-nav-btn {
	width: 30%;
}
