/**
 * 주문(견적) 단계형 UI (실서비스)
 * 모바일 소형 세로(≤575px)만 별도 UI · 태블릿 세로·가로·PC는 동일 레이아웃
 * 페이지 최대 폭: Bootstrap container + col-xl-9/col-lg-10 (request.php)
 */

.quotation-request-page--wizard .qr-simple-page-title {
	text-align: center;
	margin-bottom: 0.5rem;
}

.quotation-request-page--wizard .qr-dev-page-banner {
	text-align: center;
}

.quotation-request-page--wizard .qr-wizard-survey {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 10px 25px rgba(15, 81, 50, 0.06);
	border: 1px solid #e2e8f0;
	padding: 1.75rem 1.5rem 1.25rem;
	margin-bottom: 1.5rem;
}

/* 프로그레스 */
.quotation-request-page--wizard .qr-wizard-progress {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
	height: 32px;
}

.quotation-request-page--wizard .qr-wizard-progress__line,
.quotation-request-page--wizard .qr-wizard-progress__fill {
	position: absolute;
	top: 15px;
	left: 0;
	height: 2px;
	z-index: 1;
}

.quotation-request-page--wizard .qr-wizard-progress__line {
	right: 0;
	background: #e5e7eb;
}

.quotation-request-page--wizard .qr-wizard-progress__fill {
	background: #0f5132;
	width: 0%;
	transition: width 0.3s ease;
	z-index: 2;
}

.quotation-request-page--wizard .qr-wizard-progress__node {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid #e5e7eb;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	font-weight: 700;
	color: #6b7280;
	z-index: 3;
	transition: all 0.25s ease;
}

.quotation-request-page--wizard .qr-wizard-progress__node--active {
	border-color: #0f5132;
	background: #ecfdf5;
	color: #0f5132;
	box-shadow: 0 0 0 4px rgba(15, 81, 50, 0.12);
}

.quotation-request-page--wizard .qr-wizard-progress__node--done {
	border-color: #0f5132;
	background: #0f5132;
	color: #fff;
}

/* 이력 상태 카드 (타임라인 아래) */
.quotation-request-page--wizard .qr-wizard-status-card {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	margin: -0.75rem 0 1.35rem;
	padding: 0.65rem 0.85rem;
	border-radius: 10px;
	border: 1px solid #d1e7dd;
	background: linear-gradient(135deg, #f4fbf7 0%, #eef6f2 100%);
	box-shadow: 0 1px 2px rgba(15, 81, 50, 0.04);
}

.quotation-request-page--wizard .qr-wizard-status-card.d-none {
	display: none !important;
}

.quotation-request-page--wizard .qr-wizard-status-card__badge {
	flex: 0 0 auto;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1;
	padding: 0.35rem 0.5rem;
	border-radius: 6px;
	background: #0f5132;
	color: #fff;
	white-space: nowrap;
}

.quotation-request-page--wizard .qr-wizard-status-card__body {
	min-width: 0;
	flex: 1 1 auto;
}

.quotation-request-page--wizard .qr-wizard-status-card__title {
	font-size: 0.82rem;
	font-weight: 700;
	color: #0f5132;
	margin: 0 0 0.15rem;
	line-height: 1.3;
}

.quotation-request-page--wizard .qr-wizard-status-card__rid {
	font-weight: 600;
	color: #6b7280;
	font-size: 0.75rem;
}

.quotation-request-page--wizard .qr-wizard-status-card__hint {
	margin: 0;
	font-size: 0.75rem;
	line-height: 1.4;
	color: #4b5563;
}

.quotation-request-page--wizard .qr-wizard-status-card--confirm_requested {
	border-color: #9ec5fe;
	background: linear-gradient(135deg, #f0f7ff 0%, #e8f1fb 100%);
}

.quotation-request-page--wizard .qr-wizard-status-card--confirm_requested .qr-wizard-status-card__badge {
	background: #0d6efd;
}

.quotation-request-page--wizard .qr-wizard-status-card--confirm_requested .qr-wizard-status-card__title {
	color: #0a58ca;
}

.quotation-request-page--wizard .qr-wizard-status-card--confirmed {
	border-color: #c5b3e6;
	background: linear-gradient(135deg, #f7f3fc 0%, #f0eaf8 100%);
}

.quotation-request-page--wizard .qr-wizard-status-card--confirmed .qr-wizard-status-card__badge {
	background: #6f42c1;
}

.quotation-request-page--wizard .qr-wizard-status-card--confirmed .qr-wizard-status-card__title {
	color: #5a32a3;
}

/* 확정요청 후 내용 변경 → 가견적 안내 */
.quotation-request-page--wizard .qr-wizard-status-card--confirm_modified {
	border-color: #ffc107;
	background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.quotation-request-page--wizard .qr-wizard-status-card--confirm_modified .qr-wizard-status-card__badge {
	background: #b45309;
}

.quotation-request-page--wizard .qr-wizard-status-card--confirm_modified .qr-wizard-status-card__title {
	color: #92400e;
}

/* 단계 패널 */
.quotation-request-page--wizard .qr-wizard-step {
	display: none;
	animation: qrWizardFadeIn 0.35s ease;
}

.quotation-request-page--wizard .qr-wizard-step--active {
	display: block;
}

@keyframes qrWizardFadeIn {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: translateY(0); }
}

.quotation-request-page--wizard .qr-wizard-step__title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 0.5rem;
	letter-spacing: -0.03em;
	line-height: 1.35;
}

.quotation-request-page--wizard .qr-wizard-step__desc {
	font-size: 0.875rem;
	color: #64748b;
	margin: 0 0 1.25rem;
	line-height: 1.55;
}

.quotation-request-page--wizard .qr-wizard-step__body .qr-navy-card {
	box-shadow: none;
	border: 1px solid #e2e8f0;
	margin-bottom: 0.85rem;
}

.quotation-request-page--wizard .qr-wizard-hide-head {
	display: none !important;
}

/* 1단계: 주문유형 — PC·태블릿 동일 3열 그리드 */
.quotation-request-page--wizard .qr-wizard-step[data-wizard-step="1"] .qr-wizard-step__title {
	margin-bottom: 0.35rem;
}

.quotation-request-page--wizard .qr-wizard-step[data-wizard-step="1"] .qr-wizard-step__desc {
	margin-bottom: 0.85rem;
}

.quotation-request-page--wizard .qr-wizard-step[data-wizard-step="1"] .qr-navy-card__body {
	padding: 0.55rem 0.65rem 0.65rem;
}

.quotation-request-page--wizard .qr-wizard-step[data-wizard-step="1"] .qr-order-tabs {
	display: grid !important;
	grid-template-columns: 1fr;
	gap: 0.45rem;
	flex-wrap: unset;
}

@media (min-width: 576px), (orientation: landscape) {
	.quotation-request-page--wizard .qr-wizard-step[data-wizard-step="1"] .qr-order-tabs {
		grid-template-columns: repeat(3, 1fr);
	}
}

.quotation-request-page--wizard .qr-wizard-step[data-wizard-step="1"] .qr-order-tabs__item {
	flex: none !important;
	min-width: 0;
}

.quotation-request-page--wizard .qr-wizard-step[data-wizard-step="1"] .qr-order-tabs__face {
	border: 2px solid #e5e7eb;
	border-radius: 10px;
	padding: 0.75rem 0.5rem;
	background: #fff;
	transition: border-color 0.2s, background 0.2s;
	min-height: 3.75rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.quotation-request-page--wizard .qr-wizard-step[data-wizard-step="1"] .qr-order-tabs__item--on .qr-order-tabs__face,
.quotation-request-page--wizard .qr-wizard-step[data-wizard-step="1"] .qr-order-tabs__item input:checked + .qr-order-tabs__face {
	border-color: #0f5132;
	background: #ecfdf5;
}

.quotation-request-page--wizard .qr-wizard-step[data-wizard-step="1"] .qr-order-tabs__ko {
	font-size: 0.9375rem;
	font-weight: 700;
	color: #0f172a;
}

.quotation-request-page--wizard .qr-wizard-step[data-wizard-step="1"] .qr-order-tabs__en {
	font-size: 0.6875rem;
	color: #64748b;
	margin-top: 0.12rem;
	letter-spacing: 0.04em;
}

/* 연락처로 최근 이력 불러오기 */
.quotation-request-page .qr-history-load {
	margin-top: 0.85rem;
	padding-top: 0.85rem;
	border-top: 1px dashed #cbd5e1;
}
.quotation-request-page .qr-history-load__guide {
	margin: 0 0 0.65rem;
	font-size: 0.8125rem;
	line-height: 1.55;
	color: #475569;
}
.quotation-request-page .qr-history-load__row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: stretch;
}
.quotation-request-page .qr-history-load__row .form-control {
	flex: 1 1 12rem;
	min-width: 0;
}
.quotation-request-page .qr-history-load__row .btn {
	flex: 0 0 auto;
	white-space: nowrap;
}
.quotation-request-page .qr-history-load__otp-row {
	margin-top: 0.45rem;
}
.quotation-request-page .qr-history-load__otp-row .form-control {
	flex: 0 1 9rem;
	max-width: 11rem;
}
.quotation-request-page .qr-history-load__otp-row .form-control:disabled {
	background: #f1f5f9;
	color: #94a3b8;
}
.quotation-request-page .qr-history-load__msg {
	margin-top: 0.45rem;
	min-height: 1.25em;
	color: #64748b;
}
.quotation-request-page .qr-history-load__msg--ok {
	color: #0f5132;
}
.quotation-request-page .qr-history-load__msg--error {
	color: #b91c1c;
}
.quotation-request-page--wizard .qr-wizard-step[data-wizard-step="1"] .qr-history-load {
	margin-top: 0.75rem;
	padding-top: 0.75rem;
}

/* 추천 배너 */
.quotation-request-page--wizard .qr-wizard-recommend {
	border: 2px dashed #0f5132;
	background: #ecfdf5;
	padding: 1rem 1.1rem;
	border-radius: 12px;
	margin-bottom: 1rem;
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.875rem;
}

.quotation-request-page--wizard .qr-wizard-recommend i {
	color: #0f5132;
	font-size: 1.25rem;
	margin-top: 0.1rem;
}

/* 하단 내비 — test.html action-footer · btn 정렬 */
.quotation-request-page--wizard .qr-wizard-footer {
	margin-top: 1.75rem;
	padding-top: 1rem;
	border-top: 1px solid #e2e8f0;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 0.75rem;
}

.quotation-request-page--wizard .qr-wizard-footer #qr_wizard_prev {
	justify-self: start;
}

.quotation-request-page--wizard .qr-wizard-footer__center {
	justify-self: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.quotation-request-page--wizard .qr-wizard-footer #qr_wizard_next {
	justify-self: end;
	grid-column: 3;
}

.quotation-request-page--wizard .qr-wizard-footer #qr_wizard_prev {
	grid-column: 1;
}

