/* ==========================================================================
   AutoNet Brukthandelbevilling Page — Page-Specific Styles
   ========================================================================== */


/* ───────────────────────── Info Cards ───────────────────────── */

.bh-info-card {
	padding: 2rem;
	border-radius: 16px;
	border: 1px solid rgba(0,0,0,0.08);
	background: var(--bs-body-bg);
	transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.bh-info-card:hover {
	border-color: rgba(0,0,0,0.12);
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.bh-info-icon {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.12), rgba(var(--bs-primary-rgb), 0.04));
	color: var(--bs-primary);
	margin-bottom: 1.25rem;
	border: 1px solid rgba(var(--bs-primary-rgb), 0.15);
	transition: all 0.35s ease;
}
.bh-info-card:hover .bh-info-icon {
	transform: scale(1.08);
}

[data-bs-theme="dark"] .bh-info-card {
	border-color: rgba(255,255,255,0.08);
	background: rgba(255,255,255,0.03);
}
[data-bs-theme="dark"] .bh-info-card:hover {
	border-color: rgba(255,255,255,0.14);
	box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}


/* ───────────────────────── Step Timeline ────────────────────── */

.bh-timeline {
	position: relative;
	padding-left: 2.5rem;
}
.bh-timeline::before {
	content: '';
	position: absolute;
	top: 0;
	left: 15px;
	width: 2px;
	height: 100%;
	background: linear-gradient(180deg, rgba(var(--bs-primary-rgb), 0.3), rgba(0,0,0,0.06));
	border-radius: 2px;
}

.bh-timeline-item {
	position: relative;
	padding-bottom: 2rem;
}
.bh-timeline-item:last-child {
	padding-bottom: 0;
}

.bh-timeline-marker {
	position: absolute;
	left: -2.5rem;
	top: 0;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bs-body-bg);
	border: 2px solid rgba(0,0,0,0.15);
	transition: all 0.3s ease;
	z-index: 1;
}
.bh-timeline-marker span {
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--bs-body-color);
}
.bh-timeline-item:hover .bh-timeline-marker {
	border-color: var(--bs-primary);
	box-shadow: 0 0 0 4px rgba(var(--bs-primary-rgb), 0.1);
}
.bh-timeline-item:hover .bh-timeline-marker span {
	color: var(--bs-primary);
}

.bh-timeline-item--highlight .bh-timeline-marker {
	background: var(--bs-primary);
	border-color: var(--bs-primary);
	box-shadow: 0 0 0 4px rgba(var(--bs-primary-rgb), 0.15);
}
.bh-timeline-item--highlight .bh-timeline-marker span {
	color: #fff;
}

