.expomax-pricing-app {
	--expomax-ink: #162031;
	--expomax-accent: #ef5b2f;
	--expomax-accent-dark: #c8451d;
	--expomax-surface: #ffffff;
	--expomax-surface-soft: #f6f1ea;
	--expomax-border: #dccfbe;
	--expomax-muted: #6f6a63;
	--expomax-strong: #0e1521;
	--expomax-shadow: 0 16px 40px rgba(22, 32, 49, 0.08);
	--expomax-radius-xl: 24px;
	--expomax-radius-lg: 18px;
	--expomax-radius-md: 14px;
	--expomax-radius-sm: 10px;
	--expomax-shadow-soft: 0 10px 24px rgba(22, 32, 49, 0.05);
	--expomax-shadow-active: 0 16px 34px rgba(239, 91, 47, 0.14);

	background: linear-gradient(180deg, #f7efe2 0%, #fffaf4 45%, #ffffff 100%);
	border: 1px solid #eadbc8;
	border-radius: 28px;
	box-shadow: var(--expomax-shadow);
	color: var(--expomax-ink);
	font-family: "Sofia Pro", "Avenir Next", Arial, sans-serif;
	margin: 20px 0;
	overflow: hidden;
}

.expomax-pricing-app label {
	color: var(--expomax-strong);
	display: block;
	font-size: 0.82rem;
	font-weight: 700;
	margin-bottom: 6px;
}

.expomax-pricing-app input[type="text"],
.expomax-pricing-app input[type="search"],
.expomax-pricing-app input[type="number"],
.expomax-pricing-app input[type="email"] {
	background: #fff;
	border: 1px solid var(--expomax-border);
	border-radius: 12px;
	box-sizing: border-box;
	color: var(--expomax-ink);
	font: inherit;
	font-size: 0.92rem;
	min-height: 40px;
	padding: 9px 12px;
	width: 100%;
}

.expomax-pricing-app input:focus {
	border-color: var(--expomax-accent);
	box-shadow: 0 0 0 3px rgba(239, 91, 47, 0.13);
	outline: none;
}

/* ── Hero & Status ─────────────────────────────────────── */

.expomax-pricing-hero {
	align-items: start;
	background:
		radial-gradient(circle at top right, rgba(239, 91, 47, 0.14), transparent 34%),
		linear-gradient(135deg, #1c2334 0%, #2c3950 55%, #41516f 100%);
	color: #fff8ef;
	display: grid;
	gap: 24px;
	grid-template-columns: 1.8fr 0.9fr;
	padding: 24px 26px;
}

.expomax-pricing-hero h2 {
	color: inherit;
	font-size: clamp(2rem, 3vw, 3rem);
	line-height: 1.04;
	margin: 8px 0 12px;
}

.expomax-pricing-hero p {
	margin: 0;
	max-width: 52rem;
}

.expomax-eyebrow,
.expomax-status-label {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.expomax-pricing-status {
	background: rgba(255, 248, 239, 0.12);
	border: 1px solid rgba(255, 248, 239, 0.18);
	border-radius: 18px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 16px;
}

.expomax-pricing-status strong {
	font-size: 1.15rem;
	line-height: 1.1;
}

/* ── Steps & Headings ──────────────────────────────────── */

.expomax-step {
	border-top: 1px solid #efe3d6;
	padding: 18px 22px 22px;
}

.expomax-step + .expomax-step {
	border-top: 1px solid #eadfce;
}

.expomax-step-heading {
	align-items: center;
	display: flex;
	gap: 14px;
	margin-bottom: 12px;
}

.expomax-step-heading span {
	background: var(--expomax-accent);
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	font-size: 0.78rem;
	font-weight: 700;
	justify-content: center;
	min-width: 64px;
	padding: 7px 12px;
}

.expomax-step-heading h3,
.expomax-supplier-panel h4,
.expomax-allowances h4 {
	margin: 0;
}

.expomax-step-heading h3 {
	font-size: 1.15rem;
	line-height: 1.15;
}

/* ── Layout Grids ──────────────────────────────────────── */

.expomax-grid {
	display: grid;
	gap: 16px;
}

.expomax-grid-search    { grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); }
.expomax-grid-2         { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.expomax-grid-3         { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.expomax-grid-4         { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.expomax-booth-layout   { grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.25fr); }
.expomax-booth-preview  { display: grid; gap: 14px; grid-template-columns: 200px minmax(0, 1fr); }
.expomax-services-list  { display: grid; gap: 14px; }
.expomax-service-group  { display: grid; gap: 8px; }
.expomax-service-grid   { display: grid; gap: 10px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.expomax-results-grid,
.expomax-post-allowances-grid {
	display: grid;
	gap: 10px;
	margin-top: 14px;
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

/* ── Cards (base) ──────────────────────────────────────── */

.expomax-selection-card,
.expomax-allowances,
.expomax-result-card,
.expomax-supplier-card,
.expomax-search-result,
.expomax-service-card,
.expomax-coverage-card {
	background: var(--expomax-surface);
	border: 1px solid var(--expomax-border);
	border-radius: 16px;
	box-shadow: var(--expomax-shadow-soft);
}

.expomax-selection-card {
	padding: 12px 14px;
	background: linear-gradient(180deg, #fffdf9 0%, #fff8f1 100%);
	border-color: #e6d5c2;
}

.expomax-result-card {
	padding: 12px 13px;
	min-height: 88px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.expomax-result-card strong {
	font-size: 1.02rem;
	line-height: 1.1;
	margin-top: 4px;
}

.expomax-result-card span {
	font-size: 0.72rem;
	line-height: 1.2;
}

.expomax-result-card.expomax-result-total {
	background: linear-gradient(135deg, #ef5b2f, #ff8551);
	border-color: transparent;
	color: #fff;
	box-shadow: 0 18px 34px rgba(239, 91, 47, 0.18);
}

.expomax-result-card.expomax-result-total strong,
.expomax-result-card.expomax-result-total span {
	color: inherit;
}

.expomax-coverage-card {
	padding: 12px 13px;
	border-radius: 14px;
}

.expomax-coverage-card.is-covered {
	background: #eef8ef;
	border: 1px solid #cfe5cf;
}

.expomax-coverage-card.is-missing {
	background: #fff4e8;
	border: 1px solid #edd4bd;
}

/* ── Service Cards (most recent & refined version) ─────── */

.expomax-service-card {
	padding: 8px;
	border-radius: 14px;
	background: #fffdfa;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.expomax-service-card:hover {
	transform: translateY(-1px);
	border-color: #d8c1aa;
}

.expomax-service-card.is-active {
	background: linear-gradient(180deg, #fffaf4 0%, #fff3e8 100%);
	border-color: rgba(239, 91, 47, 0.45);
	box-shadow: var(--expomax-shadow-active);
}

.expomax-service-card.is-active::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 14px;
	box-shadow: inset 0 0 0 1px rgba(239, 91, 47, 0.18);
	pointer-events: none;
}

.expomax-service-card.is-overridden {
	background: #fff7ef;
	border-color: #e3b88f;
}

.expomax-service-card.is-overridden::before {
	content: "Manual price";
	position: absolute;
	top: 8px;
	right: 8px;
	background: #fff1df;
	border: 1px solid #e3b88f;
	border-radius: 999px;
	color: #915824;
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	line-height: 1;
	padding: 5px 7px;
	text-transform: uppercase;
	z-index: 2;
}

.expomax-service-layout {
	display: grid;
	grid-template-columns: 68px minmax(0, 1fr);
	gap: 10px;
	align-items: stretch;
	min-height: 84px;
}

.expomax-service-chooser {
	display: block;
	position: relative;
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	line-height: 0;
	font-size: 0;
	align-self: stretch;
	cursor: pointer;
	overflow: hidden;
	border-radius: 10px;
}

.expomax-service-chooser input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
	left: 0;
	top: 0;
	margin: 0;
	padding: 0;
}

.expomax-service-chooser::after {
	content: "";
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: rgba(14, 21, 33, 0.12);
	color: #fff;
	font-size: 1rem;
	font-weight: 800;
	opacity: 0;
	transition: opacity 0.18s ease, background 0.18s ease;
	pointer-events: none;
}

.expomax-service-card.is-active .expomax-service-chooser::after {
	content: "\2713";
	opacity: 1;
	background: rgba(239, 91, 47, 0.7);
}

.expomax-service-thumb-wrap {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border-radius: 10px;
	background: #f3e7d8;
}

.expomax-service-thumb {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	object-fit: cover;
	object-position: center;
	vertical-align: top;
	transform: none;
}

.expomax-service-main {
	display: grid;
	grid-template-rows: auto auto;
	gap: 6px;
	min-width: 0;
}

.expomax-service-top {
	display: block;
	margin: 0;
}

.expomax-service-copy {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.expomax-service-copy strong {
	display: block;
	margin: 0;
	font-size: 0.86rem;
	line-height: 1.15;
	word-break: break-word;
}

.expomax-service-meta {
	margin: 0;
	font-size: 0.66rem;
	line-height: 1.2;
	color: #7a746d;
}

/* Service controls (only visible when active) */
.expomax-service-controls {
	display: none !important;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 6px;
	margin-top: 0;
	padding-top: 6px;
	border-top: 1px dashed #e5d7c8;
	cursor: default;
}

.expomax-service-card.is-active .expomax-service-controls {
	display: grid !important;
}

.expomax-service-controls label {
	display: grid;
	gap: 3px;
	margin: 0;
	font-size: 0.58rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #746e67;
}

.expomax-service-controls input,
.expomax-service-controls input[type="number"] {
	min-height: 28px;
	height: 28px;
	padding: 4px 8px;
	font-size: 0.78rem;
	line-height: 1.1;
	border-radius: 8px;
}

.expomax-service-controls label:last-child input {
	background: #fff8f2;
	border-color: #e5c8b1;
}

/* ── Search ────────────────────────────────────────────── */

.expomax-search-panel {
	position: static;
}

.expomax-search-control {
	position: relative;
}

.expomax-search-results {
	background: rgba(255, 250, 244, 0.98);
	border: 1px solid var(--expomax-border);
	border-radius: 14px;
	box-shadow: 0 18px 36px rgba(20, 28, 42, 0.12);
	display: none;
	gap: 6px;
	left: 0;
	margin-top: 6px;
	max-height: 360px;
	overflow: auto;
	padding: 6px;
	position: absolute;
	right: 0;
	top: calc(100% + 4px);
	z-index: 30;
}

.expomax-search-results.is-open {
	display: grid;
}

.expomax-search-result {
	align-items: center;
	appearance: none;
	display: grid;
	gap: 9px;
	grid-template-columns: 44px minmax(0, 1fr);
	cursor: pointer;
	padding: 8px 9px;
	text-align: left;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
	width: 100%;
}

.expomax-search-result:hover {
	border-color: var(--expomax-accent);
	box-shadow: 0 14px 26px rgba(239, 91, 47, 0.1);
	transform: translateY(-1px);
}

.expomax-search-copy {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.expomax-search-copy strong {
	font-size: 0.9rem;
	line-height: 1.2;
}

.expomax-search-result span,
.expomax-selection-card span,
.expomax-result-card span,
.expomax-supplier-card span {
	color: var(--expomax-muted);
	display: block;
	font-size: 0.78rem;
}

.expomax-search-thumb {
	background: #f1e4d6;
	border-radius: 10px;
	display: inline-flex;
	height: 44px;
	overflow: hidden;
	width: 44px;
}

.expomax-search-thumb img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

/* ── Other components ──────────────────────────────────── */

.expomax-help {
	color: var(--expomax-muted);
	font-size: 0.82rem;
	margin: 8px 0 0;
}

.expomax-toggles {
	align-items: center;
	margin-top: 18px;
}

.expomax-radio-group {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.expomax-radio-group label,
.expomax-toggles label {
	align-items: center;
	display: inline-flex;
	gap: 10px;
	margin: 0;
	padding: 10px 12px;
	border: 1px solid #dfcfbd;
	border-radius: 12px;
	background: #fffdfa;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.expomax-radio-group label:hover,
.expomax-toggles label:hover {
	border-color: #d8b395;
}

.expomax-service-group h4 {
	font-size: 0.82rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--expomax-accent-dark);
	margin-bottom: 2px;
}

.expomax-results-notes {
	display: grid;
	gap: 8px;
	margin-top: 14px;
}

.expomax-note {
	background: #fff6eb;
	border-left: 4px solid var(--expomax-accent);
	border-radius: 10px;
	padding: 10px 12px;
	font-size: 0.84rem;
	line-height: 1.35;
}

.expomax-booth-media {
	background: #f2e9dc;
	border-radius: 16px;
	min-height: 220px;
	overflow: hidden;
}

.expomax-booth-media img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

/* ── Finish / Actions ──────────────────────────────────── */

.expomax-finish-card,
.expomax-finish-actions,
.expomax-finish-status {
	background: var(--expomax-surface);
	border: 1px solid var(--expomax-border);
	border-radius: 16px;
	padding: 14px;
	box-shadow: var(--expomax-shadow-soft);
}

.expomax-finish-actions {
	display: grid;
	gap: 10px;
}

.expomax-action-button {
	background: #fff;
	border: 1px solid var(--expomax-border);
	border-radius: 12px;
	cursor: pointer;
	font: inherit;
	font-weight: 700;
	min-height: 42px;
	padding: 10px 14px;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.expomax-action-button:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 18px rgba(22, 32, 49, 0.08);
}

.expomax-action-button.expomax-action-accent {
	background: var(--expomax-accent);
	border-color: var(--expomax-accent);
	color: #fff;
}

/* ── Media Queries ─────────────────────────────────────── */

@media (max-width: 1280px) {
	.expomax-results-grid,
	.expomax-post-allowances-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 1080px) {
	.expomax-pricing-hero,
	.expomax-grid-search,
	.expomax-booth-layout,
	.expomax-booth-preview,
	.expomax-grid-3 {
		grid-template-columns: 1fr 1fr;
	}

	.expomax-grid-4,
	.expomax-results-grid,
	.expomax-post-allowances-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.expomax-service-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.expomax-booth-preview {
		grid-template-columns: 160px minmax(0, 1fr);
	}
}

@media (max-width: 760px) {
	.expomax-pricing-app {
		border-radius: 20px;
		margin: 14px 0;
	}

	.expomax-pricing-hero,
	.expomax-step {
		padding: 16px;
	}

	.expomax-pricing-hero h2 {
		font-size: 1.55rem;
		line-height: 1.04;
	}

	.expomax-step-heading {
		align-items: flex-start;
		gap: 10px;
	}

	.expomax-step-heading span {
		min-width: 58px;
		padding: 6px 10px;
		font-size: 0.72rem;
	}

	.expomax-booth-preview {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.expomax-booth-media {
		min-height: 180px;
	}

	.expomax-service-layout {
		grid-template-columns: 56px minmax(0, 1fr);
		min-height: 76px;
	}

	.expomax-service-grid {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.expomax-service-card {
		padding: 9px;
	}

	.expomax-service-thumb-wrap {
		border-radius: 8px;
	}

	.expomax-service-copy strong {
		font-size: 0.82rem;
	}

	.expomax-service-meta {
		font-size: 0.62rem;
	}

	.expomax-service-controls {
		grid-template-columns: 1fr 1fr;
		gap: 6px;
		padding-top: 6px;
	}

	.expomax-service-controls input,
	.expomax-service-controls input[type="number"] {
		min-height: 27px;
		height: 27px;
		padding: 4px 7px;
		font-size: 0.76rem;
	}

	.expomax-results-grid,
	.expomax-post-allowances-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.expomax-result-card {
		padding: 10px 11px;
		min-height: 78px;
	}

	.expomax-result-card strong {
		font-size: 0.94rem;
	}

	.expomax-result-card span {
		font-size: 0.67rem;
	}

	.expomax-note {
		font-size: 0.78rem;
		padding: 9px 10px;
	}

	.expomax-action-button {
		min-height: 40px;
	}

	.expomax-pricing-app input[type="text"],
	.expomax-pricing-app input[type="search"],
	.expomax-pricing-app input[type="number"],
	.expomax-pricing-app input[type="email"] {
		min-height: 38px;
		padding: 8px 10px;
		font-size: 0.9rem;
	}
}

@media (max-width: 480px) {
	.expomax-results-grid,
	.expomax-post-allowances-grid {
		grid-template-columns: 1fr;
	}

	.expomax-service-controls {
		grid-template-columns: 1fr;
	}

	.expomax-service-controls label:last-child input {
		font-weight: 700;
	}
}

/* =========================
   layout cleanup tweaks
   ========================= */

.elementor img {
	border: none;
	border-radius: 0;
	box-shadow: none;
	background-size: cover;
	width: 100%;
	height: 100%;
}

.expomax-selection-card,
.expomax-allowances,
.expomax-result-card,
.expomax-supplier-card,
.expomax-search-result,
.expomax-service-card,
.expomax-coverage-card {
	background: var(--expomax-surface);
	border: 1px solid var(--expomax-border);
	border-radius: 16px;
	box-shadow: var(--expomax-shadow-soft);
	padding: 10px 20px 20px;
}

.expomax-toggles {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 16px;
}

.expomax-toggles > div {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.expomax-toggles > div > label {
	margin: 0;
	white-space: nowrap;
}

.expomax-radio-group {
	align-items: center;
	flex-wrap: wrap;
}

@media (max-width: 760px) {
	.expomax-grid-search,
	.expomax-booth-layout {
		grid-template-columns: 1fr !important;
	}

	.expomax-toggles {
		display: grid;
		gap: 10px;
	}

	.expomax-toggles > div {
		align-items: flex-start;
		display: grid;
		gap: 8px;
	}
}