/* 3단계 확정모드: 이전 · 실견적 · 견적확정 (다음 숨김, 한 행 3등분) */
.quotation-request-page--wizard .qr-wizard-footer--step3 {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 0.65rem;
}

.quotation-request-page--wizard .qr-wizard-footer--step3 > #qr_wizard_next {
	display: none !important;
}

.quotation-request-page--wizard .qr-wizard-footer--step3 > .qr-wizard-footer__center {
	display: contents !important;
}

.quotation-request-page--wizard .qr-wizard-footer--step3 > #qr_wizard_prev,
.quotation-request-page--wizard .qr-wizard-footer--step3 #qr_wizard_draft_quote,
.quotation-request-page--wizard .qr-wizard-footer--step3 #qr_wizard_confirm_quote {
	flex: 1 1 0;
	justify-self: stretch;
	width: auto;
	min-width: 0;
	max-width: none;
}

.quotation-request-page--wizard .qr-wizard-footer--step3 #qr_wizard_draft_quote,
.quotation-request-page--wizard .qr-wizard-footer--step3 #qr_wizard_confirm_quote {
	display: inline-flex !important;
}

.quotation-request-page--wizard .qr-wizard-footer #qr_wizard_draft_quote,
.quotation-request-page--wizard .qr-wizard-footer #qr_wizard_confirm_quote {
	min-width: 8.5rem;
	font-weight: 600;
}

.quotation-request-page--wizard .qr-wizard-footer .btn-qr-draft-quote {
	background: #0f5132;
	border: 1px solid #0f5132;
	color: #fff;
	box-shadow: 0 2px 8px rgba(15, 81, 50, 0.22);
}

.quotation-request-page--wizard .qr-wizard-footer .btn-qr-draft-quote:hover:not(:disabled) {
	background: #0c4229;
	border-color: #0c4229;
	color: #fff;
}

.quotation-request-page--wizard .qr-wizard-footer .btn-qr-draft-quote:disabled,
.quotation-request-page--wizard .qr-wizard-footer .btn-qr-draft-quote[disabled] {
	background: #cbd5e1;
	border-color: #cbd5e1;
	color: #94a3b8;
	box-shadow: none;
	opacity: 1;
	cursor: not-allowed;
}

.quotation-request-page--wizard .qr-wizard-footer .btn-qr-confirm-quote {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	background: #198754;
	border: 1px solid #198754;
	color: #fff;
	box-shadow: 0 2px 8px rgba(25, 135, 84, 0.22);
}

.quotation-request-page--wizard .qr-wizard-footer .btn-qr-confirm-quote:hover:not(:disabled) {
	background: #157347;
	border-color: #146c43;
	color: #fff;
}

.quotation-request-page--wizard .qr-wizard-footer .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	min-width: 7.5rem;
	min-height: 2.75rem;
	padding: 0.75rem 1.5rem;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: -0.01em;
	border-radius: 8px;
	white-space: nowrap;
	vertical-align: middle;
}

.quotation-request-page--wizard .qr-wizard-footer .btn i {
	display: inline-block;
	font-size: 0.9em;
	line-height: 1;
	margin: 0 !important;
	vertical-align: middle;
}