.bh-timeline-content {
	padding: 1.25rem 1.5rem;
	border-radius: 14px;
	border: 1px solid rgba(0,0,0,0.08);
	background: var(--bs-body-bg);
	transition: all 0.3s ease;
}
.bh-timeline-item:hover .bh-timeline-content {
	border-color: rgba(0,0,0,0.12);
	box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.bh-timeline-item--highlight .bh-timeline-content {
	border-color: rgba(var(--bs-primary-rgb), 0.2);
	background: rgba(var(--bs-primary-rgb), 0.02);
}
.bh-timeline-content h5 {
	margin-bottom: 0.35rem;
	font-size: 1.05rem;
}

[data-bs-theme="dark"] .bh-timeline::before {
	background: linear-gradient(180deg, rgba(var(--bs-primary-rgb), 0.3), rgba(255,255,255,0.06));
}
[data-bs-theme="dark"] .bh-timeline-marker {
	background: var(--bs-body-bg);
	border-color: rgba(255,255,255,0.15);
}
[data-bs-theme="dark"] .bh-timeline-content {
	border-color: rgba(255,255,255,0.08);
	background: rgba(255,255,255,0.03);
}
[data-bs-theme="dark"] .bh-timeline-item:hover .bh-timeline-content {
	border-color: rgba(255,255,255,0.14);
}
[data-bs-theme="dark"] .bh-timeline-item--highlight .bh-timeline-content {
	background: rgba(var(--bs-primary-rgb), 0.06);
}


/* ═══════════════════════════════════════════════════════════════
   WIZARD
   ═══════════════════════════════════════════════════════════════ */

.bh-wizard {
	border-radius: 20px;
	border: 1px solid rgba(0,0,0,0.08);
	background: var(--bs-body-bg);
	overflow: hidden;
	box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}

[data-bs-theme="dark"] .bh-wizard {
	border-color: rgba(255,255,255,0.08);
	background: rgba(255,255,255,0.03);
}


/* ───────────────────────── Wizard Header (step indicator) ──── */

.bh-wizard-header {
	display: flex;
	align-items: center;
	padding: 1.5rem 2rem;
	border-bottom: 1px solid rgba(0,0,0,0.06);
	overflow-x: auto;
	gap: 0;
}

[data-bs-theme="dark"] .bh-wizard-header {
	border-bottom-color: rgba(255,255,255,0.06);
}

.bh-wizard-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.35rem;
	min-width: 56px;
	cursor: pointer;
	flex-shrink: 0;
	transition: opacity 0.2s ease;
}
.bh-wizard-step:hover .bh-step-num {
	border-color: var(--bs-primary);
	color: var(--bs-primary);
}
.bh-wizard-step.active:hover .bh-step-num,
.bh-wizard-step.done:hover .bh-step-num {
	color: #fff;
}

.bh-step-num {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	font-weight: 700;
	border: 2px solid rgba(0,0,0,0.12);
	color: rgba(0,0,0,0.35);
	background: transparent;
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-bs-theme="dark"] .bh-step-num {
	border-color: rgba(255,255,255,0.12);
	color: rgba(255,255,255,0.35);
}

.bh-step-label {
	font-size: 0.7rem;
	font-weight: 500;
	color: rgba(0,0,0,0.35);
	transition: color 0.3s ease;
	text-align: center;
	white-space: nowrap;
}

[data-bs-theme="dark"] .bh-step-label {
	color: rgba(255,255,255,0.35);
}

/* Active step */
.bh-wizard-step.active .bh-step-num {
	background: var(--bs-primary);
	border-color: var(--bs-primary);
	color: #fff;
	box-shadow: 0 0 0 4px rgba(var(--bs-primary-rgb), 0.15);
}
.bh-wizard-step.active .bh-step-label {
	color: var(--bs-primary);
	font-weight: 600;
}

/* Completed step */
.bh-wizard-step.done .bh-step-num {
	background: var(--bs-primary);
	border-color: var(--bs-primary);
	color: #fff;
}
.bh-wizard-step.done .bh-step-label {
	color: var(--bs-body-color);
}

/* Connector line */
.bh-wizard-connector {
	flex: 1;
	height: 2px;
	background: rgba(0,0,0,0.08);
	margin: 0 0.25rem;
	margin-bottom: 1.1rem;
	min-width: 12px;
	transition: background 0.3s ease;
}
.bh-wizard-connector.done {
	background: var(--bs-primary);
}

[data-bs-theme="dark"] .bh-wizard-connector {
	background: rgba(255,255,255,0.08);
}
[data-bs-theme="dark"] .bh-wizard-connector.done {
	background: var(--bs-primary);
}

/* Mobile step counter */
.bh-wizard-mobile-counter {
	display: none;
	padding: 0.75rem 1.5rem;
	border-bottom: 1px solid rgba(0,0,0,0.06);
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--bs-body-color);
}

[data-bs-theme="dark"] .bh-wizard-mobile-counter {
	border-bottom-color: rgba(255,255,255,0.06);
}


/* ───────────────────────── GDPR Consent ───────────────────── */

.bh-gdpr-consent .form-check-label {
	font-size: 0.88rem;
}
.bh-gdpr-consent .form-check-label a {
	color: var(--bs-primary);
	text-decoration: underline;
	font-weight: 500;
}
.bh-gdpr-consent .form-check-input.is-invalid {
	border-color: #dc3545;
	box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}
