/* Exhibition floor map — interactive SVG */
.bm-er-map-legend {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	margin: 0 0 12px;
	font-size: 0.78rem;
}
.bm-er-map-legend__item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.bm-er-map-legend__item i {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 2px;
}

.bm-er-map-legend__item.is-yours {
	font-weight: 700;
	color: #194b7f;
}

.bm-er-map-legend__item.is-yours em {
	font-style: normal;
	font-weight: 600;
	font-size: 0.72rem;
	color: #6b7889;
}

.bm-er-map-wrap {
	width: 100%;
	max-width: 960px;
	margin: 0 auto 16px;
	border-radius: 8px;
	overflow: hidden;
	background: #e8edf3;
	box-shadow: 0 4px 20px rgba(25, 75, 127, 0.12);
}

.bm-er-flow--wide .bm-er-map-wrap {
	max-width: none;
	width: 100%;
	margin-left: 0;
	margin-right: 0;
}

.bm-er-map-svg {
	display: block;
	width: 100%;
	height: auto;
	vertical-align: top;
	user-select: none;
}

.bm-er-map-title {
	font-family: 'Barlow Condensed', 'DM Sans', system-ui, sans-serif;
	font-size: 22px;
	font-weight: 700;
	fill: #194b7f;
}

.bm-er-map-area-label {
	font-family: 'DM Sans', system-ui, sans-serif;
	font-size: 13px;
	fill: #6b7889;
}

.bm-er-map-footer {
	font-family: 'DM Sans', system-ui, sans-serif;
	font-size: 11px;
	fill: #6b7889;
}

.bm-er-map-hint {
	margin: -8px 0 16px;
	font-size: 0.85rem;
	color: #6b7889;
}

.bm-er-map-booth {
	outline: none;
}

.bm-er-map-booth-shape {
	transition: stroke-width 0.12s, filter 0.12s, fill 0.12s;
}

.bm-er-map-booth-label {
	font-family: 'DM Sans', system-ui, sans-serif;
	font-size: 11px;
	font-weight: 700;
	pointer-events: none;
}

/* Selectable — full category colour */
.bm-er-map-booth.is-selectable {
	cursor: pointer;
}

.bm-er-map-booth.is-selectable .bm-er-map-booth-shape {
	stroke: rgba(255, 255, 255, 0.95);
	stroke-width: 2;
}

.bm-er-map-booth.is-selectable .bm-er-map-booth-label {
	fill: #fff;
}

.bm-er-map-booth.is-selectable:hover .bm-er-map-booth-shape,
.bm-er-map-booth.is-selectable:focus-visible .bm-er-map-booth-shape {
	stroke: #f8c628;
	stroke-width: 3;
	filter: drop-shadow(0 0 4px rgba(248, 198, 40, 0.55));
}

.bm-er-map-booth.is-selectable.is-selected .bm-er-map-booth-shape {
	stroke: #f8c628;
	stroke-width: 4;
	filter: drop-shadow(0 0 6px rgba(248, 198, 40, 0.75));
}

/* Muted — wrong zone, sponsor, or taken */
.bm-er-map-booth.is-muted {
	cursor: default;
	pointer-events: all;
}

.bm-er-map-booth.is-muted .bm-er-map-booth-shape {
	fill: #d4d9e0;
	stroke: #b0b8c4;
	stroke-width: 1.5;
}

.bm-er-map-booth.is-muted .bm-er-map-booth-label {
	fill: #7a8494;
}

.bm-er-map-booth.is-muted.is-taken .bm-er-map-booth-shape {
	fill: #c5cad3;
	stroke: #9aa3b2;
}

.bm-er-map-booth.is-muted.is-taken .bm-er-map-booth-label {
	fill: #6b7280;
	text-decoration: line-through;
	text-decoration-thickness: 1px;
}

/* Organiser pre-reserved */
.bm-er-map-booth.is-reserved .bm-er-map-booth-shape {
	fill: #3d4654 !important;
	stroke: #2a3140 !important;
	stroke-width: 1.5;
}

.bm-er-map-booth.is-reserved .bm-er-map-booth-label {
	fill: #d1d5db;
}

.bm-er-map-booth.is-cross-zone.is-selectable .bm-er-map-booth-shape {
	stroke-dasharray: 4 2;
}

.bm-er-map-legend__item--reserved i {
	border: 1px solid #2a3140;
}

/* Booth hover popup */
.bm-er-booth-popup {
	position: fixed;
	z-index: 100060;
	max-width: 300px;
	pointer-events: none;
}

.bm-er-booth-popup:not([hidden]) {
	pointer-events: auto;
}