/* 소형 모바일 세로(≤575px) — 컴팩트 여백·입력 크기·케이터링 배치 */
@media (max-width: 575.98px) and (orientation: portrait) {
	.quotation-request-page--wizard {
		/* 타이포 — 이전보다 1단계 상향, 요소 간 균형 */
		--qr-m-fs-2xs: 0.625rem;
		--qr-m-fs-xs: 0.6875rem;
		--qr-m-fs-sm: 0.78125rem;
		--qr-m-fs-md: 0.8125rem;
		--qr-m-fs-lg: 0.875rem;
		--qr-m-fs-xl: 0.9375rem;
		--qr-m-fs-2xl: 1.0625rem;
		--qr-m-input-h: 2rem;
		--qr-m-input-h-sm: 1.8125rem;
		--qr-m-lh: 1.44;
		/* 입력 너비 — DB·실제 수집값 기준 (ch ≈ 숫자/영문 1자) */
		--qr-m-w-name: min(100%, 10.5rem);      /* 담당자명 ~50자, 표시 12자 내외 */
		--qr-m-w-phone: min(100%, 10.75rem);    /* 연락처 maxlength 14 (010-1234-5678) */
		--qr-m-w-date: min(100%, 10.5rem);     /* YYYY-MM-DD */
		--qr-m-w-time: min(100%, 7.25rem);      /* HH:00 */
		--qr-m-w-distance: min(100%, 7.5rem);   /* 직선거리 ##.# */
		--qr-m-w-budget: min(100%, 10.25rem);    /* 예산 10,000,000 */
		--qr-m-w-qty: min(100%, 4.85rem);       /* 인원·수량 4~5자리 */
		--qr-m-w-sticker: min(100%, 8.5rem);    /* 스티커 선택 */
		--qr-m-w-select: min(100%, 100%);
		--qr-m-w-email: 100%;
		--qr-m-w-biz-no: min(100%, 10.5rem);
		--qr-m-w-postcode: min(100%, 6.5rem);
		--qr-m-field-gap-y: 0.32rem;
		--qr-m-field-gap-x: 0.32rem;
	}

	html:has(body.quotation-request-page--wizard) {
		font-size: 100%;
	}

	body.quotation-request-page--wizard.quotation-request-page {
		font-size: var(--qr-m-fs-md);
		line-height: var(--qr-m-lh);
	}

	.quotation-request-page--wizard #qr_quotation_container {
		margin-top: 0.85rem !important;
		padding-left: max(0.5rem, env(safe-area-inset-left));
		padding-right: max(0.5rem, env(safe-area-inset-right));
	}

	.quotation-request-page--wizard #qr_quotation_container > .row {
		--bs-gutter-x: 0.65rem;
	}

	.quotation-request-page--wizard .qr-simple-page-title {
		font-size: var(--qr-m-fs-2xl);
		margin-bottom: 0.65rem;
		line-height: 1.3;
	}

	.quotation-request-page--wizard .qr-wizard-survey {
		padding: 0.8rem 0.55rem 0.7rem;
		margin-bottom: 0.85rem;
		border-radius: 12px;
	}

	.quotation-request-page--wizard .qr-wizard-progress {
		margin-bottom: 1rem;
		height: 26px;
	}

	.quotation-request-page--wizard .qr-wizard-progress__line,
	.quotation-request-page--wizard .qr-wizard-progress__fill {
		top: 12px;
	}

	.quotation-request-page--wizard .qr-wizard-progress__node {
		width: 26px;
		height: 26px;
		font-size: var(--qr-m-fs-xs);
	}

	.quotation-request-page--wizard .qr-wizard-step__title {
		font-size: var(--qr-m-fs-xl);
		margin-bottom: 0.25rem;
		line-height: 1.32;
	}

	.quotation-request-page--wizard .qr-wizard-step__desc {
		font-size: var(--qr-m-fs-sm);
		margin-bottom: 0.65rem;
		line-height: var(--qr-m-lh);
	}

	.quotation-request-page--wizard .qr-wizard-step__body .qr-navy-card,
	.quotation-request-page--wizard .qr-navy-card {
		margin-bottom: 0.55rem;
		border-radius: 9px;
		box-shadow: 0 2px 12px rgba(26, 28, 46, 0.05);
	}

	.quotation-request-page--wizard .qr-wizard-step__body .qr-navy-card__head,
	.quotation-request-page--wizard .qr-navy-card__head {
		padding: 0.48rem 0.6rem;
		font-size: var(--qr-m-fs-md);
		line-height: 1.35;
	}

	.quotation-request-page--wizard .qr-wizard-step__body .qr-navy-card__body,
	.quotation-request-page--wizard .qr-navy-card__body {
		padding: 0.5rem 0.55rem 0.58rem;
	}

	.quotation-request-page--wizard .qr-wizard-step[data-wizard-step="1"] .qr-navy-card__body {
		padding: 0.45rem 0.5rem 0.52rem;
	}

	.quotation-request-page--wizard .qr-wizard-step[data-wizard-step="1"] .qr-order-tabs {
		gap: 0.35rem;
	}

	.quotation-request-page--wizard .qr-wizard-step[data-wizard-step="1"] .qr-order-tabs__face {
		min-height: 3.15rem;
		padding: 0.45rem 0.3rem;
		border-radius: 8px;
	}

	.quotation-request-page--wizard .qr-wizard-step[data-wizard-step="1"] .qr-order-tabs__ko {
		font-size: var(--qr-m-fs-md);
		line-height: 1.3;
	}

	.quotation-request-page--wizard .qr-wizard-step[data-wizard-step="1"] .qr-order-tabs__en {
		font-size: var(--qr-m-fs-xs);
		line-height: 1.25;
	}

	body.quotation-request-page--wizard.quotation-request-page .form-label {
		font-size: var(--qr-m-fs-sm);
		margin-bottom: 0.2rem;
		line-height: 1.35;
	}

	body.quotation-request-page--wizard.quotation-request-page .form-control,
	body.quotation-request-page--wizard.quotation-request-page .form-select,
	body.quotation-request-page--wizard.quotation-request-page input.form-control {
		font-size: var(--qr-m-fs-md);
		padding: 0.34rem 0.48rem;
		min-height: var(--qr-m-input-h);
		border-radius: 7px;
		line-height: 1.35;
	}

	body.quotation-request-page--wizard.quotation-request-page textarea.form-control {
		font-size: var(--qr-m-fs-md);
		padding: 0.38rem 0.48rem;
		min-height: 0;
		line-height: var(--qr-m-lh);
	}

	body.quotation-request-page--wizard.quotation-request-page .form-control-sm,
	body.quotation-request-page--wizard.quotation-request-page .form-select-sm {
		font-size: var(--qr-m-fs-md);
		padding: 0.28rem 0.4rem;
		min-height: var(--qr-m-input-h-sm);
		line-height: 1.35;
	}

	body.quotation-request-page--wizard.quotation-request-page .form-check-label {
		font-size: var(--qr-m-fs-sm);
		line-height: 1.35;
	}

	body.quotation-request-page--wizard.quotation-request-page .text-muted,
	body.quotation-request-page--wizard.quotation-request-page small,
	body.quotation-request-page--wizard.quotation-request-page .small {
		font-size: var(--qr-m-fs-xs) !important;
		line-height: var(--qr-m-lh);
	}

	body.quotation-request-page--wizard.quotation-request-page .delivery-datetime-row .form-select.delivery-time-select {
		min-height: var(--qr-m-input-h-sm);
		font-size: var(--qr-m-fs-md);
	}

	/* 필드 슬롯 — 그리드 셀 너비를 가득 채움 */
	.quotation-request-page--wizard .qr-field-slot {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-end;
		min-width: 0;
		width: 100%;
	}

	.quotation-request-page--wizard .qr-field-slot .form-control,
	.quotation-request-page--wizard .qr-field-slot .form-select {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0;
		min-height: var(--qr-m-input-h-sm);
	}

	.quotation-request-page--wizard .qr-field-slot--qty .form-control {
		text-align: center;
	}

	/* 위저드 필드 행 — Bootstrap row 대신 2·3열 그리드 */
	.quotation-request-page--wizard .qr-wizard-field-row.row {
		display: grid !important;
		flex-wrap: unset !important;
		--bs-gutter-x: 0;
		--bs-gutter-y: 0;
		margin-left: 0 !important;
		margin-right: 0 !important;
		gap: var(--qr-m-field-gap-y) var(--qr-m-field-gap-x);
		align-items: end;
	}

	.quotation-request-page--wizard .qr-wizard-field-row.row > [class*="col-"] {
		width: 100% !important;
		max-width: 100% !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
		flex: none !important;
	}

	/* 2단계 — 담당자·연락처 2열, 이메일 전체 너비 */
	.quotation-request-page--wizard .qr-wizard-field-row--contact {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.quotation-request-page--wizard .qr-wizard-field-row--contact > .qr-field-slot--email {
		grid-column: 1 / -1;
	}

	/* 2단계 — 회사명·사업자번호·계산서메일 (모바일 기본 1열) */
	.quotation-request-page--wizard .qr-wizard-field-row--company {
		grid-template-columns: 1fr;
	}

	/* 배송일·시간·거리 — 3열 균등 */
	.quotation-request-page--wizard .qr-wizard-field-row--delivery,
	.quotation-request-page--wizard #basic_delivery_date_row.qr-wizard-field-row {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.quotation-request-page--wizard #basic_delivery_date_row #estimated_distance_row {
		width: 100%;
	}

	.quotation-request-page--wizard #basic_delivery_date_row .qr-estimated-distance-hint {
		font-size: var(--qr-m-fs-xs);
		margin-top: 0.18rem;
	}

	.quotation-request-page--wizard #catering_order_section .catering-order-row__field--qty .form-control,
	.quotation-request-page--wizard #catering_order_section .catering-onsite-form__control .form-control[type="number"],
	.quotation-request-page--wizard #catering_event_end_time {
		min-height: var(--qr-m-input-h-sm);
	}

	.quotation-request-page--wizard #catering_table_sets {
		text-align: center;
	}

	.quotation-request-page--wizard .qr-wizard-biz-premium__postcode {
		max-width: var(--qr-m-w-postcode);
		min-height: var(--qr-m-input-h-sm);
	}

	.quotation-request-page--wizard input[name="business_registration_number"] {
		max-width: var(--qr-m-w-biz-no);
		min-height: var(--qr-m-input-h-sm);
	}

	.quotation-request-page--wizard .delivery-datetime-row .d-flex {
		flex-direction: row !important;
		align-items: center !important;
	}

	.quotation-request-page--wizard #order_condition_row .form-label {
		font-size: var(--qr-m-fs-sm);
	}

	.quotation-request-page--wizard #order_condition_row .form-control,
	.quotation-request-page--wizard #order_condition_row .form-select {
		font-size: var(--qr-m-fs-md) !important;
		padding: 0.34rem 0.48rem;
		min-height: var(--qr-m-input-h-sm) !important;
	}

	/* 3단계 — 주문조건 2열 (VAT 옵션 시 예산만 전체 너비, 인원·스티커 2열) */
	.quotation-request-page--wizard #order_condition_row > .row.g-3.qr-wizard-field-row {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		--bs-gutter-x: 0;
		--bs-gutter-y: 0;
		margin-left: 0 !important;
		margin-right: 0 !important;
		gap: var(--qr-m-field-gap-y) var(--qr-m-field-gap-x);
		align-items: end;
	}

	.quotation-request-page--wizard #order_condition_row > .row.g-3 > [class*="col-"] {
		width: 100% !important;
		max-width: 100% !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
		flex: none !important;
	}

	.quotation-request-page--wizard #order_condition_row > .row.g-3 > .qr-field-slot--budget:has(#fb_budget_adjust_opts:not(.d-none)) {
		grid-column: 1 / -1;
	}

	.quotation-request-page--wizard #order_condition_row .fb-budget-label-row {
		width: 100%;
		max-width: 100%;
		margin-bottom: 0.2rem;
	}

	/* 3단계 — 도시락 메뉴 블록 */
	.quotation-request-page--wizard #quotation_section_options .lunchbox-menu-block {
		padding: 0.42rem 0.48rem;
		margin-bottom: 0.42rem;
	}

	.quotation-request-page--wizard #quotation_section_options .lb-block-header {
		flex-direction: row !important;
		align-items: flex-end !important;
		justify-content: space-between;
		gap: var(--qr-m-field-gap-y) var(--qr-m-field-gap-x);
		margin-bottom: 0.35rem !important;
	}

	.quotation-request-page--wizard #quotation_section_options .lb-block-header > .flex-grow-1 {
		flex: 1 1 auto;
		width: auto;
		min-width: 0;
	}

	.quotation-request-page--wizard #quotation_section_options .lb-block-header > .d-flex.align-items-center {
		width: auto;
		flex: 0 0 auto;
		justify-content: flex-start;
		flex-wrap: nowrap;
		gap: var(--qr-m-field-gap-y) var(--qr-m-field-gap-x);
	}

	.quotation-request-page--wizard #quotation_section_options .lb-block-qty {
		width: var(--qr-m-w-qty);
		max-width: var(--qr-m-w-qty);
		flex: 0 0 auto;
		text-align: center;
	}

	.quotation-request-page--wizard #quotation_section_options .lb-block-title {
		font-size: var(--qr-m-fs-md);
	}

	.quotation-request-page--wizard #quotation_section_options .lb-block-header .form-label {
		margin-bottom: 0;
	}

	.quotation-request-page--wizard #quotation_request_form .row.g-3 {
		--bs-gutter-x: 0.45rem;
		--bs-gutter-y: 0.45rem;
	}

	.quotation-request-page--wizard #quotation_request_form .row.g-2 {
		--bs-gutter-x: 0.35rem;
		--bs-gutter-y: 0.35rem;
	}

	.quotation-request-page--wizard #quotation_request_form .mb-3 {
		margin-bottom: 0.45rem !important;
	}

	.quotation-request-page--wizard .fb-budget-adjust-opts {
		width: 100% !important;
		margin-left: 0 !important;
		margin-top: 0.22rem !important;
		padding-left: 0 !important;
		border-left: none !important;
		justify-content: flex-start !important;
		gap: 0.45rem 0.65rem;
	}

	.quotation-request-page--wizard .fb-budget-adjust-opts .form-check-label {
		font-size: var(--qr-m-fs-sm);
	}

	.quotation-request-page--wizard .btn:not(.qr-wizard-footer .btn) {
		font-size: var(--qr-m-fs-md);
		line-height: 1.35;
	}

	.quotation-request-page--wizard .btn-sm {
		font-size: var(--qr-m-fs-md);
		line-height: 1.35;
	}

	.quotation-request-page--wizard .alert {
		font-size: var(--qr-m-fs-sm);
		padding: 0.42rem 0.52rem;
		line-height: var(--qr-m-lh);
	}

	.quotation-request-page--wizard .qr-wizard-recommend {
		font-size: var(--qr-m-fs-sm);
		line-height: var(--qr-m-lh);
	}

	.quotation-request-page--wizard .qr-wizard-special-requirements .form-label,
	.quotation-request-page--wizard #regular_order_options .form-label {
		font-size: var(--qr-m-fs-sm);
	}

	.quotation-request-page--wizard #regular_order_options .qr-reg-day-btn {
		font-size: var(--qr-m-fs-sm);
		padding: 0.34rem 0.62rem;
		line-height: 1.35;
	}

	/* 케이터링 — 중첩 카드·행 컴팩트 */
	.quotation-request-page--wizard #catering_order_section.catering-order-stack {
		gap: 0.45rem;
		margin-top: 0.1rem;
		padding-top: 0.45rem;
	}

	.quotation-request-page--wizard #catering_order_section .catering-sub-card {
		border-radius: 9px;
		margin-bottom: 0.45rem !important;
		box-shadow: none;
	}

	.quotation-request-page--wizard #catering_order_section .catering-sub-card .qr-navy-card__head {
		padding: 0.42rem 0.55rem;
		font-size: var(--qr-m-fs-md);
		line-height: 1.35;
	}

	.quotation-request-page--wizard #catering_order_section .qr-catering-panel-body {
		padding: 0.42rem 0.48rem 0.5rem;
		font-size: var(--qr-m-fs-md);
	}

	.quotation-request-page--wizard .qr-catering-panel-lead {
		font-size: var(--qr-m-fs-sm);
		margin-bottom: 0.42rem;
		line-height: var(--qr-m-lh);
	}

	.quotation-request-page--wizard #catering_order_section .catering-bev-toolbar {
		padding: 0.38rem 0.45rem;
		margin-bottom: 0.4rem;
		gap: var(--qr-m-field-gap-y) var(--qr-m-field-gap-x);
		border-radius: 8px;
		font-size: var(--qr-m-fs-md);
		flex-direction: row;
		align-items: center;
		flex-wrap: nowrap;
	}

	.quotation-request-page--wizard #catering_order_section .catering-bev-toolbar__label {
		font-size: var(--qr-m-fs-sm);
		flex: 0 0 auto;
		margin: 0;
	}

	.quotation-request-page--wizard #catering_order_section .catering-bev-toolbar__controls {
		flex: 1 1 10rem;
		min-width: 0;
		gap: 0.32rem;
	}

	.quotation-request-page--wizard #catering_order_section .catering-bev-toolbar__controls .btn {
		padding: 0.26rem 0.5rem;
		font-size: var(--qr-m-fs-md);
	}

	.quotation-request-page--wizard #catering_order_section .catering-order-rows {
		gap: 0.38rem;
	}

	.quotation-request-page--wizard #catering_order_section .catering-order-row {
		padding: 0.38rem 0.42rem;
		border-radius: 8px;
		font-size: var(--qr-m-fs-md);
	}

	.quotation-request-page--wizard #catering_order_section .catering-order-row .form-control,
	.quotation-request-page--wizard #catering_order_section .catering-order-row .form-select {
		font-size: var(--qr-m-fs-md);
	}

	.quotation-request-page--wizard #catering_order_section .catering-order-row__label {
		display: none;
	}

	.quotation-request-page--wizard #catering_order_section .catering-order-row__amount {
		font-size: var(--qr-m-fs-md);
		padding: 0.2rem 0;
		text-align: right;
		white-space: nowrap;
		line-height: 1.35;
	}

	.quotation-request-page--wizard #catering_order_section .catering-order-row__actions .btn {
		font-size: var(--qr-m-fs-sm);
	}

	.quotation-request-page--wizard #catering_order_section .catering-bev-row__badge {
		min-width: 2.15rem;
		padding: 0.18rem 0.32rem;
		font-size: var(--qr-m-fs-2xs);
		line-height: 1.25;
	}

	/* 음료 행 — 1줄 그리드 (구분·메뉴·수량·금액·삭제) */
	.quotation-request-page--wizard #catering_order_section .catering-order-row--bev .catering-order-row__grid {
		grid-template-columns: 2.35rem minmax(0, 1fr) 2.85rem minmax(3.25rem, 4rem) 1.65rem;
		gap: 0.28rem 0.32rem;
		align-items: center;
	}

	.quotation-request-page--wizard #catering_order_section .catering-order-row--bev .catering-order-row__field--qty .form-control {
		text-align: center;
		padding-left: 0.2rem;
		padding-right: 0.2rem;
	}

	/* 브런치 행 — 2줄 (카테고리+메뉴 / 수량+금액+삭제) */
	.quotation-request-page--wizard #catering_order_section .catering-order-row:not(.catering-order-row--bev) .catering-order-row__grid {
		grid-template-columns: minmax(4.35rem, 5rem) minmax(0, 1fr) 2.85rem minmax(3.25rem, 1fr) 1.65rem;
		grid-template-rows: auto auto;
		gap: 0.28rem 0.32rem;
		align-items: center;
	}

	.quotation-request-page--wizard #catering_order_section .catering-order-row:not(.catering-order-row--bev) .catering-order-row__field:nth-child(1) {
		grid-column: 1;
		grid-row: 1;
	}

	.quotation-request-page--wizard #catering_order_section .catering-order-row:not(.catering-order-row--bev) .catering-order-row__field:nth-child(2) {
		grid-column: 2 / -1;
		grid-row: 1;
	}

	.quotation-request-page--wizard #catering_order_section .catering-order-row:not(.catering-order-row--bev) .catering-order-row__field:nth-child(3) {
		grid-column: 1;
		grid-row: 2;
	}

	.quotation-request-page--wizard #catering_order_section .catering-order-row:not(.catering-order-row--bev) .catering-order-row__field:nth-child(4) {
		grid-column: 2;
		grid-row: 2;
	}

	.quotation-request-page--wizard #catering_order_section .catering-order-row:not(.catering-order-row--bev) .catering-order-row__actions {
		grid-column: 3 / -1;
		grid-row: 2;
		justify-content: flex-end;
	}

	.quotation-request-page--wizard #catering_order_section .catering-order-row:not(.catering-order-row--bev) .catering-order-row__field:nth-child(3) .form-control {
		text-align: center;
		padding-left: 0.2rem;
		padding-right: 0.2rem;
	}

	.quotation-request-page--wizard #catering_order_section .catering-bev-empty-hint {
		font-size: var(--qr-m-fs-sm);
		padding: 0.35rem 0.1rem 0;
		margin-top: 0.2rem;
		line-height: var(--qr-m-lh);
	}

	.quotation-request-page--wizard #catering_order_section .catering-order-actions .btn {
		font-size: var(--qr-m-fs-md);
	}

	.quotation-request-page--wizard #catering_order_section .catering-order-actions {
		margin-top: 0.42rem;
		padding-top: 0.42rem;
	}

	/* 현장 운영 — 종료시간·테이블 2열, 옵션 전체 너비 */
	.quotation-request-page--wizard .catering-onsite-form__grid {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-items: end;
		gap: var(--qr-m-field-gap-y) var(--qr-m-field-gap-x);
	}

	.quotation-request-page--wizard .catering-onsite-form__col {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 0.24rem;
		min-width: 0;
		width: 100%;
	}

	.quotation-request-page--wizard .catering-onsite-form__col:nth-child(3) {
		grid-column: 1 / -1;
		width: 100%;
		min-width: 0;
	}

	.quotation-request-page--wizard .catering-onsite-form__col:nth-child(3) .catering-onsite-checklist {
		width: 100%;
	}

	.quotation-request-page--wizard .catering-onsite-form__control {
		width: 100%;
	}

	.quotation-request-page--wizard .catering-onsite-form__control .form-select,
	.quotation-request-page--wizard .catering-onsite-form__control .form-control {
		width: 100% !important;
		max-width: 100% !important;
	}

	.quotation-request-page--wizard #catering_event_end_time,
	.quotation-request-page--wizard #catering_table_sets {
		width: 100%;
		max-width: 100%;
	}

	.quotation-request-page--wizard .catering-onsite-form__label {
		font-size: var(--qr-m-fs-sm);
		min-height: 0;
		line-height: 1.35;
	}

	.quotation-request-page--wizard .catering-onsite-checklist {
		flex-direction: row;
		flex-wrap: wrap;
		gap: var(--qr-m-field-gap-y) 0.5rem;
	}

	.quotation-request-page--wizard .catering-onsite-checklist .form-check {
		min-height: 0;
	}

	.quotation-request-page--wizard .catering-onsite-layout {
		gap: 0.38rem;
	}

	.quotation-request-page--wizard .catering-onsite-form {
		gap: 0.35rem;
	}

	.quotation-request-page--wizard #catering_order_section .catering-onsite-waiting-bar {
		font-size: var(--qr-m-fs-sm);
		padding: 0.38rem 0.48rem;
		line-height: var(--qr-m-lh);
	}

	.quotation-request-page--wizard #catering_order_section .catering-onsite-notice__head {
		font-size: var(--qr-m-fs-sm);
		padding: 0.38rem 0.48rem;
		line-height: 1.35;
	}

	.quotation-request-page--wizard #catering_order_section .catering-onsite-notice__head i {
		font-size: var(--qr-m-fs-md);
	}

	.quotation-request-page--wizard #catering_order_section .catering-onsite-notice__list {
		font-size: var(--qr-m-fs-sm);
		padding: 0.35rem 0.48rem 0.38rem 1.35rem;
		line-height: var(--qr-m-lh);
	}

	.quotation-request-page--wizard #catering_order_section .catering-onsite-notice__list li + li {
		margin-top: 0.12rem;
	}

	.quotation-request-page--wizard .catering-onsite-checklist .form-check-label {
		font-size: var(--qr-m-fs-sm);
	}

	.quotation-request-page--wizard .qr-wizard-step4-ui .qr-wizard-form-group > label {
		font-size: var(--qr-m-fs-sm);
	}

	.quotation-request-page--wizard .qr-wizard-step4-ui .qr-wizard-type-card h3 {
		font-size: var(--qr-m-fs-md);
	}

	.quotation-request-page--wizard .qr-wizard-step4-ui .qr-wizard-type-card p {
		font-size: var(--qr-m-fs-sm);
		line-height: var(--qr-m-lh);
	}

	.quotation-request-page--wizard .qr-wizard-step4-ui .qr-wizard-mini-card {
		font-size: var(--qr-m-fs-md);
	}

	.quotation-request-page--wizard .qr-wizard-complete h2 {
		font-size: var(--qr-m-fs-xl);
	}

	.quotation-request-page--wizard .qr-wizard-complete p {
		font-size: var(--qr-m-fs-sm);
		line-height: var(--qr-m-lh);
	}

	body.quotation-request-page--wizard .qr-dev-page-banner {
		font-size: var(--qr-m-fs-sm);
		line-height: var(--qr-m-lh);
	}

	/* 최종 예산·케이터링 견적 — 2×2 메트릭 카드 */
	.quotation-request-page--wizard #quotation_section_final .row.g-3,
	.quotation-request-page--wizard #catering_estimate_section .row.g-3 {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		--bs-gutter-x: 0;
		--bs-gutter-y: 0;
		margin-left: 0 !important;
		margin-right: 0 !important;
		gap: var(--qr-m-field-gap-y) var(--qr-m-field-gap-x);
	}

	.quotation-request-page--wizard #quotation_section_final .row.g-3 > [class*="col-"],
	.quotation-request-page--wizard #catering_estimate_section .row.g-3 > [class*="col-"] {
		width: 100% !important;
		max-width: 100% !important;
		padding: 0 !important;
		flex: none !important;
	}

	.quotation-request-page--wizard #quotation_section_final .qr-final-metric-card,
	.quotation-request-page--wizard #catering_estimate_section .qr-final-metric-card {
		height: 100%;
		padding: 0.42rem 0.38rem;
	}

	.quotation-request-page--wizard .qr-final-metric-card .qr-final-metric-label {
		font-size: var(--qr-m-fs-sm);
	}

	.quotation-request-page--wizard .qr-final-metric-card .qr-final-metric-value {
		font-size: var(--qr-m-fs-lg);
	}

	.quotation-request-page--wizard .qr-wizard-footer {
		--qr-footer-btn-min-h: 2.35rem;
		--qr-footer-btn-pad-y: 0.5rem;
		--qr-footer-btn-pad-x: 0.38rem;
		--qr-footer-btn-fs: var(--qr-m-fs-md);
		--qr-footer-gap: clamp(0.32rem, 1.4vw, 0.45rem);
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: stretch;
		justify-content: space-between;
		gap: var(--qr-footer-gap);
		width: 100%;
		max-width: 100%;
		margin-top: 1.25rem;
		padding-top: 0.75rem;
		overflow: hidden;
		box-sizing: border-box;
	}

	/* 공통 — 표시 중인 모든 푸터 버튼 동일 크기 */
	.quotation-request-page--wizard .qr-wizard-footer .btn {
		width: 100%;
		max-width: 100%;
		min-width: 0 !important;
		min-height: var(--qr-footer-btn-min-h);
		padding: var(--qr-footer-btn-pad-y) var(--qr-footer-btn-pad-x) !important;
		font-size: var(--qr-footer-btn-fs);
		font-weight: 500;
		gap: 0.2rem;
		white-space: nowrap;
		box-sizing: border-box;
	}

	.quotation-request-page--wizard .qr-wizard-footer #qr_wizard_draft_quote {
		min-width: 0 !important;
		font-size: var(--qr-footer-btn-fs);
		font-weight: 600;
		padding: var(--qr-footer-btn-pad-y) var(--qr-footer-btn-pad-x) !important;
	}

	.quotation-request-page--wizard .qr-wizard-footer .qr-wizard-btn-icon,
	.quotation-request-page--wizard .qr-wizard-footer .qr-wizard-next-suffix {
		display: none !important;
	}

	/* 3버튼(이전·가견적·다음) — 균등 flex */
	.quotation-request-page--wizard .qr-wizard-footer--triple > #qr_wizard_prev,
	.quotation-request-page--wizard .qr-wizard-footer--triple > .qr-wizard-footer__center,
	.quotation-request-page--wizard .qr-wizard-footer--triple > #qr_wizard_next {
		flex: 1 1 0;
		min-width: 0;
		max-width: 100%;
		width: auto;
	}

	.quotation-request-page--wizard .qr-wizard-footer--triple > .qr-wizard-footer__center {
		flex: 1.12 1 0;
		display: flex;
		align-items: stretch;
		justify-content: center;
	}

	/* 3단계: 이전·실견적·견적확정 — 한 행 균등 */
	.quotation-request-page--wizard .qr-wizard-footer--step3 {
		display: flex !important;
		flex-wrap: nowrap;
		align-items: stretch;
		gap: var(--qr-footer-gap, 0.45rem);
	}

	.quotation-request-page--wizard .qr-wizard-footer--step3 > #qr_wizard_next {
		display: none !important;
	}

	.quotation-request-page--wizard .qr-wizard-footer--step3 > .qr-wizard-footer__center {
		display: contents !important;
	}

	.quotation-request-page--wizard .qr-wizard-footer--step3 > #qr_wizard_prev,
	.quotation-request-page--wizard .qr-wizard-footer--step3 #qr_wizard_draft_quote,
	.quotation-request-page--wizard .qr-wizard-footer--step3 #qr_wizard_confirm_quote {
		flex: 1 1 0;
		min-width: 0;
		width: auto;
		max-width: none;
	}

	/* 2버튼(이전·다음/제출) — 좌·우 50% 그리드, 제출은 오른쪽·다른 단계와 동일 너비 */
	.quotation-request-page--wizard .qr-wizard-footer--dual {
		display: grid;
		grid-template-columns: 1fr 1fr;
		align-items: stretch;
	}

	.quotation-request-page--wizard .qr-wizard-footer--dual > #qr_wizard_prev {
		grid-column: 1;
		justify-self: stretch;
		width: 100%;
		min-width: 0;
	}

	.quotation-request-page--wizard .qr-wizard-footer--dual > #qr_wizard_next {
		grid-column: 2;
		justify-self: stretch;
		width: 100%;
		min-width: 0;
		margin-left: 0;
	}
}