.bh-gdpr-consent .form-check-input.is-invalid ~ .form-check-label {
	color: #dc3545;
}

#bhPrivacyModal .modal-body h6 {
	margin-top: 1.25rem;
	margin-bottom: 0.5rem;
	font-weight: 600;
}
#bhPrivacyModal .modal-body h6:first-child {
	margin-top: 0;
}
#bhPrivacyModal .modal-body p,
#bhPrivacyModal .modal-body li {
	font-size: 0.9rem;
	line-height: 1.6;
}
#bhPrivacyModal .modal-body ul {
	padding-left: 1.25rem;
}


/* ───────────────────────── Wizard Panels ──────────────────── */

.bh-wizard-panel {
	display: none;
	padding: 2rem;
	animation: bhFadeIn 0.3s ease;
}
.bh-wizard-panel.active {
	display: block;
}

@keyframes bhFadeIn {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: translateY(0); }
}

.bh-panel-title {
	font-size: 1.2rem;
	margin-bottom: 1.25rem;
}


/* ───────────────────────── Option Cards (radio/checkbox) ──── */

.bh-option-cards {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.bh-option-card {
	position: relative;
	cursor: pointer;
	margin: 0;
}

.bh-option-card input[type="radio"],
.bh-option-card input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.bh-option-body {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem 1.5rem;
	border-radius: 14px;
	border: 2px solid rgba(0,0,0,0.08);
	background: var(--bs-body-bg);
	transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.bh-option-body:hover {
	border-color: rgba(0,0,0,0.15);
	box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.bh-option-card input:checked ~ .bh-option-body {
	border-color: var(--bs-primary);
	background: rgba(var(--bs-primary-rgb), 0.03);
	box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb), 0.1);
}

.bh-option-icon {
	width: 44px;
	height: 44px;
	min-width: 44px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.12), rgba(var(--bs-primary-rgb), 0.04));
	color: var(--bs-primary);
	border: 1px solid rgba(var(--bs-primary-rgb), 0.15);
	transition: all 0.25s ease;
}

.bh-option-card input:checked ~ .bh-option-body .bh-option-icon {
	background: var(--bs-primary);
	color: #fff;
	border-color: var(--bs-primary);
}

.bh-option-body strong {
	display: block;
	font-size: 0.95rem;
	margin-bottom: 0.15rem;
}
.bh-option-body small {
	display: block;
	font-size: 0.8rem;
	color: rgba(0,0,0,0.5);
}

/* Smaller option cards */
.bh-option-card--sm .bh-option-body {
	padding: 0.85rem 1.25rem;
}
.bh-option-cards--sm {
	gap: 0.5rem;
}

[data-bs-theme="dark"] .bh-option-body {
	border-color: rgba(255,255,255,0.08);
	background: rgba(255,255,255,0.02);
}
[data-bs-theme="dark"] .bh-option-body:hover {
	border-color: rgba(255,255,255,0.15);
}
[data-bs-theme="dark"] .bh-option-card input:checked ~ .bh-option-body {
	border-color: var(--bs-primary);
	background: rgba(var(--bs-primary-rgb), 0.06);
}
[data-bs-theme="dark"] .bh-option-body small {
	color: rgba(255,255,255,0.5);
}


/* ───────────────────────── Form Controls (within wizard) ──── */

.bh-wizard .form-label {
	font-size: 0.85rem;
	font-weight: 500;
	margin-bottom: 0.3rem;
}