.bm-er-booth-popup__inner {
	background: #fff;
	border-radius: 10px;
	border: 1px solid #d5dae2;
	border-top: 3px solid #f8c628;
	box-shadow: 0 12px 32px rgba(25, 75, 127, 0.22);
	padding: 14px 16px;
}

.bm-er-booth-popup__head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
}

.bm-er-booth-popup__icon {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	flex-shrink: 0;
	border: 1px solid rgba(0, 0, 0, 0.08);
}

.bm-er-booth-popup__code {
	display: block;
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 1.1rem;
	font-weight: 700;
	color: #194b7f;
}

.bm-er-booth-popup__zone {
	display: block;
	font-size: 0.8rem;
	color: #6b7889;
}

.bm-er-booth-popup__title {
	margin: 0 0 6px;
	font-weight: 700;
	font-size: 0.9rem;
	color: #194b7f;
}

.bm-er-booth-popup__text {
	margin: 0 0 8px;
	font-size: 0.85rem;
	line-height: 1.45;
	color: #3d4a58;
}

.bm-er-booth-popup__price {
	margin: 0 0 12px;
	font-size: 0.9rem;
	font-weight: 700;
	color: #194b7f;
}

.bm-er-booth-popup-reserve {
	width: 100%;
	justify-content: center;
}

/* Confirm dialog */
.bm-er-dialog {
	position: fixed;
	inset: 0;
	z-index: 100050;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(17, 24, 39, 0.55);
}
.bm-er-dialog__panel {
	max-width: 420px;
	width: 100%;
	background: #fff;
	border-radius: 10px;
	padding: 22px 20px;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}
.bm-er-dialog__text {
	margin: 0 0 18px;
	font-size: 1rem;
	line-height: 1.5;
}
.bm-er-dialog__actions {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
}

/* Accessories split layout */
.bm-er-accessories-layout {
	display: grid;
	gap: 20px;
}
@media (min-width: 860px) {
	.bm-er-accessories-layout {
		grid-template-columns: 1fr 1fr;
	}
}

.bm-er-accessories-total {
	margin: 0 0 16px;
	padding: 14px 16px;
	background: #f0f5fa;
	border: 1px solid #d5dae2;
	border-left: 4px solid #194b7f;
	border-radius: 8px;
}

.bm-er-accessories-total__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 10px;
}

.bm-er-accessories-total__head span {
	font-size: 0.9rem;
	font-weight: 600;
	color: #3d4a58;
}

.bm-er-accessories-total__head strong {
	font-size: 1.25rem;
	color: #194b7f;
}

.bm-er-accessories-total__lines {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0.85rem;
	color: #6b7889;
}

.bm-er-accessories-total__lines li {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 4px 0;
}

.bm-er-accessories-total__addons:not(.has-value) span:last-child {
	opacity: 0.55;
}

.bm-er-special-request-note {
	margin: 8px 0 0;
	font-size: 0.82rem;
	color: #6b7889;
	line-height: 1.45;
}

.bm-er-accessory-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid #e8ecf1;
}
.bm-er-accessory-row__label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.95rem;
}
.bm-er-accessory-row__price {
	font-size: 0.85rem;
	color: #6b7889;
	white-space: nowrap;
}

.bm-er-accessory-row--extra-badge {
	flex-wrap: wrap;
	align-items: flex-start;
}

.bm-er-accessory-row--extra-badge .bm-er-accessory-row__qty {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.bm-er-extra-badge-qty {
	min-width: 5rem;
}

.bm-er-badge-holders {
	margin: 12px 0 0;
	padding: 12px 0 0;
	border-top: 1px solid #e8ecf1;
}

.bm-er-badge-holders__lead {
	margin: 0 0 12px;
	font-size: 0.88rem;
	color: #6b7889;
}

.bm-er-badge-holder-card {
	margin: 0 0 14px;
	padding: 12px 14px;
	border: 1px solid #e8ecf1;
	border-radius: 8px;
	background: #f8fafc;
}

.bm-er-badge-holder-card legend {
	font-size: 0.9rem;
	font-weight: 600;
	color: #194b7f;
	padding: 0 4px;
}

.bm-er-badge-holder-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px 20px;
	align-items: start;
}

@media (max-width: 720px) {
	.bm-er-badge-holder-grid {
		grid-template-columns: 1fr;
	}
}

.bm-er-badge-holder-col--verify .bm-er-photo-field {
	margin-bottom: 4px;
}

.bm-er-badge-holder-col--verify .bm-er-file-staged,
.bm-er-badge-holder-col--verify .bm-er-photo-field + .bm-er-file-staged {
	margin: 6px 0 0;
	font-size: 0.82rem;
	color: #1a7a4a;
}

.bm-er-file-staged {
	margin: 6px 0 0;
	font-size: 0.82rem;
	color: #1a7a4a;
	display: flex;
	align-items: center;
	gap: 4px;
}