@media (max-width: 359.98px) and (orientation: portrait) {
	.quotation-request-page--wizard .qr-wizard-footer {
		--qr-footer-btn-min-h: 2.35rem;
		--qr-footer-btn-pad-x: 0.32rem;
		--qr-footer-gap: 0.3rem;
	}

	.quotation-request-page--wizard .qr-wizard-survey {
		padding-left: 0.48rem;
		padding-right: 0.48rem;
	}

	.quotation-request-page--wizard #catering_order_section .catering-order-row--bev .catering-order-row__grid {
		grid-template-columns: 2rem minmax(0, 1fr) 2.5rem minmax(2.75rem, 3.35rem) 1.45rem;
		gap: 0.24rem 0.26rem;
	}

	.quotation-request-page--wizard #catering_order_section .catering-order-row:not(.catering-order-row--bev) .catering-order-row__grid {
		grid-template-columns: minmax(3.85rem, 4.5rem) minmax(0, 1fr) 2.5rem minmax(2.75rem, 1fr) 1.45rem;
	}

	.quotation-request-page--wizard .catering-onsite-form__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.quotation-request-page--wizard #quotation_submit_actions_card {
	display: none !important;
}

/* 완료 단계 */
.quotation-request-page--wizard .qr-wizard-complete {
	position: relative;
	text-align: center;
	padding: 3rem 1.35rem 2.5rem;
	overflow: hidden;
	border-radius: 1.15rem;
	background:
		radial-gradient(90% 70% at 50% -5%, rgba(16, 185, 129, 0.14) 0%, rgba(255, 255, 255, 0) 58%),
		linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	border: 1px solid #e2e8f0;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.quotation-request-page--wizard .qr-wizard-complete__glow {
	position: absolute;
	inset: auto 10% -40% 10%;
	height: 55%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(52, 211, 153, 0.18) 0%, rgba(255, 255, 255, 0) 70%);
	pointer-events: none;
}