.bh-wizard .form-control,
.bh-wizard .form-select {
	border-radius: 10px;
	padding: 0.55rem 0.9rem;
	border-color: rgba(0,0,0,0.12);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.bh-wizard .form-control:focus,
.bh-wizard .form-select:focus {
	border-color: var(--bs-primary);
	box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb), 0.1);
}
.bh-wizard .form-control.is-invalid,
.bh-wizard .form-select.is-invalid {
	border-color: #dc3545;
	box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.bh-wizard .form-check-input:checked {
	background-color: var(--bs-primary);
	border-color: var(--bs-primary);
}

[data-bs-theme="dark"] .bh-wizard .form-control,
[data-bs-theme="dark"] .bh-wizard .form-select {
	border-color: rgba(255,255,255,0.12);
	background: rgba(255,255,255,0.04);
	color: var(--bs-body-color);
}
[data-bs-theme="dark"] .bh-wizard .form-control:focus,
[data-bs-theme="dark"] .bh-wizard .form-select:focus {
	background: rgba(255,255,255,0.06);
}


/* ───────────────────────── Address Cards ──────────────────── */

.bh-address-card {
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 14px;
	padding: 1.25rem 1.5rem;
	margin-bottom: 1rem;
	background: var(--bs-body-bg);
	transition: border-color 0.2s ease;
}

.bh-address-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
}
.bh-address-card-header h6 {
	font-size: 0.9rem;
	font-weight: 600;
}

.bh-addr-remove {
	border: none;
	background: none;
	color: rgba(0,0,0,0.35);
	font-size: 1rem;
	cursor: pointer;
	padding: 0.25rem;
	border-radius: 6px;
	transition: all 0.2s ease;
}
.bh-addr-remove:hover {
	color: #dc3545;
	background: rgba(220, 53, 69, 0.08);
}

[data-bs-theme="dark"] .bh-address-card {
	border-color: rgba(255,255,255,0.08);
	background: rgba(255,255,255,0.02);
}
[data-bs-theme="dark"] .bh-addr-remove {
	color: rgba(255,255,255,0.35);
}
[data-bs-theme="dark"] .bh-addr-remove:hover {
	color: #ff6b7a;
	background: rgba(220, 53, 69, 0.12);
}


/* ───────────────────────── File Upload Areas ─────────────── */

.bh-upload-area {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 0.35rem;
	padding: 1.5rem 1rem;
	border: 2px dashed rgba(0,0,0,0.12);
	border-radius: 14px;
	background: rgba(0,0,0,0.01);
	cursor: pointer;
	transition: all 0.25s ease;
	position: relative;
	min-height: 160px;
}

.bh-upload-area:hover {
	border-color: var(--bs-primary);
	background: rgba(var(--bs-primary-rgb), 0.02);
}

.bh-upload-area.has-file {
	border-color: var(--bs-primary);
	border-style: solid;
	background: rgba(var(--bs-primary-rgb), 0.03);
}

.bh-upload-area i {
	font-size: 1.6rem;
	color: rgba(0,0,0,0.25);
	transition: color 0.2s ease;
}
.bh-upload-area:hover i {
	color: var(--bs-primary);
}
.bh-upload-area.has-file i {
	color: var(--bs-primary);
}

.bh-upload-area strong {
	font-size: 0.85rem;
}

.bh-upload-area small {
	font-size: 0.75rem;
	color: rgba(0,0,0,0.4);
}

.bh-upload-btn {
	display: inline-block;
	margin-top: 0.35rem;
	padding: 0.3rem 0.85rem;
	border-radius: 8px;
	font-size: 0.78rem;
	font-weight: 500;
	background: rgba(var(--bs-primary-rgb), 0.08);
	color: var(--bs-primary);
	transition: background 0.2s ease;
}
.bh-upload-area:hover .bh-upload-btn {
	background: rgba(var(--bs-primary-rgb), 0.14);
}

.bh-upload-input {
	position: absolute;
	inset: 0;
	opacity: 0;
	cursor: pointer;
}

.bh-upload-preview {
	display: none;
	position: absolute;
	inset: 4px;
	border-radius: 10px;
	overflow: hidden;
	background: var(--bs-body-bg);
}
.bh-upload-preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.bh-upload-preview .bh-upload-filename {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--bs-primary);
	padding: 0.5rem;
	word-break: break-all;
}
.bh-upload-preview .bh-upload-remove {
	position: absolute;
	top: 4px;
	right: 4px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: none;
	background: rgba(0,0,0,0.6);
	color: #fff;
	font-size: 0.75rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease;
	z-index: 2;
}
.bh-upload-preview .bh-upload-remove:hover {
	background: #dc3545;
}

