/* ============================================
   FNL Registration Form Styles
   ============================================ */

/* --- Registration wrapper --- */
.kreg {
	--kreg-label-width: 100px;
	--kreg-input-width: 200px;
	--kreg-grid-gap: 0.5rem;
	background: linear-gradient(160deg, #1a3a3e 0%, #1e4a50 40%, #1a3a3e 100%);
	border-radius: 16px;
	padding: 1rem;
	margin: 0 auto;
	max-width: 860px;
}

/* --- Step Indicator --- */
.kreg__steps {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	margin-bottom: 1rem;
	padding: 0 1rem;
}

.kreg__step {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	opacity: 0.4;
	transition: opacity 0.3s;
}

.kreg__step--active,
.kreg__step--done {
	opacity: 1;
}

.kreg__step-num {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 700;
	font-size: 13px;
	background: rgba(0, 0, 0, 0.3);
	color: rgba(255, 255, 255, 0.5);
	border: 2px solid rgba(255, 255, 255, 0.15);
	transition: all 0.3s;
}

.kreg__step--active .kreg__step-num {
	background: linear-gradient(135deg, #00FFD1, #FF006B);
	color: #000;
	border-color: transparent;
}

.kreg__step--done .kreg__step-num {
	background: var(--kreg-cyan, #00FFD1);
	color: #000;
	border-color: transparent;
}

.kreg__step--done .kreg__step-num::after {
	content: '\2713';
}

.kreg__step-label {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--kreg-light-grey, #B0B0B0);
}

.kreg__step--active .kreg__step-label {
	color: #fff;
}

.kreg__step-line {
	flex: 0 0 60px;
	height: 2px;
	background: rgba(255, 255, 255, 0.1);
	margin: 0 0.75rem;
}

.kreg__reset {
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.25);
	font-size: 18px;
	cursor: pointer;
	padding: 0 0.25rem;
	margin-left: auto;
	transition: color 0.2s;
}

.kreg__reset:hover {
	color: #FF4D6A;
}

.kreg__step-line.kreg__step-line--done {
	background: linear-gradient(90deg, #00FFD1, #FF006B);
}

/* --- Participant Tabs (hidden, replaced by summary nav) --- */
.kreg__participants-badge {
	display: none !important;
}

.kreg__tab {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.3rem 0.65rem;
	background: rgba(0, 0, 0, 0.25);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 6px;
	color: rgba(255, 255, 255, 0.5);
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
}

.kreg__tab:hover {
	border-color: rgba(0, 255, 209, 0.3);
	color: #fff;
}

.kreg__tab--active {
	background: rgba(0, 255, 209, 0.12);
	border-color: rgba(0, 255, 209, 0.3);
	color: var(--kreg-cyan, #00FFD1);
}

.kreg__tab-num {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 700;
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.6);
}

.kreg__tab--active .kreg__tab-num {
	background: var(--kreg-cyan, #00FFD1);
	color: #000;
}

.kreg__tab-remove {
	color: #FF4D6A;
	font-size: 14px;
	line-height: 1;
	cursor: pointer;
	margin-left: 0.15rem;
}

/* --- Consents group --- */
.kreg__consents {
	margin-top: 0.5rem;
	padding-top: 0.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* --- Loading / Error --- */
.kreg__loading {
	text-align: center;
	padding: 4rem 1rem;
	color: var(--kreg-light-grey, #B0B0B0);
	font-family: 'Inter', sans-serif;
}

.kreg__spinner {
	width: 40px;
	height: 40px;
	border: 3px solid rgba(255, 255, 255, 0.1);
	border-top-color: var(--kreg-cyan, #00FFD1);
	border-radius: 50%;
	margin: 0 auto 1rem;
	animation: kreg-spin 0.8s linear infinite;
}

@keyframes kreg-spin {
	to { transform: rotate(360deg); }
}

.kreg__error {
	text-align: center;
	padding: 4rem 1rem;
	color: #FF4D6A;
	font-family: 'Inter', sans-serif;
}

.kreg__notice {
	max-width: 640px;
	margin: 2rem auto;
	padding: 3rem 2rem;
	text-align: center;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(0, 255, 209, 0.25);
	border-radius: 12px;
}

.kreg__notice-title {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.6rem;
	color: #00FFD1;
	margin: 0 0 1rem;
}

.kreg__notice-text {
	font-family: 'Inter', sans-serif;
	color: #B0B0B0;
	font-size: 1rem;
	line-height: 1.6;
	margin: 0;
}

/* --- Panels --- */
.kreg__panel {
	max-width: 800px;
	margin: 0 auto;
}

.kreg__participant-label {
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: rgba(255, 255, 255, 0.4);
	margin-bottom: 0.5rem;
}

/* --- Participant Card --- */
.kreg__card {
	background: rgba(0, 0, 0, 0.25);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	padding: 1.25rem;
	margin-bottom: 1rem;
	transition: border-color 0.3s;
}

.kreg__card:focus-within {
	border-color: rgba(0, 255, 209, 0.3);
}

.kreg__card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.75rem;
}

.kreg__card-title {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
}

.kreg__card-remove {
	background: none;
	border: 1px solid rgba(255, 0, 107, 0.3);
	color: #FF4D6A;
	font-size: 12px;
	font-family: 'Inter', sans-serif;
	padding: 0.25rem 0.75rem;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.2s;
}

.kreg__card-remove:hover {
	background: rgba(255, 0, 107, 0.15);
	border-color: #FF4D6A;
}

/* --- Form Grid --- */
.kreg__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--kreg-grid-gap, 0.5rem);
}

.kreg__grid--full {
	grid-template-columns: 1fr;
}

@media (max-width: 600px) {
	.kreg__grid {
		grid-template-columns: 1fr;
	}
}

/* --- Form Fields (inline labels) --- */
.kreg__field {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.kreg__field--stacked {
	flex-direction: column;
	align-items: stretch;
	gap: 0.2rem;
}

.kreg__field--stacked .kreg__label {
	min-width: unset;
	max-width: unset;
}

.kreg__field--full {
	grid-column: 1 / -1;
}

.kreg__label {
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--kreg-light-grey, #B0B0B0);
	min-width: var(--kreg-label-width, 75px);
	max-width: var(--kreg-label-width, 75px);
	flex-shrink: 0;
	line-height: 1.2;
}

.kreg__input,
.kreg__select {
	background: rgba(0, 0, 0, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 6px;
	padding: 0.5rem 0.65rem;
	color: #fff;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	transition: border-color 0.2s;
	outline: none;
	flex: 1;
	min-width: var(--kreg-input-width, 200px);
	max-width: 100%;
	box-sizing: border-box;
}

.kreg__input:focus,
.kreg__select:focus {
	border-color: var(--kreg-cyan, #00FFD1);
}

.kreg__input--error,
.kreg__select--error {
	border-color: #FF4D6A;
}

.kreg__field-error {
	font-size: 11px;
	color: #FF4D6A;
	font-family: 'Inter', sans-serif;
	display: none;
	width: 100%;
}

.kreg__field-error:not(:empty) {
	display: block;
	padding-left: calc(var(--kreg-label-width, 100px) + 0.5rem);
}

.kreg__select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%2300FFD1'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	padding-right: 2rem;
}

.kreg__select option {
	background: #1A1A1A;
	color: #fff;
}

/* --- Button Group (gender, package, PF/PJ) --- */
.kreg__btn-group {
	display: flex;
	gap: 0.5rem;
}

.kreg__btn-group-item {
	flex: 1;
	padding: 0.45rem 0.75rem;
	background: rgba(0, 0, 0, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 6px;
	color: rgba(255, 255, 255, 0.6);
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	transition: all 0.2s;
}

.kreg__btn-group-item:hover {
	border-color: rgba(0, 255, 209, 0.3);
	color: #fff;
}

.kreg__btn-group-item--active {
	background: linear-gradient(135deg, #00FFD1, #FF006B);
	border-color: transparent;
	color: #000;
}

/* --- Consent Checkbox --- */
.kreg__consent {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	padding: 0.25rem 0;
}

.kreg__checkbox {
	appearance: none;
	width: 18px;
	height: 18px;
	min-width: 18px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 4px;
	background: var(--kreg-deep-black, #0A0A0A);
	cursor: pointer;
	position: relative;
	transition: all 0.2s;
}

.kreg__checkbox:checked {
	background: var(--kreg-cyan, #00FFD1);
	border-color: var(--kreg-cyan, #00FFD1);
}

.kreg__checkbox--error {
	border-color: #FF4D6A;
	box-shadow: 0 0 0 2px rgba(255, 77, 106, 0.25);
}

.kreg__btn-group--error .kreg__btn-group-item {
	border-color: #FF4D6A;
}

.kreg__checkbox:checked::after {
	content: '\2713';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #000;
	font-size: 12px;
	font-weight: 700;
}

.kreg__consent-label {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: var(--kreg-light-grey, #B0B0B0);
	line-height: 1.4;
	cursor: pointer;
	user-select: none;
	-webkit-user-select: none;
}

/* --- Voucher / Discount --- */
.kreg__voucher-inline {
	display: flex;
	gap: 0.5rem;
	align-items: center;
}

.kreg__voucher-btn {
	padding: 0.65rem 1.25rem;
	background: transparent;
	border: 2px solid var(--kreg-cyan, #00FFD1);
	color: var(--kreg-cyan, #00FFD1);
	border-radius: 6px;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	white-space: nowrap;
}

.kreg__voucher-btn:hover:not(:disabled) {
	background: rgba(0, 255, 209, 0.1);
}

.kreg__voucher--disabled {
	opacity: 0.35;
	pointer-events: none;
}

.kreg__voucher-btn:disabled {
	cursor: not-allowed;
}

.kreg__voucher-applied {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0.75rem;
	background: rgba(0, 255, 209, 0.1);
	border-radius: 6px;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: var(--kreg-cyan, #00FFD1);
	margin-top: 0.75rem;
}

.kreg__voucher-remove {
	background: none;
	border: none;
	color: #FF4D6A;
	cursor: pointer;
	font-size: 16px;
	padding: 0 0.25rem;
}

/* --- Add Participant Button --- */
.kreg__add-participant {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	padding: 0.75rem;
	background: transparent;
	border: 1px dashed rgba(0, 255, 209, 0.3);
	border-radius: 10px;
	color: var(--kreg-cyan, #00FFD1);
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	margin-bottom: 1rem;
}

.kreg__add-participant:hover {
	border-color: var(--kreg-cyan, #00FFD1);
	background: rgba(0, 255, 209, 0.05);
}

.kreg__add-icon {
	font-size: 24px;
	line-height: 1;
}

/* --- Price Summary --- */
.kreg__summary {
	background: rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 10px;
	padding: 0.75rem 1.25rem;
	margin-top: 1rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

/* --- Summary as Navigator --- */
.kreg__summary-nav {
	background: rgba(0, 0, 0, 0.25);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	padding: 0.5rem 0.75rem;
	margin-bottom: 0.75rem;
}

.kreg__summary-nav-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.3rem 0.35rem;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.15s;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
}

.kreg__summary-nav-row:hover {
	background: rgba(255, 255, 255, 0.05);
}

.kreg__summary-nav-row--active {
	background: rgba(0, 255, 209, 0.08);
	color: var(--kreg-cyan, #00FFD1);
}

.kreg__summary-nav-row--total {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	margin-top: 0.25rem;
	padding-top: 0.4rem;
	cursor: default;
	color: #fff;
	font-weight: 700;
}

.kreg__summary-nav-row--total:hover {
	background: transparent;
}

.kreg__summary-nav-name {
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

.kreg__summary-nav-remove {
	color: #FF4D6A;
	font-size: 15px;
	cursor: pointer;
	padding: 0 0.25rem;
	line-height: 1;
	opacity: 0;
	transition: opacity 0.15s;
}

.kreg__summary-nav-row:hover .kreg__summary-nav-remove {
	opacity: 1;
}

.kreg__summary-label {
	font-family: 'Inter', sans-serif;
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: rgba(255, 255, 255, 0.4);
	margin-bottom: 0.25rem;
}

.kreg__summary-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.4rem 0;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: var(--kreg-light-grey, #B0B0B0);
}

.kreg__summary-row > span:last-child,
.kreg__summary-row > .kreg__summary-row-right {
	min-width: 120px;
	text-align: right;
}

.kreg__summary-row--clickable {
	cursor: pointer;
	border-radius: 4px;
	padding: 0.3rem 0.5rem;
	margin: 0 -0.5rem;
	transition: background 0.15s;
}

.kreg__summary-row--clickable:hover {
	background: rgba(255, 255, 255, 0.05);
}

.kreg__summary-row--active {
	background: rgba(0, 255, 209, 0.08);
	color: var(--kreg-cyan, #00FFD1);
}

.kreg__summary-row-right {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	min-width: 120px;
	justify-content: flex-end;
	text-align: right;
}

.kreg__summary-remove {
	color: #FF4D6A;
	font-size: 16px;
	cursor: pointer;
	line-height: 1;
}

.kreg__summary-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	font-size: 10px;
	font-weight: 700;
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.6);
	margin-right: 0.25rem;
}

.kreg__summary-row--discount {
	color: var(--kreg-cyan, #00FFD1);
}

.kreg__summary-row--total {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 0.5rem;
	padding-top: 0.75rem;
	color: #fff;
	font-weight: 700;
	font-size: 16px;
}

.kreg__summary-total-value {
	font-family: 'Orbitron', sans-serif;
	font-size: 20px;
	background: linear-gradient(90deg, #00FFD1, #FF006B);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* --- Navigation Buttons --- */
.kreg__nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 1.5rem;
}

.kreg__btn {
	padding: 0.75rem 2rem;
	border-radius: 6px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s;
	border: none;
}

.kreg__btn--primary {
	background: linear-gradient(135deg, #00FFD1, #FF006B);
	color: #000;
}

.kreg__btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 20px rgba(0, 255, 209, 0.3);
}

.kreg__btn--primary:disabled {
	opacity: 0.4;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.kreg__btn--secondary {
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.2);
	color: #fff;
}

.kreg__btn--secondary:hover {
	border-color: var(--kreg-cyan, #00FFD1);
	color: var(--kreg-cyan, #00FFD1);
}

/* --- More menu (3 dots) --- */
.kreg__more-wrap {
	position: relative;
}

.kreg__more-btn {
	background: none;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 6px;
	color: rgba(255, 255, 255, 0.5);
	font-size: 20px;
	line-height: 1;
	padding: 0.45rem 0.5rem;
	cursor: pointer;
	transition: all 0.2s;
}

.kreg__more-btn:hover {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.3);
}

.kreg__more-menu {
	position: absolute;
	bottom: 100%;
	left: 0;
	margin-bottom: 4px;
	background: #1A1A1A;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 6px;
	min-width: 220px;
	z-index: 50;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.kreg__more-item {
	display: block;
	width: 100%;
	padding: 0.6rem 0.85rem;
	background: none;
	border: none;
	color: #FF4D6A;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	text-align: left;
	cursor: pointer;
	transition: background 0.15s;
}

.kreg__more-item:hover {
	background: rgba(255, 77, 106, 0.1);
}

.kreg__btn--ghost {
	background: transparent;
	border: 1px solid rgba(255, 77, 106, 0.3);
	color: #FF4D6A;
	font-weight: 500;
}

.kreg__btn--ghost:hover {
	border-color: #FF4D6A;
	background: rgba(255, 77, 106, 0.08);
}

.kreg__btn--outline {
	background: transparent;
	border: 1px dashed rgba(0, 255, 209, 0.4);
	color: var(--kreg-cyan, #00FFD1);
	font-size: 13px;
	padding: 0.6rem 1.25rem;
}

.kreg__btn--outline:hover {
	border-color: var(--kreg-cyan, #00FFD1);
	background: rgba(0, 255, 209, 0.05);
}

.kreg__nav-left {
	display: flex;
	gap: 0.5rem;
	align-items: center;
}

.kreg__nav-right {
	display: flex;
	gap: 0.75rem;
	align-items: center;
}

/* --- Billing Section --- */
.kreg__section-title {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.75rem;
}

.kreg__section-subtitle {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: var(--kreg-light-grey, #B0B0B0);
	margin-bottom: 1.5rem;
}

/* --- Radio Group --- */
.kreg__radio-group {
	display: flex;
	gap: 1.5rem;
	min-height: 34px;
	align-items: center;
}

.kreg__radio {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
	cursor: pointer;
}

.kreg__radio input[type="radio"] {
	accent-color: var(--kreg-cyan, #00FFD1);
	width: 16px;
	height: 16px;
	cursor: pointer;
	margin: 0;
}

/* --- Disabled grid (PJ fields when PF) --- */
.kreg__grid--disabled {
	opacity: 0.3;
	pointer-events: none;
}

.kreg__static-text {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	padding: 0.5rem 0;
}

/* --- Autocomplete --- */
.kreg__autocomplete-wrap {
	position: relative;
	flex: 1;
	min-width: var(--kreg-input-width, 200px);
}

.kreg__autocomplete-wrap .kreg__input {
	width: 100%;
}

.kreg__autocomplete {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 100;
	background: #1A1A1A;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 6px;
	max-height: 180px;
	overflow-y: auto;
	margin-top: 2px;
}

.kreg__autocomplete-item {
	padding: 0.4rem 0.65rem;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.8);
	cursor: pointer;
	transition: background 0.1s;
}

.kreg__autocomplete-item:hover,
.kreg__autocomplete-item--active {
	background: rgba(0, 255, 209, 0.12);
	color: #fff;
}

.kreg__divider {
	border: none;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	margin: 1rem 0;
}

/* --- Confirmation --- */
.kreg__confirm-entry {
	background: var(--kreg-charcoal, #1A1A1A);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	padding: 1rem 1.25rem;
	margin-bottom: 0.75rem;
}

.kreg__confirm-name {
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 700;
	font-size: 16px;
	color: #fff;
	margin-bottom: 0.25rem;
}

.kreg__confirm-detail {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: var(--kreg-light-grey, #B0B0B0);
}

.kreg__confirm-price {
	font-family: 'Orbitron', sans-serif;
	font-size: 14px;
	color: var(--kreg-cyan, #00FFD1);
	float: right;
}

/* --- Confirm Modal --- */
.kreg__modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2000;
}

.kreg__modal-box {
	background: #1A1A1A;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	padding: 1.5rem 2rem;
	max-width: 360px;
	text-align: center;
}

.kreg__modal-text {
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	color: #fff;
	margin: 0 0 1.25rem;
	line-height: 1.4;
}

.kreg__modal-actions {
	display: flex;
	gap: 0.75rem;
	justify-content: center;
}

.kreg__modal-actions .kreg__btn {
	min-width: 80px;
}

/* --- Dev UUID override --- */
.kreg__dev {
	max-width: 860px;
	margin: 1.5rem auto 0;
	padding: 0.5rem 0.75rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 0, 0.05);
	border: 1px dashed rgba(255, 255, 0, 0.2);
	border-radius: 6px;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	color: rgba(255, 255, 0, 0.6);
}

.kreg__dev label { white-space: nowrap; }

.kreg__dev input {
	flex: 1;
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 0, 0.2);
	border-radius: 4px;
	padding: 0.25rem 0.5rem;
	color: #fff;
	font-family: monospace;
	font-size: 11px;
}

.kreg__dev button {
	background: rgba(255, 255, 0, 0.15);
	border: 1px solid rgba(255, 255, 0, 0.3);
	border-radius: 4px;
	padding: 0.25rem 0.65rem;
	color: rgba(255, 255, 0, 0.8);
	font-size: 11px;
	cursor: pointer;
}

.kreg__dev button:hover { background: rgba(255, 255, 0, 0.25); }

.kreg__dev span { color: rgba(255, 255, 255, 0.4); font-family: monospace; }

/* --- Submitting overlay --- */
.kreg__submitting {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(10, 10, 10, 0.9);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	color: #fff;
	font-family: 'Inter', sans-serif;
}

/* --- Responsive --- */
@media (max-width: 600px) {
	.kreg__steps {
		gap: 0;
	}

	.kreg__step-label {
		display: none;
	}

	.kreg__step-line {
		flex: 0 0 30px;
		margin: 0 0.5rem;
	}

	.kreg__card {
		padding: 1rem;
	}

	.kreg__btn {
		padding: 0.65rem 1.25rem;
		font-size: 13px;
	}

	.kreg__voucher {
		flex-direction: column;
		align-items: stretch;
	}
}