.quotation-request-page--wizard .qr-wizard-complete__badge {
	position: relative;
	width: 4.5rem;
	height: 4.5rem;
	margin: 0 auto 1.2rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(160deg, #ecfdf5 0%, #d1fae5 100%);
	border: 1px solid #a7f3d0;
	box-shadow: 0 12px 30px rgba(15, 81, 50, 0.14);
}

.quotation-request-page--wizard .qr-wizard-complete__badge i {
	font-size: 1.65rem;
	color: #0f5132;
	margin: 0;
}

.quotation-request-page--wizard .qr-wizard-complete__eyebrow {
	position: relative;
	margin: 0 0 0.5rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: #0f5132;
}

.quotation-request-page--wizard .qr-wizard-complete h2 {
	position: relative;
	font-size: 1.55rem;
	font-weight: 700;
	color: #0f172a;
	letter-spacing: -0.03em;
	margin-bottom: 0.95rem;
	line-height: 1.35;
}

.quotation-request-page--wizard .qr-wizard-complete p {
	position: relative;
	color: #64748b;
	font-size: 0.96875rem;
	line-height: 1.75;
	margin: 0;
}

.quotation-request-page--wizard .qr-wizard-complete__lead {
	max-width: 26rem;
	margin-left: auto !important;
	margin-right: auto !important;
}

.quotation-request-page--wizard .qr-wizard-complete__sub {
	margin-top: 0.95rem !important;
	font-size: 0.875rem !important;
	color: #94a3b8 !important;
}

.quotation-request-page--wizard .qr-wizard-complete__actions {
	position: relative;
	margin-top: 1.75rem;
	display: flex;
	justify-content: center;
}

.quotation-request-page--wizard .qr-wizard-complete__home-btn {
	min-width: 10.5rem;
	min-height: 2.85rem;
	padding: 0.8rem 1.6rem;
	font-weight: 600;
	border-radius: 999px;
	box-shadow: 0 8px 20px rgba(15, 81, 50, 0.18);
}

/* 접수 완료 모달 */
.fb-wizard-done-modal .modal-dialog {
	max-width: 26rem;
}

.fb-wizard-done-modal__content {
	border: none;
	border-radius: 1.15rem;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
	background:
		radial-gradient(120% 80% at 50% -10%, rgba(16, 185, 129, 0.16) 0%, rgba(255, 255, 255, 0) 55%),
		#ffffff;
}

.fb-wizard-done-modal__body {
	padding: 2.1rem 1.75rem 1.85rem;
}

.fb-wizard-done-modal__icon {
	margin-bottom: 1rem;
}

.fb-wizard-done-modal__icon-ring {
	width: 4.5rem;
	height: 4.5rem;
	margin: 0 auto;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(160deg, #ecfdf5 0%, #d1fae5 55%, #bbf7d0 100%);
	border: 1px solid #86efac;
	box-shadow: 0 12px 30px rgba(15, 81, 50, 0.14);
	animation: fbWizardDonePop 0.45s ease-out;
}

.fb-wizard-done-modal__icon-ring i {
	font-size: 1.7rem;
	color: #0f5132;
}

.fb-wizard-done-modal__icon-ring--notice {
	background: linear-gradient(160deg, #eff6ff 0%, #dbeafe 55%, #bfdbfe 100%);
	border-color: #93c5fd;
	box-shadow: 0 12px 30px rgba(37, 99, 235, 0.14);
}

.fb-wizard-done-modal__icon-ring--notice i {
	color: #1d4ed8;
}

.fb-wizard-done-modal--notice .fb-wizard-done-modal__content {
	background:
		radial-gradient(120% 80% at 50% -10%, rgba(59, 130, 246, 0.14) 0%, rgba(255, 255, 255, 0) 55%),
		#ffffff;
}

.fb-wizard-done-modal--notice .fb-wizard-done-modal__eyebrow {
	color: #1d4ed8;
}

.fb-wizard-done-modal--notice .fb-wizard-done-modal__btn {
	background: #1d4ed8;
	box-shadow: 0 8px 20px rgba(29, 78, 216, 0.22);
}

.fb-wizard-done-modal--notice .fb-wizard-done-modal__btn:hover,
.fb-wizard-done-modal--notice .fb-wizard-done-modal__btn:focus {
	background: #1e40af;
	box-shadow: 0 10px 24px rgba(29, 78, 216, 0.28);
}

.fb-wizard-done-modal__eyebrow {
	margin: 0 0 0.4rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: #0f5132;
}

.fb-wizard-done-modal__title {
	margin: 0 0 0.85rem;
	font-size: 1.2rem;
	font-weight: 700;
	color: #0f172a;
	letter-spacing: -0.02em;
	line-height: 1.4;
}

.fb-wizard-done-modal__lead {
	margin: 0 0 0.75rem;
	font-size: 0.9375rem;
	line-height: 1.7;
	color: #475569;
}

.fb-wizard-done-modal__note {
	margin: 0 0 1.35rem;
	font-size: 0.8125rem;
	line-height: 1.55;
	color: #94a3b8;
}

.fb-wizard-done-modal__btn {
	min-width: 9.5rem;
	padding: 0.7rem 1.4rem;
	border-radius: 999px;
	border: none;
	background: #0f5132;
	color: #fff;
	font-weight: 600;
	font-size: 0.9375rem;
	box-shadow: 0 8px 20px rgba(15, 81, 50, 0.22);
	transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.fb-wizard-done-modal__btn:hover,
.fb-wizard-done-modal__btn:focus {
	background: #0a3d26;
	color: #fff;
	box-shadow: 0 10px 24px rgba(15, 81, 50, 0.28);
}

.fb-wizard-done-modal__btn:active {
	transform: translateY(1px);
}

@keyframes fbWizardDonePop {
	0% {
		opacity: 0;
		transform: scale(0.72);
	}
	70% {
		opacity: 1;
		transform: scale(1.06);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

@media (prefers-reduced-motion: reduce) {
	.fb-wizard-done-modal__icon-ring {
		animation: none;
	}
}

/* 결제 단계 */
.quotation-request-page--wizard #qr_wizard_step_payment.d-none {
	display: none !important;
}

.quotation-request-page--wizard #qr_wizard_step_payment.qr-wizard-step--active {
	display: block !important;
}

.quotation-request-page--wizard #after_confirm_section .qr-section-head {
	display: none;
}

.quotation-request-page--wizard #after_confirm_section .qr-section-body,
.quotation-request-page--wizard #qr_wizard_step_4 .qr-section-body {
	padding: 0;
	background: transparent;
	border: none;
	box-shadow: none;
	border-radius: 0;
}

.quotation-request-page--wizard #after_confirm_section .qr-section {
	margin-bottom: 0;
}

.quotation-request-page--wizard .qr-wizard-step4-legacy {
	display: none !important;
}

/* 위저드 4단계 활성 시 after_confirm d-none 무시 */
.quotation-request-page--wizard #qr_wizard_step_4.qr-wizard-step--active #after_confirm_section,
.quotation-request-page--wizard #qr_wizard_step_4.qr-wizard-step--active #after_confirm_section.d-none {
	display: block !important;
}