.bh-upload-area.is-invalid {
	border-color: #dc3545;
}

[data-bs-theme="dark"] .bh-upload-area {
	border-color: rgba(255,255,255,0.12);
	background: rgba(255,255,255,0.02);
}
[data-bs-theme="dark"] .bh-upload-area:hover {
	border-color: var(--bs-primary);
	background: rgba(var(--bs-primary-rgb), 0.06);
}
[data-bs-theme="dark"] .bh-upload-area.has-file {
	border-color: var(--bs-primary);
	background: rgba(var(--bs-primary-rgb), 0.06);
}
[data-bs-theme="dark"] .bh-upload-area i {
	color: rgba(255,255,255,0.25);
}
[data-bs-theme="dark"] .bh-upload-area small {
	color: rgba(255,255,255,0.4);
}


/* ───────────────────────── Signature Pad ─────────────────── */

.bh-signature-wrapper {
	display: flex;
	flex-direction: column;
}

#bhSignatureCanvas {
	width: 100%;
	height: 160px;
	border: 2px solid rgba(0,0,0,0.1);
	border-radius: 12px;
	cursor: crosshair;
	background: #fff;
	touch-action: none;
}

#bhSignatureCanvas.is-invalid {
	border-color: #dc3545;
}

[data-bs-theme="dark"] #bhSignatureCanvas {
	border-color: rgba(255,255,255,0.12);
	background: rgba(255,255,255,0.06);
}


/* ───────────────────────── Wizard Navigation ─────────────── */

.bh-wizard-nav {
	display: flex;
	align-items: center;
	padding: 1.25rem 2rem;
	border-top: 1px solid rgba(0,0,0,0.06);
}

[data-bs-theme="dark"] .bh-wizard-nav {
	border-top-color: rgba(255,255,255,0.06);
}


/* ───────────────────────── Summary Section ────────────────── */

.bh-summary-group {
	margin-bottom: 1.5rem;
}

.bh-summary-group-title {
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--bs-primary);
	margin-bottom: 0.5rem;
	padding-bottom: 0.35rem;
	border-bottom: 1px solid rgba(0,0,0,0.06);
}

[data-bs-theme="dark"] .bh-summary-group-title {
	border-bottom-color: rgba(255,255,255,0.06);
}

.bh-summary-row {
	display: flex;
	justify-content: space-between;
	padding: 0.3rem 0;
	font-size: 0.88rem;
	gap: 1rem;
}

.bh-summary-label {
	color: rgba(0,0,0,0.5);
	flex-shrink: 0;
}
.bh-summary-value {
	text-align: right;
	font-weight: 500;
	word-break: break-word;
}

[data-bs-theme="dark"] .bh-summary-label {
	color: rgba(255,255,255,0.5);
}

.bh-summary-address {
	padding: 0.75rem 1rem;
	border-radius: 10px;
	border: 1px solid rgba(0,0,0,0.06);
	margin-bottom: 0.5rem;
	font-size: 0.88rem;
}

[data-bs-theme="dark"] .bh-summary-address {
	border-color: rgba(255,255,255,0.06);
	background: rgba(255,255,255,0.02);
}

.bh-summary-attachments {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.bh-summary-attachment {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.35rem 0.75rem;
	border-radius: 8px;
	font-size: 0.8rem;
	font-weight: 500;
	background: rgba(var(--bs-primary-rgb), 0.06);
	color: var(--bs-primary);
}


/* ───────────────────────── Completion Guide ──────────────── */

.bh-completion-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid rgba(0,0,0,0.08);
}

.bh-completion-icon {
	width: 52px;
	height: 52px;
	min-width: 52px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	background: rgba(25, 135, 84, 0.1);
	color: #198754;
}

.bh-next-steps {
	position: relative;
	padding-left: 2.5rem;
	margin-bottom: 2rem;
}
.bh-next-steps::before {
	content: '';
	position: absolute;
	top: 16px;
	left: 15px;
	width: 2px;
	height: calc(100% - 32px);
	background: rgba(0,0,0,0.08);
	border-radius: 2px;
}