.bm-er-preview-title {
	margin: 0 0 12px;
	font-size: 1rem;
	color: #194b7f;
}

.bm-er-booth-preview {
	min-height: 320px;
	padding: 0;
	background: #0f1520;
	border-radius: 8px;
	border: 1px solid #194b7f;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(25, 75, 127, 0.12);
}

.bm-er-booth-preview-host,
.bm-er-booth-preview [data-er-booth-preview] {
	display: block;
	width: 100%;
	min-height: 320px;
	height: 100%;
}

.bm-er-booth-canvas-wrap {
	position: relative;
	width: 100%;
	min-height: 320px;
	height: 360px;
}

.bm-er-booth-canvas {
	display: block;
	width: 100%;
	height: 100%;
}

.bm-er-booth-overlay {
	position: absolute;
	backdrop-filter: blur(8px);
	border-radius: 6px;
	pointer-events: none;
}

.bm-er-booth-overlay--info {
	top: 12px;
	right: 12px;
	background: rgba(25, 75, 127, 0.88);
	border: 1px solid rgba(248, 198, 40, 0.32);
	border-top: 3px solid #f8c628;
	padding: 10px 14px;
	max-width: 200px;
}

.bm-er-booth-overlay__type {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #f8c628;
	margin-bottom: 3px;
}

.bm-er-booth-overlay__name {
	font-size: 11.5px;
	color: #fff;
	font-weight: 500;
}

.bm-er-booth-overlay__dims {
	font-size: 10.5px;
	color: rgba(255, 255, 255, 0.45);
	margin-top: 5px;
}

.bm-er-booth-overlay__acc {
	font-size: 10.5px;
	color: rgba(248, 198, 40, 0.85);
	margin-top: 4px;
}

.bm-er-booth-overlay--legend {
	bottom: 12px;
	left: 12px;
	background: rgba(10, 15, 25, 0.82);
	border: 1px solid rgba(255, 255, 255, 0.07);
	padding: 9px 13px;
}

.bm-er-booth-overlay__legend-title {
	font-size: 9.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #f8c628;
	margin-bottom: 5px;
}

.bm-er-booth-overlay__legend-body {
	font-size: 10.5px;
	color: rgba(255, 255, 255, 0.38);
	line-height: 1.65;
}

.bm-er-booth-overlay__legend-open {
	color: rgba(248, 198, 40, 0.42);
}

.bm-er-booth-canvas-footer {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 8px 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 11px;
	color: rgba(255, 255, 255, 0.32);
	text-align: center;
	background: rgba(15, 21, 32, 0.75);
}

.bm-er-selected-booth {
	text-align: center;
	margin-top: 10px;
	color: #194b7f;
}

.bm-er-payment-step {
	max-width: 520px;
}
.bm-er-payment-deadline {
	background: #fff8e6;
	border: 1px solid #f8c628;
	border-radius: 8px;
	padding: 14px 16px;
	margin-bottom: 16px;
}
.bm-er-payment-countdown {
	margin: 8px 0 0;
	font-weight: 600;
	color: #194b7f;
}
.bm-er-payment-bank {
	background: #f8fafc;
	border: 1px solid #d5dae2;
	border-radius: 8px;
	padding: 14px 16px;
	margin-bottom: 16px;
}
.bm-er-payment-bank h4 {
	margin: 0 0 10px;
	color: #194b7f;
	font-size: 0.95rem;
}
.bm-er-payment-bank__logo-wrap {
	margin: 0 0 10px;
}
.bm-er-payment-bank__logo {
	max-height: 40px;
	width: auto;
	display: block;
}
.bm-er-payment-bank__lines p {
	margin: 0 0 6px;
	font-size: 0.88rem;
	color: #334155;
}
.bm-er-payment-bank__lines p:last-child {
	margin-bottom: 0;
}
.bm-er-payment-bank__note {
	font-style: italic;
	color: #475569;
}
.bm-er-payment-terms {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin: 0 0 14px;
}
.bm-er-payment-terms__check {
	font-size: 0.9rem;
	color: #1f2937;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.bm-er-terms-link {
	border: 0;
	background: transparent;
	color: #194b7f;
	text-decoration: underline;
	cursor: pointer;
	font-size: 0.88rem;
	padding: 0;
}
.bm-er-terms-dialog[hidden] {
	display: none !important;
}
.bm-er-dialog__title {
	margin: 0 0 10px;
	font-size: 1.05rem;
	color: #194b7f;
}
.bm-er-final-submit:disabled {
	opacity: 0.55;
	cursor: not-allowed;
}
.bm-er-payment-summary {
	background: #f8fafc;
	border-radius: 8px;
	padding: 14px 16px;
	margin-bottom: 16px;
}