.quotation-request-page--wizard #qr_wizard_step_4.qr-wizard-step--active .qr-wizard-step4-ui {
	display: block;
}

/* 4단계 — test.html 카드·칩 UI */
.quotation-request-page--wizard .qr-wizard-step4-ui .qr-wizard-type-card,
.quotation-request-page--wizard .qr-wizard-step4-ui .qr-wizard-mini-card {
	width: 100%;
}

.quotation-request-page--wizard .qr-wizard-step4-ui .qr-wizard-form-group {
	margin-bottom: 1.125rem;
}

.quotation-request-page--wizard .qr-wizard-step4-ui .qr-wizard-form-group > .row {
	justify-content: center;
}

.quotation-request-page--wizard .qr-wizard-step4-ui .qr-wizard-type-card {
	height: 100%;
}

.quotation-request-page--wizard .qr-wizard-step4-ui .qr-wizard-form-group > label {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #374151;
}

.quotation-request-page--wizard .qr-wizard-card-grid-3 {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.875rem;
}

@media (min-width: 576px), (orientation: landscape) {
	.quotation-request-page--wizard .qr-wizard-card-grid-3 {
		grid-template-columns: repeat(3, 1fr);
	}
}

.quotation-request-page--wizard .qr-wizard-card-grid-2 {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@media (min-width: 576px), (orientation: landscape) {
	.quotation-request-page--wizard .qr-wizard-card-grid-2 {
		grid-template-columns: repeat(2, 1fr);
	}
}

.quotation-request-page--wizard .qr-wizard-type-card {
	border: 2px solid #e5e7eb;
	border-radius: 12px;
	padding: 1.5rem 0.875rem;
	text-align: center;
	cursor: pointer;
	transition: border-color 0.2s, background 0.2s;
	background: #fff;
	height: 100%;
}

.quotation-request-page--wizard .qr-wizard-type-card:hover {
	border-color: #86efac;
	background: #f9fafb;
}

.quotation-request-page--wizard .qr-wizard-type-card.selected {
	border-color: #0f5132;
	background: #ecfdf5;
}

.quotation-request-page--wizard .qr-wizard-type-card i {
	font-size: 2rem;
	color: #0f5132;
	margin-bottom: 0.75rem;
	display: block;
	pointer-events: none;
}

.quotation-request-page--wizard .qr-wizard-type-card h3 {
	font-size: 0.9375rem;
	margin: 0 0 0.375rem;
	font-weight: 700;
	color: #0f172a;
	pointer-events: none;
}

.quotation-request-page--wizard .qr-wizard-type-card p {
	font-size: 0.75rem;
	color: #64748b;
	line-height: 1.45;
	margin: 0;
	pointer-events: none;
}

.quotation-request-page--wizard .qr-wizard-mini-card {
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 0.875rem;
	text-align: center;
	cursor: pointer;
	background: #fff;
	font-size: 0.875rem;
	font-weight: 500;
	transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.quotation-request-page--wizard .qr-wizard-mini-card:hover {
	background: #f9fafb;
	border-color: #cbd5e1;
}

.quotation-request-page--wizard .qr-wizard-mini-card.selected {
	border-color: #0f5132;
	background: #ecfdf5;
	color: #0f5132;
	font-weight: 700;
}

.quotation-request-page--wizard .qr-wizard-evidence-block {
	border-radius: 12px;
	margin-bottom: 1.25rem;
	padding: 1.25rem;
}

.quotation-request-page--wizard #block_cash_receipt_fields {
	border: 2px solid #0f5132;
	background: #ecfdf5;
}

.quotation-request-page--wizard #block_cash_receipt_fields h4 {
	color: #0f5132;
	font-size: 1rem;
	font-weight: 700;
	margin: 0 0 0.75rem;
}

.quotation-request-page--wizard #block_business_fields {
	border: none;
	background: transparent;
	padding: 0;
}

.quotation-request-page--wizard #block_business_fields h4 {
	display: none;
}

/* 사업자 등록 정보 — 프리미엄 카드 */
.quotation-request-page--wizard .qr-wizard-biz-premium {
	background: linear-gradient(165deg, #ffffff 0%, #f8faf9 48%, #f0fdf4 100%);
	border: 1px solid rgba(15, 81, 50, 0.14);
	border-radius: 16px;
	box-shadow: 0 12px 32px rgba(15, 81, 50, 0.07);
	overflow: hidden;
}

.quotation-request-page--wizard .qr-wizard-biz-premium__header {
	display: flex;
	align-items: flex-start;
	gap: 0.875rem;
	padding: 1.15rem 1.25rem;
	background: linear-gradient(90deg, rgba(15, 81, 50, 0.06) 0%, rgba(15, 81, 50, 0) 100%);
	border-bottom: 1px solid rgba(15, 81, 50, 0.08);
}

.quotation-request-page--wizard .qr-wizard-biz-premium__icon {
	flex: 0 0 2.5rem;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 12px;
	background: #0f5132;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.05rem;
	box-shadow: 0 4px 12px rgba(15, 81, 50, 0.22);
}

.quotation-request-page--wizard .qr-wizard-biz-premium__title {
	margin: 0 0 0.2rem;
	font-size: 1rem;
	font-weight: 700;
	color: #0f172a;
	letter-spacing: -0.02em;
}

.quotation-request-page--wizard .qr-wizard-biz-premium__desc {
	margin: 0;
	font-size: 0.8125rem;
	color: #64748b;
	line-height: 1.45;
}

.quotation-request-page--wizard .qr-wizard-biz-premium__body {
	padding: 1.15rem 1.25rem 1.25rem;
}

.quotation-request-page--wizard .qr-wizard-biz-premium__company {
	margin-bottom: 0.25rem !important;
}

.quotation-request-page--wizard .qr-wizard-biz-premium__company .form-label,
.quotation-request-page--wizard .qr-wizard-biz-premium__details .form-label {
	font-size: 0.8125rem;
	font-weight: 600;
	color: #334155;
	margin-bottom: 0.4rem;
}

.quotation-request-page--wizard .qr-wizard-biz-premium__input {
	border-color: #e2e8f0;
	border-radius: 10px;
	background: #fff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quotation-request-page--wizard .qr-wizard-biz-premium__input:focus {
	border-color: #0f5132;
	box-shadow: 0 0 0 3px rgba(15, 81, 50, 0.1);
}

.quotation-request-page--wizard .qr-wizard-biz-premium__grid {
	margin-bottom: 1rem;
}

.quotation-request-page--wizard .qr-wizard-biz-premium__address {
	padding: 1rem;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid #e8eef0;
}

.quotation-request-page--wizard .qr-wizard-biz-premium__address-row {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 0.5rem;
}

.quotation-request-page--wizard .qr-wizard-biz-premium__address-row .qr-wizard-biz-premium__search-btn {
	flex: 0 0 auto;
	white-space: nowrap;
	min-width: 6.5rem;
}

.quotation-request-page--wizard .qr-wizard-biz-premium__address-row .qr-wizard-biz-premium__addr {
	flex: 1 1 12rem;
	min-width: 0;
}

.quotation-request-page--wizard .qr-wizard-biz-premium__address-row .qr-wizard-biz-premium__detail {
	flex: 0 1 10rem;
	min-width: 7rem;
	max-width: 14rem;
}

@media (min-width: 768px), (orientation: landscape) and (min-width: 576px) {
	.quotation-request-page--wizard .qr-wizard-biz-premium__address-row {
		flex-wrap: nowrap;
	}
	.quotation-request-page--wizard .qr-wizard-biz-premium__address-row .qr-wizard-biz-premium__addr {
		flex: 1 1 auto;
	}
	.quotation-request-page--wizard .qr-wizard-biz-premium__address-row .qr-wizard-biz-premium__detail {
		flex: 0 0 11rem;
		max-width: 11rem;
	}
}

.quotation-request-page--wizard .qr-wizard-biz-premium__address-search {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 0.65rem;
}

.quotation-request-page--wizard .qr-wizard-biz-premium__address-line {
	--bs-gutter-x: 0.5rem;
	--bs-gutter-y: 0.45rem;
	margin-bottom: 0;
}

.quotation-request-page--wizard .qr-wizard-biz-premium__address-line .form-label {
	margin-bottom: 0.25rem;
}

/* 태블릿 가로(짧은 세로·넓은 가로)에서도 도로명+상세 한 행 */
@media (orientation: landscape) and (min-width: 576px) and (max-width: 767.98px) {
	.quotation-request-page--wizard .qr-wizard-biz-premium__address-line > .col-12 {
		flex: 0 0 auto;
		width: auto;
	}
	.quotation-request-page--wizard .qr-wizard-biz-premium__address-line > :first-child {
		width: 65%;
	}
	.quotation-request-page--wizard .qr-wizard-biz-premium__address-line > :last-child {
		width: 35%;
	}
}

.quotation-request-page--wizard .qr-wizard-biz-premium__postcode {
	flex: 0 0 7.5rem;
	max-width: 7.5rem;
}

.quotation-request-page--wizard .qr-wizard-biz-premium__search-btn {
	flex: 0 0 auto;
	min-width: 6.5rem;
	font-weight: 600;
	border-radius: 10px;
	padding: 0.55rem 1rem;
}

@media (min-width: 576px), (orientation: landscape) {
	.quotation-request-page--wizard .qr-wizard-biz-premium__search-btn {
		flex: 0 0 auto;
	}
}

.quotation-request-page--wizard #block_business_fields .row.g-3 {
	margin-bottom: 0.75rem;
}

.quotation-request-page--wizard #block_business_fields hr.my-3 {
	display: none;
}

.quotation-request-page--wizard #block_business_fields > p.text-muted.small {
	display: none;
}

.quotation-request-page--wizard #after_confirm_section .qr-wizard-step4-extra {
	margin-top: 1.25rem;
	padding-top: 1rem;
	border-top: 1px solid #e2e8f0;
}

.quotation-request-page--wizard .qr-wizard-special-requirements {
	margin-top: 0.25rem;
}

.quotation-request-page--wizard .qr-wizard-special-requirements .form-label {
	font-weight: 600;
	color: #374151;
}