.bh-next-step {
	position: relative;
	padding-bottom: 1.5rem;
}
.bh-next-step:last-child {
	padding-bottom: 0;
}

.bh-next-step-num {
	position: absolute;
	left: -2.5rem;
	top: 0;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	font-weight: 700;
	background: var(--bs-body-bg);
	border: 2px solid rgba(0,0,0,0.12);
	color: var(--bs-body-color);
	z-index: 1;
}

.bh-next-step.completed .bh-next-step-num {
	background: #198754;
	border-color: #198754;
	color: #fff;
}

.bh-next-step.highlight .bh-next-step-num {
	background: var(--bs-primary);
	border-color: var(--bs-primary);
	color: #fff;
}

.bh-next-step-content {
	padding-top: 0.25rem;
}
.bh-next-step-content strong {
	display: block;
	font-size: 0.95rem;
	margin-bottom: 0.25rem;
}
.bh-next-step-content p {
	font-size: 0.85rem;
	color: var(--bs-secondary-color);
	margin-bottom: 0.5rem;
}
.bh-next-step-content p:last-child {
	margin-bottom: 0;
}

[data-bs-theme="dark"] .bh-completion-icon {
	background: rgba(25, 135, 84, 0.15);
}
[data-bs-theme="dark"] .bh-next-steps::before {
	background: rgba(255,255,255,0.08);
}
[data-bs-theme="dark"] .bh-next-step-num {
	background: var(--bs-body-bg);
	border-color: rgba(255,255,255,0.12);
}


/* ───────────────────────── AutoNet Promo Card ────────────── */

.bh-promo-card {
	border-radius: 16px;
	border: 1px solid rgba(0,0,0,0.08);
	padding: 1.75rem;
	background: var(--bs-body-bg);
	position: relative;
}

.bh-promo-badge {
	position: absolute;
	top: -10px;
	left: 1.5rem;
	padding: 0.2rem 0.75rem;
	border-radius: 20px;
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	background: var(--bs-primary);
	color: #fff;
}

.bh-promo-features {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 0.6rem;
}

.bh-promo-feature {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.85rem;
	font-weight: 500;
}
.bh-promo-feature i {
	color: var(--bs-primary);
	font-size: 1rem;
	width: 20px;
	text-align: center;
}

[data-bs-theme="dark"] .bh-promo-card {
	border-color: rgba(255,255,255,0.08);
	background: rgba(255,255,255,0.03);
}


/* ───────────────────────── Mobile Responsive ─────────────── */

@media (max-width: 767px) {
	.bh-wizard-header {
		display: none;
	}
	.bh-wizard-mobile-counter {
		display: block;
	}
	.bh-wizard-panel {
		padding: 1.5rem 1.25rem;
	}
	.bh-wizard-nav {
		padding: 1rem 1.25rem;
	}
	.bh-option-body {
		padding: 1rem 1.15rem;
	}
	.bh-address-card {
		padding: 1rem 1.15rem;
	}
	.bh-upload-area {
		min-height: 130px;
		padding: 1rem 0.75rem;
	}
	.bh-timeline {
		padding-left: 2rem;
	}
	.bh-timeline-marker {
		left: -2rem;
		width: 28px;
		height: 28px;
	}
	.bh-timeline-marker span {
		font-size: 0.7rem;
	}
	.bh-timeline::before {
		left: 12px;
	}
	.bh-summary-row {
		flex-direction: column;
		gap: 0.1rem;
	}
	.bh-summary-value {
		text-align: left;
	}
	.bh-next-steps {
		padding-left: 2rem;
	}
	.bh-next-step-num {
		left: -2rem;
		width: 28px;
		height: 28px;
	}
	.bh-next-steps::before {
		left: 12px;
	}
	.bh-promo-features {
		grid-template-columns: 1fr;
	}
	.bh-completion-header h4 {
		font-size: 1.1rem;
	}
}