/* 정기배송 3단계 — 월 배송 횟수·요일 칩 */
.quotation-request-page--wizard #regular_order_options .form-label {
	font-weight: 600;
	color: #374151;
}

.quotation-request-page--wizard #regular_order_options .qr-wizard-chip-container {
	gap: 0.5rem;
}

.quotation-request-page--wizard #regular_order_options .qr-reg-day-btn {
	border-radius: 999px;
	padding: 0.5rem 1rem;
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.2;
}

.quotation-request-page--wizard #regular_order_options .qr-reg-day-btn.btn-dark {
	background-color: #2563eb;
	border-color: #2563eb;
}

.quotation-request-page--wizard #regular_order_options .qr-reg-day-btn.btn-outline-secondary {
	color: #374151;
	border-color: #e5e7eb;
	background: #fff;
}

.quotation-request-page--wizard #regular_order_options .qr-reg-day-btn.btn-outline-secondary:hover {
	background: #f9fafb;
	border-color: #cbd5e1;
	color: #111827;
}

/* 태블릿 세로·가로·PC(≥576px) — 동일 컴팩트 타이포·배치·그리드 */
@media (min-width: 576px), (orientation: landscape) {
	html:has(body.quotation-request-page--wizard) {
		font-size: 100%;
	}

	body.quotation-request-page--wizard.quotation-request-page {
		font-size: 0.875rem;
		line-height: 1.5;
	}

	body.quotation-request-page--wizard.quotation-request-page .form-label {
		font-size: 0.75rem;
		margin-bottom: 0.28rem;
	}

	body.quotation-request-page--wizard.quotation-request-page .form-select,
	body.quotation-request-page--wizard.quotation-request-page input.form-control,
	body.quotation-request-page--wizard.quotation-request-page .form-control {
		font-size: 0.8125rem;
		padding: 0.4375rem 0.6875rem;
		min-height: 2.125rem;
	}

	body.quotation-request-page--wizard.quotation-request-page textarea.form-control {
		font-size: 0.8125rem;
		padding: 0.4375rem 0.6875rem;
		min-height: 0;
		line-height: 1.5;
	}

	body.quotation-request-page--wizard.quotation-request-page .form-select-sm,
	body.quotation-request-page--wizard.quotation-request-page .form-control-sm {
		font-size: 0.75rem;
		min-height: 1.875rem;
		padding: 0.35rem 0.55rem;
	}

	body.quotation-request-page--wizard.quotation-request-page .delivery-datetime-row .form-select.delivery-time-select {
		min-height: 2.125rem;
	}

	body.quotation-request-page--wizard.quotation-request-page #basic_delivery_date_row .qr-estimated-distance-hint {
		font-size: 0.6875rem;
	}

	body.quotation-request-page--wizard.quotation-request-page #order_condition_row .form-label {
		font-size: 0.75rem;
	}

	body.quotation-request-page--wizard.quotation-request-page #order_condition_row .form-control {
		font-size: 0.8125rem;
		padding: 0.4375rem 0.6875rem;
		min-height: 2.125rem;
	}

	body.quotation-request-page--wizard.quotation-request-page .form-check-label {
		font-size: 0.8125rem;
	}

	body.quotation-request-page--wizard.quotation-request-page .text-muted,
	body.quotation-request-page--wizard.quotation-request-page small {
		font-size: 0.75rem;
	}

	body.quotation-request-page--wizard.quotation-request-page .alert {
		font-size: 0.8125rem;
		padding: 0.65rem 0.85rem;
	}

	.quotation-request-page--wizard .qr-simple-page-title {
		font-size: 1.25rem;
		margin-bottom: 0.65rem;
	}

	.quotation-request-page--wizard #qr_quotation_container {
		margin-top: 1.25rem !important;
	}

	.quotation-request-page--wizard .qr-wizard-survey {
		padding: 1.15rem 1.3rem 1rem;
		margin-bottom: 1.15rem;
		border-radius: 14px;
	}

	.quotation-request-page--wizard .qr-wizard-progress {
		margin-bottom: 1.25rem;
		height: 28px;
	}

	.quotation-request-page--wizard .qr-wizard-progress__line,
	.quotation-request-page--wizard .qr-wizard-progress__fill {
		top: 13px;
	}

	.quotation-request-page--wizard .qr-wizard-progress__node {
		width: 28px;
		height: 28px;
		font-size: 0.6875rem;
	}

	.quotation-request-page--wizard .qr-wizard-step__title {
		font-size: 1.0625rem;
		margin-bottom: 0.3rem;
	}

	.quotation-request-page--wizard .qr-wizard-step__desc {
		font-size: 0.8125rem;
		margin-bottom: 0.85rem;
	}

	.quotation-request-page--wizard .qr-wizard-step__body .qr-navy-card,
	.quotation-request-page--wizard .qr-navy-card {
		margin-bottom: 0.7rem;
		border-radius: 10px;
	}

	.quotation-request-page--wizard .qr-wizard-step__body .qr-navy-card__head,
	.quotation-request-page--wizard .qr-navy-card__head {
		font-size: 0.8125rem;
		padding: 0.6rem 0.85rem;
	}

	.quotation-request-page--wizard .qr-wizard-step__body .qr-navy-card__body,
	.quotation-request-page--wizard .qr-navy-card__body {
		padding: 0.75rem 0.85rem 0.85rem;
	}

	.quotation-request-page--wizard .qr-wizard-step[data-wizard-step="1"] .qr-order-tabs__face {
		min-height: 3.1rem;
		padding: 0.5rem 0.35rem;
		border-radius: 8px;
	}

	.quotation-request-page--wizard .qr-wizard-step[data-wizard-step="1"] .qr-order-tabs__ko {
		font-size: 0.8125rem;
	}

	.quotation-request-page--wizard .qr-wizard-step[data-wizard-step="1"] .qr-order-tabs__en {
		font-size: 0.625rem;
		margin-top: 0.08rem;
	}

	/* 2단계 회사명·사업자번호·계산서메일 — PC·태블릿 가로 한 행 */
	.quotation-request-page--wizard .qr-wizard-field-row--company.row {
		display: grid !important;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 0.65rem 0.75rem;
		margin-left: 0 !important;
		margin-right: 0 !important;
		--bs-gutter-x: 0;
		--bs-gutter-y: 0;
	}
	.quotation-request-page--wizard .qr-wizard-field-row--company.row > [class*="col-"] {
		width: 100% !important;
		max-width: 100% !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
		flex: none !important;
		min-width: 0;
	}

	.quotation-request-page--wizard .qr-wizard-recommend {
		padding: 0.75rem 0.85rem;
		margin-bottom: 0.75rem;
		font-size: 0.8125rem;
		border-radius: 10px;
	}

	.quotation-request-page--wizard .qr-wizard-recommend i {
		font-size: 1rem;
	}

	.quotation-request-page--wizard .qr-wizard-footer {
		margin-top: 1.25rem;
		padding-top: 0.75rem;
		gap: 0.6rem;
	}

	.quotation-request-page--wizard .qr-wizard-footer .btn {
		min-width: 6.25rem;
		min-height: 2.25rem;
		padding: 0.5rem 1rem;
		font-size: 0.8125rem;
		gap: 0.35rem;
		border-radius: 7px;
	}

	.quotation-request-page--wizard .qr-wizard-footer #qr_wizard_draft_quote {
		min-width: 7rem;
	}

	.quotation-request-page--wizard .qr-wizard-type-card {
		padding: 1rem 0.65rem;
		border-radius: 10px;
	}

	.quotation-request-page--wizard .qr-wizard-type-card i {
		font-size: 1.5rem;
		margin-bottom: 0.5rem;
	}

	.quotation-request-page--wizard .qr-wizard-type-card h3 {
		font-size: 0.8125rem;
	}

	.quotation-request-page--wizard .qr-wizard-type-card p {
		font-size: 0.6875rem;
	}

	.quotation-request-page--wizard .qr-wizard-mini-card {
		padding: 0.65rem 0.5rem;
		font-size: 0.8125rem;
	}

	.quotation-request-page--wizard .qr-wizard-step4-ui .qr-wizard-form-group {
		margin-bottom: 0.85rem;
	}

	.quotation-request-page--wizard .qr-wizard-step4-ui .qr-wizard-form-group > label {
		font-size: 0.8125rem;
		margin-bottom: 0.4rem;
	}

	.quotation-request-page--wizard .qr-wizard-card-grid-3 {
		gap: 0.65rem;
	}

	.quotation-request-page--wizard .qr-wizard-card-grid-2 {
		gap: 0.65rem;
	}

	.quotation-request-page--wizard .qr-wizard-biz-premium {
		border-radius: 12px;
	}

	.quotation-request-page--wizard .qr-wizard-biz-premium__header {
		padding: 0.85rem 1rem;
		gap: 0.65rem;
	}

	.quotation-request-page--wizard .qr-wizard-biz-premium__icon {
		flex: 0 0 2.125rem;
		width: 2.125rem;
		height: 2.125rem;
		font-size: 0.9rem;
		border-radius: 10px;
	}

	.quotation-request-page--wizard .qr-wizard-biz-premium__title {
		font-size: 0.875rem;
	}

	.quotation-request-page--wizard .qr-wizard-biz-premium__desc {
		font-size: 0.75rem;
	}

	.quotation-request-page--wizard .qr-wizard-biz-premium__body {
		padding: 0.85rem 1rem 1rem;
	}

	.quotation-request-page--wizard .qr-wizard-biz-premium__search-btn {
		padding: 0.4375rem 0.85rem;
		font-size: 0.8125rem;
	}

	.quotation-request-page--wizard .qr-rec-menu-toolbar__title {
		font-size: 0.8125rem;
	}

	.quotation-request-page--wizard .qr-rec-menu-card {
		min-height: 64px;
		border-radius: 8px;
	}

	.quotation-request-page--wizard .qr-rec-menu-card__img-wrap {
		flex: 0 0 80px;
		width: 80px;
	}

	.quotation-request-page--wizard .qr-rec-menu-card__title {
		font-size: 0.8125rem;
	}

	.quotation-request-page--wizard .qr-rec-menu-card__price {
		font-size: 0.75rem;
	}

	.quotation-request-page--wizard .qr-rec-menu-card__desc {
		font-size: 0.75rem;
	}

	.quotation-request-page--wizard .qr-rec-menu-card__foot {
		font-size: 0.6875rem;
	}

	.quotation-request-page--wizard .qr-catering-panel-lead {
		font-size: 0.75rem;
		margin-bottom: 0.65rem;
	}

	.quotation-request-page--wizard .qr-final-metric-card .qr-final-metric-label {
		font-size: 0.6875rem;
	}

	.quotation-request-page--wizard .qr-final-metric-card .qr-final-metric-value {
		font-size: 0.9375rem;
	}

	/* request.php 공통 — 모바일 가로에서도 PC와 동일 그리드·정렬 */
	.quotation-request-page--wizard .catering-order-head-row {
		display: grid;
	}

	.quotation-request-page--wizard .catering-order-row__grid {
		grid-template-columns: 1.1fr 1.4fr 0.55fr 0.7fr 2.5rem;
		gap: 0.5rem;
	}

	.quotation-request-page--wizard .catering-order-row--bev .catering-order-row__grid {
		grid-template-columns: 4.25rem 1.4fr 0.55fr 0.7fr 2.5rem;
	}

	.quotation-request-page--wizard .catering-order-row__field .catering-order-row__label {
		display: none;
	}

	.quotation-request-page--wizard .catering-order-row__amount {
		text-align: right;
	}

	.quotation-request-page--wizard .catering-onsite-form__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 0.55rem 0.85rem;
	}

	.quotation-request-page--wizard .catering-onsite-layout {
		gap: 0.45rem;
	}

	.quotation-request-page--wizard .catering-onsite-form {
		gap: 0.4rem;
	}

	.quotation-request-page--wizard .fb-budget-adjust-opts {
		width: auto !important;
		margin-left: 0.65rem !important;
		margin-top: 0 !important;
		padding-left: 0.65rem !important;
		border-left: 1px solid #e2e8f0 !important;
		justify-content: flex-end !important;
	}

	.quotation-request-page--wizard #order_condition_row .form-label {
		font-size: 0.75rem;
	}

	.quotation-request-page--wizard #order_condition_row .form-control {
		font-size: 0.8125rem;
		padding: 0.4375rem 0.6875rem;
		min-height: 2.125rem;
	}

	/* sm/md/lg/xl — 가로·태블릿·PC 동일 그리드 (Bootstrap 768·992·1200px 분기 무시) */
	.quotation-request-page--wizard .col-sm-4 { flex: 0 0 auto; width: 33.33333333%; }
	.quotation-request-page--wizard .col-sm-6 { flex: 0 0 auto; width: 50%; }
	.quotation-request-page--wizard .col-sm-8 { flex: 0 0 auto; width: 66.66666667%; }
	.quotation-request-page--wizard .col-md-2 { flex: 0 0 auto; width: 16.66666667%; }
	.quotation-request-page--wizard .col-md-3 { flex: 0 0 auto; width: 25%; }
	.quotation-request-page--wizard .col-md-4 { flex: 0 0 auto; width: 33.33333333%; }
	.quotation-request-page--wizard .col-md-5 { flex: 0 0 auto; width: 41.66666667%; }
	.quotation-request-page--wizard .col-md-6 { flex: 0 0 auto; width: 50%; }
	.quotation-request-page--wizard .col-md-12 { flex: 0 0 auto; width: 100%; }
	.quotation-request-page--wizard .col-lg-1 { flex: 0 0 auto; width: 8.33333333%; }
	.quotation-request-page--wizard .col-lg-2 { flex: 0 0 auto; width: 16.66666667%; }
	.quotation-request-page--wizard .col-lg-3 { flex: 0 0 auto; width: 25%; }
	.quotation-request-page--wizard .col-lg-4 { flex: 0 0 auto; width: 33.33333333%; }
	.quotation-request-page--wizard .col-lg-5 { flex: 0 0 auto; width: 41.66666667%; }
	.quotation-request-page--wizard .col-lg-6 { flex: 0 0 auto; width: 50%; }
	.quotation-request-page--wizard .col-lg-7 { flex: 0 0 auto; width: 58.33333333%; }
	.quotation-request-page--wizard .col-lg-8 { flex: 0 0 auto; width: 66.66666667%; }
	.quotation-request-page--wizard .col-lg-12 { flex: 0 0 auto; width: 100%; }
	.quotation-request-page--wizard .col-xl-3 { flex: 0 0 auto; width: 25%; }

	.quotation-request-page--wizard .pt-md-0,
	.quotation-request-page--wizard .pt-lg-0 { padding-top: 0 !important; }
	.quotation-request-page--wizard .text-md-end,
	.quotation-request-page--wizard .text-lg-end { text-align: right !important; }

	/* request.php 모바일 세로 전용 축소·세로 스택 — 가로에서는 해제 */
	body.quotation-request-page--wizard.quotation-request-page .delivery-datetime-row .d-flex {
		flex-direction: row;
		align-items: center !important;
	}

	.quotation-request-page--wizard #catering_order_section .qr-catering-panel-body {
		padding: 0.75rem 0.8rem 0.85rem;
	}

	.quotation-request-page--wizard #catering_order_section .catering-sub-card .qr-navy-card__head {
		padding: 0.6rem 0.8rem;
		font-size: 0.8125rem;
	}

	.quotation-request-page--wizard #catering_order_section .catering-order-row {
		padding: 0.55rem 0.6rem;
	}

	.quotation-request-page--wizard #catering_order_section .catering-bev-toolbar {
		padding: 0.55rem 0.65rem;
		margin-bottom: 0.65rem;
	}

	.quotation-request-page--wizard #catering_order_section .catering-bev-toolbar__label {
		font-size: 0.75rem;
	}

	.quotation-request-page--wizard #catering_order_section .catering-onsite-waiting-bar {
		font-size: 0.75rem;
		padding: 0.45rem 0.65rem;
	}

	.quotation-request-page--wizard #catering_order_section .catering-onsite-notice__head {
		font-size: 0.6875rem;
		padding: 0.45rem 0.65rem;
	}

	.quotation-request-page--wizard #catering_order_section .catering-onsite-notice__list {
		font-size: 0.6875rem;
		padding: 0.4rem 0.65rem 0.4rem 1.55rem;
		line-height: 1.45;
	}

	.quotation-request-page--wizard #catering_order_section .catering-onsite-notice__list li + li {
		margin-top: 0.15rem;
	}

	.quotation-request-page--wizard .qr-wizard-step[data-wizard-step="1"] .qr-order-tabs {
		grid-template-columns: repeat(3, 1fr);
	}

	.quotation-request-page--wizard .qr-wizard-card-grid-3 {
		grid-template-columns: repeat(3, 1fr);
	}

	.quotation-request-page--wizard .qr-wizard-card-grid-2 {
		grid-template-columns: repeat(2, 1fr);
	}

	.quotation-request-page--wizard .qr-wizard-biz-premium__search-btn {
		flex: 0 0 auto;
	}

	.quotation-request-page--wizard .fb-budget-adjust-opts .form-check-label {
		font-size: 0.6875rem;
	}
}

@media (min-width: 1200px) {
	.quotation-request-page--wizard .qr-wizard-survey {
		padding: 1.05rem 1.2rem 0.9rem;
	}

	.quotation-request-page--wizard .qr-wizard-step__title {
		font-size: 1.03125rem;
	}

	.quotation-request-page--wizard .qr-simple-page-title {
		font-size: 1.1875rem;
	}
}

/* ========== Dark mode (data-bs-theme="dark") ========== */
[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-survey {
	background: #1a1f24;
	border-color: #2f3a44;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.28);
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-progress__line {
	background: #334155;
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-progress__fill {
	background: #2dd4a8;
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-progress__node {
	background: #1e293b;
	border-color: #475569;
	color: #94a3b8;
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-progress__node--active {
	background: #0f5132;
	border-color: #2dd4a8;
	color: #ecfdf5;
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-progress__node--done {
	background: #14532d;
	border-color: #22c55e;
	color: #dcfce7;
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-status-card {
	border-color: #2f4a42;
	background: linear-gradient(135deg, #15241f 0%, #1a2b26 100%);
	box-shadow: none;
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-status-card__title {
	color: #6ee7b7;
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-status-card__rid {
	color: #94a3b8;
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-status-card__hint {
	color: #cbd5e1;
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-status-card__hint strong {
	color: #f8fafc;
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-status-card--confirm_requested {
	border-color: #1e3a5f;
	background: linear-gradient(135deg, #152033 0%, #1a2740 100%);
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-status-card--confirm_requested .qr-wizard-status-card__title {
	color: #93c5fd;
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-status-card--confirm_modified {
	border-color: #78350f;
	background: linear-gradient(135deg, #2a1f0e 0%, #3b2a12 100%);
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-status-card--confirm_modified .qr-wizard-status-card__title {
	color: #fbbf24;
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-status-card--confirmed {
	border-color: #4c1d95;
	background: linear-gradient(135deg, #1f1633 0%, #2a1f45 100%);
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-status-card--confirmed .qr-wizard-status-card__title {
	color: #c4b5fd;
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-step__title {
	color: #f1f5f9;
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-step__desc {
	color: #94a3b8;
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-recommend {
	background: #15241f;
	border-color: #2f4a42;
	color: #a7f3d0;
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-footer {
	border-top-color: #2f3a44;
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-footer .btn-outline-secondary {
	border-color: #475569;
	color: #e2e8f0;
	background: transparent;
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-footer .btn-outline-secondary:hover {
	background: #334155;
	color: #f8fafc;
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-footer .btn-qr-draft-quote {
	background: #1e293b;
	border-color: #475569;
	color: #e2e8f0;
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-type-card {
	background: #1e293b;
	border-color: #334155;
	color: #e2e8f0;
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-type-card:hover {
	border-color: #64748b;
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-type-card.selected {
	border-color: #2dd4a8;
	background: #15241f;
	box-shadow: 0 0 0 1px rgba(45, 212, 168, 0.35);
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-type-card h3 {
	color: #f8fafc;
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-type-card p {
	color: #94a3b8;
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-type-card i {
	color: #2dd4a8;
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-mini-card {
	background: #1e293b;
	border-color: #334155;
	color: #e2e8f0;
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-mini-card.selected {
	border-color: #2dd4a8;
	background: #15241f;
	color: #ecfdf5;
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-evidence-block {
	background: #152033;
	border-color: #2f3a44;
	color: #e2e8f0;
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-biz-premium {
	background: #1a1f24;
	border-color: #2f3a44;
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-biz-premium__title {
	color: #f1f5f9;
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-biz-premium__desc,
[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-biz-premium__company .form-label,
[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-biz-premium__details .form-label {
	color: #94a3b8;
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-biz-premium__input {
	background: #0f172a;
	border-color: #334155;
	color: #e2e8f0;
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-complete {
	background: #1a1f24;
	border-color: #2f3a44;
	color: #e2e8f0;
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-complete h2 {
	color: #f8fafc;
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-complete__lead,
[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-complete__sub {
	color: #94a3b8;
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-complete__eyebrow {
	color: #2dd4a8;
}

[data-bs-theme="dark"] .quotation-request-page--wizard .qr-wizard-special-requirements .form-label {
	color: #94a3b8;
}
