/* ══════════════════════════════════════════════════════════════
   Eco Sky Window Configurator — Elementor Widget Styles
   All rules scoped to .esw-wc to avoid theme bleed.
   ══════════════════════════════════════════════════════════════ */

.esw-wc {
	--esw-bg:           #0a1410;
	--esw-card-bg:      #0d2018;
	--esw-card-bg-hover:#112618;
	--esw-card-bg-sel:  #182e20;
	--esw-black:        #131313;
	--esw-green-dark:   #134540;
	--esw-green-mid:    #687257;
	--esw-sand:         #D3C9B5;
	--esw-mint:         #E1EFF2;
	--esw-white:        #F8F7F4;
	--esw-timber:       #c4a882;
	--esw-font:         'Barlow', sans-serif;
	--esw-ease:         cubic-bezier(.25,.46,.45,.94);

	font-family: var(--esw-font);
	font-weight: 300;
	background: var(--esw-bg);
	color: var(--esw-white);
	overflow: hidden;              /* fallback for browsers without `clip` */
	overflow: clip;                /* clip without creating a scroll container,
	                                  so position:sticky inside still anchors to the page scroll */
	position: relative;
}

.esw-wc *, .esw-wc *::before, .esw-wc *::after {
	box-sizing: border-box;
}

.esw-wc h1, .esw-wc h2, .esw-wc h3, .esw-wc h4 {
	font-weight: 200;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--esw-white);
	margin: 0;
}

.esw-wc p {
	font-weight: 300;
	line-height: 1.8;
	letter-spacing: .04em;
	margin: 0;
}

/* ─── HERO ────────────────────────────────────────── */
.esw-wc .esw-hero {
	background: linear-gradient(135deg, #091a16 0%, #152e22 45%, #2a1e10 100%);
	padding: 72px 80px 56px;
	position: relative;
	overflow: hidden;
}
.esw-wc .esw-hero::after {
	content: '';
	position: absolute; top: 0; right: 0; bottom: 0;
	width: 45%;
	background: radial-gradient(ellipse at right center, rgba(196,168,130,.07), transparent 65%);
	pointer-events: none;
}
.esw-wc .esw-hero-tag {
	font-size: 9px; letter-spacing: .5em; text-transform: uppercase;
	color: var(--esw-timber); opacity: .8;
	margin-bottom: 16px;
	display: flex; align-items: center; gap: 14px;
}
.esw-wc .esw-hero-tag::before {
	content: ''; width: 28px; height: 1px;
	background: var(--esw-timber); display: block;
}
.esw-wc .esw-hero h1 {
	font-size: clamp(28px, 4vw, 52px);
	line-height: 1.08;
	margin-bottom: 16px;
}
.esw-wc .esw-hero h1 em {
	font-style: italic; font-weight: 100;
	color: var(--esw-timber);
}
.esw-wc .esw-hero p {
	font-size: 13px;
	color: rgba(248,247,244,.4);
	max-width: 500px;
}

/* ─── STEPPER ─────────────────────────────────────── */
.esw-wc .esw-stepper {
	/* Non-sticky: scrolls naturally with the rest of the widget so it never
	   competes with the site's header / dropdown menus (which use z-index: 2). */
	background: rgba(8,18,14,.97);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(211,201,181,.08);
	padding: 0 80px;
	display: flex;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;        /* Firefox */
	-ms-overflow-style: none;     /* IE/Edge legacy */
}
.esw-wc .esw-stepper::-webkit-scrollbar {
	display: none;                /* Chrome / Safari / Opera */
	width: 0;
	height: 0;
}
.esw-wc .esw-step-tab {
	display: flex; align-items: center; gap: 12px;
	padding: 18px 32px 18px 0;
	margin-right: 24px;
	cursor: pointer;
	border-bottom: 2px solid transparent;
	opacity: .3;
	transition: opacity .3s, border-color .3s;
	white-space: nowrap;
}
.esw-wc .esw-step-tab.active {
	opacity: 1;
	border-bottom-color: var(--esw-timber);
}
.esw-wc .esw-step-tab.done {
	opacity: .55;
}
.esw-wc .esw-step-tab.done .esw-step-num {
	background: var(--esw-green-dark);
	border-color: var(--esw-green-dark);
	color: var(--esw-white);
}
.esw-wc .esw-step-num {
	width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
	border: 1px solid rgba(211,201,181,.3);
	display: flex; align-items: center; justify-content: center;
	font-size: 10px; color: rgba(248,247,244,.4);
	transition: all .3s;
}
.esw-wc .esw-step-tab.active .esw-step-num {
	border-color: var(--esw-timber);
	color: var(--esw-timber);
}
.esw-wc .esw-step-label {
	font-size: 10px; letter-spacing: .28em; text-transform: uppercase;
	color: var(--esw-white);
}
.esw-wc .esw-step-val {
	font-size: 9px; letter-spacing: .12em;
	color: rgba(211,201,181,.4);
	margin-top: 2px;
	max-width: 120px;
	white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ─── STEP PANELS ─────────────────────────────────── */
.esw-wc .esw-step-panel {
	display: none;
	padding: 56px 80px 120px;
	animation: esw-fadeIn .35s var(--esw-ease);
}
.esw-wc .esw-step-panel.active {
	display: block;
}
@keyframes esw-fadeIn {
	from { opacity: 0; transform: translateY(12px); }
	to   { opacity: 1; transform: translateY(0); }
}
.esw-wc .esw-step-head {
	margin-bottom: 44px;
}
.esw-wc .esw-step-head .esw-tag {
	font-size: 9px; letter-spacing: .5em; text-transform: uppercase;
	color: var(--esw-timber); opacity: .7;
	margin-bottom: 12px;
}
.esw-wc .esw-step-head h2 {
	font-size: clamp(24px, 3vw, 42px);
	line-height: 1.08;
}
.esw-wc .esw-step-head p {
	font-size: 12px;
	color: rgba(248,247,244,.38);
	margin-top: 12px;
	max-width: 500px;
}

/* ─── SELECTION INDICATOR ─────────────────────────── */
.esw-wc .esw-sel-dot {
	position: absolute; top: 16px; right: 16px;
	width: 20px; height: 20px; border-radius: 50%;
	background: var(--esw-timber);
	opacity: 0;
	display: flex; align-items: center; justify-content: center;
	transition: opacity .25s;
	z-index: 2;
}
.esw-wc .esw-sel-dot::after {
	content: '✓';
	font-size: 10px;
	color: #131313;
	font-weight: 600;
}

/* ─── GLAZING GRID ────────────────────────────────── */
.esw-wc .esw-glaz-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3px;
	max-width: 920px;
}
.esw-wc .esw-glaz-card {
	background: var(--esw-card-bg);
	padding: 48px 44px;
	cursor: pointer;
	border: 2px solid transparent;
	position: relative;
	transition: background .3s, border-color .3s;
}
.esw-wc .esw-glaz-card:hover { background: var(--esw-card-bg-hover); }
.esw-wc .esw-glaz-card.sel {
	border-color: var(--esw-timber);
	background: var(--esw-card-bg-sel);
}
.esw-wc .esw-glaz-card.sel .esw-sel-dot { opacity: 1; }
.esw-wc .esw-glaz-name {
	font-size: 20px; font-weight: 200; letter-spacing: .18em; text-transform: uppercase;
	margin: 24px 0 6px;
}
.esw-wc .esw-glaz-spec {
	font-size: 9px; letter-spacing: .3em; text-transform: uppercase;
	color: var(--esw-timber);
	margin-bottom: 16px;
}
.esw-wc .esw-glaz-desc {
	font-size: 12px;
	color: rgba(248,247,244,.38);
	line-height: 1.85;
	margin-bottom: 24px;
}
.esw-wc .esw-glaz-stats {
	display: flex; gap: 28px;
}
.esw-wc .esw-gstat-val {
	font-size: 24px; font-weight: 200;
	color: var(--esw-timber);
	letter-spacing: .04em;
}
.esw-wc .esw-gstat-lbl {
	font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
	color: rgba(248,247,244,.3);
}

/* ─── SPECIES GRID ────────────────────────────────── */
.esw-wc .esw-species-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 3px;
}
@media (max-width: 1280px) { .esw-wc .esw-species-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 720px)  { .esw-wc .esw-species-grid { grid-template-columns: repeat(2, 1fr); } }

.esw-wc .esw-sp-card {
	cursor: pointer;
	border: 2px solid transparent;
	position: relative;
	overflow: hidden;
	transition: transform .22s var(--esw-ease), border-color .25s;
}
.esw-wc .esw-sp-card:hover  { transform: translateY(-4px); }
.esw-wc .esw-sp-card.sel    { border-color: var(--esw-timber); }
.esw-wc .esw-sp-card.sel .esw-sel-dot { opacity: 1; }
.esw-wc .esw-sp-swatch {
	width: 100%; height: 190px;
	display: block; overflow: hidden;
}
.esw-wc .esw-sp-swatch svg,
.esw-wc .esw-sp-swatch img {
	width: 100%; height: 100%;
	display: block;
	object-fit: cover;
}
.esw-wc .esw-sp-info {
	background: var(--esw-card-bg);
	padding: 14px 13px 16px;
}
.esw-wc .esw-sp-name {
	font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
	color: var(--esw-white);
	margin-bottom: 3px;
}
.esw-wc .esw-sp-origin {
	font-size: 9px; letter-spacing: .12em;
	color: rgba(211,201,181,.38);
	margin-bottom: 5px;
}
.esw-wc .esw-sp-janka {
	font-size: 9px; letter-spacing: .1em;
	color: rgba(196,168,130,.45);
}

/* ─── CLADDING GRID ───────────────────────────────── */
.esw-wc .esw-clad-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3px;
	max-width: 920px;
}
.esw-wc .esw-clad-card {
	background: var(--esw-card-bg);
	cursor: pointer;
	border: 2px solid transparent;
	position: relative;
	overflow: hidden;
	transition: background .3s, border-color .3s;
}
.esw-wc .esw-clad-card:hover { background: var(--esw-card-bg-hover); }
.esw-wc .esw-clad-card.sel {
	border-color: var(--esw-timber);
	background: var(--esw-card-bg-sel);
}
.esw-wc .esw-clad-card.sel .esw-sel-dot { opacity: 1; }
.esw-wc .esw-clad-swatch {
	height: 170px; position: relative; overflow: hidden;
}
.esw-wc .esw-clad-swatch svg,
.esw-wc .esw-clad-swatch img {
	width: 100%; height: 100%;
	display: block;
	object-fit: cover;
}
.esw-wc .esw-clad-info {
	padding: 24px 26px 28px;
}
.esw-wc .esw-clad-name {
	font-size: 17px; font-weight: 200; letter-spacing: .18em; text-transform: uppercase;
	margin-bottom: 7px;
}
.esw-wc .esw-clad-tag {
	font-size: 9px; letter-spacing: .28em; text-transform: uppercase;
	color: var(--esw-timber);
	margin-bottom: 14px;
}
.esw-wc .esw-clad-desc {
	font-size: 12px;
	color: rgba(248,247,244,.38);
	line-height: 1.85;
}

/* ─── HARDWARE GRID ───────────────────────────────── */
.esw-wc .esw-hw-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3px;
	max-width: 920px;
	margin-bottom: 36px;
}
.esw-wc .esw-hw-card {
	background: var(--esw-card-bg);
	padding: 32px 28px;
	cursor: pointer;
	border: 2px solid transparent;
	position: relative;
	transition: background .3s, border-color .3s;
}
.esw-wc .esw-hw-card:hover { background: var(--esw-card-bg-hover); }
.esw-wc .esw-hw-card.sel {
	border-color: var(--esw-timber);
	background: var(--esw-card-bg-sel);
}
.esw-wc .esw-hw-card.sel .esw-sel-dot { opacity: 1; }
.esw-wc .esw-hw-range {
	font-size: 9px; letter-spacing: .4em; text-transform: uppercase;
	color: rgba(211,201,181,.38);
	margin-bottom: 6px;
}
.esw-wc .esw-hw-name {
	font-size: 17px; font-weight: 200; letter-spacing: .18em; text-transform: uppercase;
	color: var(--esw-white);
	margin-bottom: 8px;
}
.esw-wc .esw-hw-tier {
	font-size: 9px; letter-spacing: .28em; text-transform: uppercase;
	padding: 3px 10px;
	border: 1px solid;
	display: inline-block;
	margin-bottom: 14px;
}
.esw-wc .esw-tier-std {
	color: #5da882;
	border-color: #5da882;
	background: rgba(93,168,130,.08);
}
.esw-wc .esw-tier-prm {
	color: var(--esw-sand);
	border-color: rgba(211,201,181,.4);
}
.esw-wc .esw-tier-des {
	color: var(--esw-timber);
	border-color: rgba(196,168,130,.4);
}
.esw-wc .esw-hw-desc {
	font-size: 11px;
	color: rgba(248,247,244,.38);
	line-height: 1.75;
	margin-bottom: 20px;
}
.esw-wc .esw-hw-preview {
	height: 110px;
	display: flex; align-items: center; justify-content: center;
	border-top: 1px solid rgba(211,201,181,.07);
	padding-top: 18px;
}

.esw-wc .esw-hw-link {
	font-family: var(--esw-font);
	font-size: 10px; font-weight: 300; letter-spacing: .3em; text-transform: uppercase;
	color: var(--esw-timber);
	text-decoration: none;
	display: inline-flex; align-items: center; gap: 10px;
	border-bottom: 1px solid rgba(196,168,130,.25);
	padding-bottom: 4px;
}

/* ─── STEP 5 — SUMMARY INLINE + FORM ───────────────── */
.esw-wc .esw-summary-inline {
	background: #0a1814;
	border: 1px solid rgba(196,168,130,.2);
	padding: 36px 40px;
	margin-bottom: 44px;
	max-width: 720px;
}
.esw-wc .esw-summary-heading {
	font-size: 20px;
	font-weight: 200;
	letter-spacing: .15em;
	text-transform: uppercase;
	line-height: 1.15;
	margin-bottom: 4px;
}
.esw-wc .esw-summary-heading em {
	font-style: italic;
	font-weight: 100;
	color: var(--esw-timber);
}
.esw-wc .esw-summary-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px 28px;
	margin: 22px 0 18px;
}
.esw-wc .esw-sum-lbl {
	font-size: 9px; letter-spacing: .4em; text-transform: uppercase;
	color: rgba(248,247,244,.28);
	margin-bottom: 4px;
}
.esw-wc .esw-sum-val {
	font-size: 13px; letter-spacing: .06em;
	color: var(--esw-white);
}
.esw-wc .esw-spec-code-box {
	font-family: 'Courier New', monospace;
	font-size: 12px; letter-spacing: .18em;
	color: var(--esw-timber);
	background: rgba(196,168,130,.05);
	border: 1px solid rgba(196,168,130,.15);
	padding: 12px 16px;
	margin-top: 6px;
}

/* Contact form */
.esw-wc .esw-cf-form {
	max-width: 720px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.esw-wc .esw-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}
/* Inside the 2-col Step 5 layout, the form column is only ~55% wide, so two
   side-by-side selects truncate long option labels (e.g. "Builder / Project
   Manager", "Aluclad Slim — Tilt & Turn / Casement"). Stack them earlier. */
@media (max-width: 1100px) {
	.esw-wc .esw-form-row { grid-template-columns: 1fr; }
}
.esw-wc .esw-form-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.esw-wc .esw-form-field label {
	font-size: 10px;
	font-weight: 300;
	letter-spacing: .28em;
	text-transform: uppercase;
	color: rgba(211,201,181,.6);
}
.esw-wc .esw-req {
	color: var(--esw-timber);
}
/* Visual styling only — NO padding declarations here. Parent themes (Bloxky,
   Astra, OceanWP …) ship their own input padding and our `padding: 14px 16px`
   stacked on top of theirs was squeezing long select labels off-screen. We
   intentionally let the theme own horizontal padding for the displayed value;
   vertical breathing room is enforced via `min-height` below. */
.esw-wc .esw-form-field input,
.esw-wc .esw-form-field select,
.esw-wc .esw-form-field textarea {
	font-family: var(--esw-font) !important;
	font-size: 14px !important;
	font-weight: 300 !important;
	letter-spacing: .04em !important;
	color: var(--esw-white) !important;
	background: rgba(13,32,24,.5) !important;
	border: 1px solid rgba(211,201,181,.18) !important;
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
	min-height: 50px;
	transition: border-color .25s, box-shadow .25s, background .25s;
}
.esw-wc .esw-form-field input::placeholder,
.esw-wc .esw-form-field textarea::placeholder {
	color: rgba(248,247,244,.28);
}
.esw-wc .esw-form-field select {
	appearance: none !important;
	-webkit-appearance: none !important;
	background-image: linear-gradient(45deg, transparent 50%, rgba(211,201,181,.5) 50%),
	                  linear-gradient(135deg, rgba(211,201,181,.5) 50%, transparent 50%) !important;
	background-position: calc(100% - 20px) center, calc(100% - 14px) center !important;
	background-size: 6px 6px, 6px 6px !important;
	background-repeat: no-repeat !important;
	font-size: 13px !important;
	letter-spacing: 0 !important;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.esw-wc .esw-form-field select option {
	background: #0d2018;
	color: var(--esw-white);
}
.esw-wc .esw-form-field select optgroup {
	background: #081610;
	color: var(--esw-timber);
	font-weight: 500;
	letter-spacing: .12em;
}
.esw-wc .esw-form-field input:focus,
.esw-wc .esw-form-field select:focus,
.esw-wc .esw-form-field textarea:focus {
	outline: none;
	border-color: var(--esw-timber);
	box-shadow: 0 0 0 3px rgba(196,168,130,.12);
	background: rgba(13,32,24,.7);
}
.esw-wc .esw-form-field textarea {
	resize: vertical;
	min-height: 120px;
}
.esw-wc .esw-form-privacy {
	font-size: 11px;
	color: rgba(248,247,244,.35);
	line-height: 1.7;
	letter-spacing: .03em;
}
.esw-wc .esw-form-privacy p {
	font-size: 11px;
	color: rgba(248,247,244,.35);
	line-height: 1.7;
	letter-spacing: .03em;
	margin: 0;
}
.esw-wc .esw-form-privacy a {
	color: var(--esw-timber);
}

/* ─── STEP 5 — 2-COL LAYOUT (form + summary side-by-side) ─── */
.esw-wc .esw-step5-layout {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 48px;
	align-items: start;
	max-width: 1200px;
}
.esw-wc .esw-step5-layout--solo {
	grid-template-columns: 1fr;
	max-width: 720px;
}
.esw-wc .esw-step5-form-col .esw-cf-form { max-width: none; }
.esw-wc .esw-step5-summary-col .esw-summary-inline {
	max-width: none;
	margin: 0;
	position: sticky;
	top: 92px;          /* below the sticky stepper bar */
}
.esw-wc .esw-summary-eyebrow {
	font-size: 9px;
	letter-spacing: .5em;
	text-transform: uppercase;
	color: var(--esw-timber);
	opacity: .7;
	margin-bottom: 12px;
}

/* Form action row inside Step 5 (replaces the bot-bar on this step) */
.esw-wc .esw-form-actions {
	display: flex;
	gap: 12px;
	justify-content: flex-end;
	align-items: center;
	margin-top: 6px;
}
.esw-wc .esw-btn-back-inline {
	font-family: var(--esw-font);
	font-size: 10px;
	font-weight: 300;
	letter-spacing: .3em;
	text-transform: uppercase;
	color: rgba(248,247,244,.55);
	background: transparent;
	border: 1px solid rgba(248,247,244,.18);
	padding: 14px 26px;
	cursor: pointer;
	transition: color .3s var(--esw-ease), border-color .3s var(--esw-ease), background .3s var(--esw-ease);
}
.esw-wc .esw-btn-back-inline:hover {
	color: var(--esw-white);
	border-color: rgba(248,247,244,.4);
	background: rgba(248,247,244,.04);
}
.esw-wc .esw-form-submit {
	font-family: var(--esw-font);
	font-size: 10px;
	font-weight: 400;
	letter-spacing: .3em;
	text-transform: uppercase;
	color: var(--esw-bg);
	background: var(--esw-timber);
	border: 1px solid var(--esw-timber);
	padding: 14px 32px;
	cursor: pointer;
	transition: opacity .3s var(--esw-ease), transform .3s var(--esw-ease);
}
.esw-wc .esw-form-submit:hover { opacity: .9; transform: translateY(-1px); }
.esw-wc .esw-form-submit:disabled { opacity: .45; cursor: not-allowed; transform: none; }

/* Mobile: stacked, summary FIRST */
@media (max-width: 900px) {
	.esw-wc .esw-step5-layout {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.esw-wc .esw-step5-summary-col { order: -1; }
	.esw-wc .esw-step5-summary-col .esw-summary-inline {
		position: static;
		padding: 28px 24px;
	}
	.esw-wc .esw-form-actions {
		flex-direction: column-reverse;
		align-items: stretch;
	}
	.esw-wc .esw-form-actions button { width: 100%; }
}

/* Hide the bot-bar entirely on Step 5 — Step 5 has its own action row.
   `display: none` also removes it from the flow so there's no leftover gap. */
.esw-wc[data-current-step="5"] .esw-bot-bar { display: none; }

/* ─── BOTTOM BAR ───────────────────────────────────── */
/* Sticky to the viewport while the user is inside the widget,
   then "parks" at the widget bottom once scrolled past it.
   Requires `.esw-wc` to NOT be a scroll container (we use overflow: clip
   instead of overflow: hidden so sticky binds to the page scroll). */
.esw-wc .esw-bot-bar {
	position: sticky;
	bottom: 0;
	/* No z-index — site headers/menus must always win. Natural document order
	   keeps the bar above scrolled-past step content anyway. */
	background: rgba(8,18,14,.97);
	backdrop-filter: blur(20px);
	border-top: 1px solid rgba(211,201,181,.1);
	padding: 16px 80px;
	display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.esw-wc .esw-spec-area {
	display: flex; align-items: center; gap: 18px;
	flex: 1; min-width: 0;
}
.esw-wc .esw-spec-lbl {
	font-size: 9px; letter-spacing: .4em; text-transform: uppercase;
	color: rgba(248,247,244,.28);
	white-space: nowrap;
}
.esw-wc .esw-spec-val {
	font-size: 12px; letter-spacing: .18em;
	color: var(--esw-timber);
	white-space: nowrap;
}
.esw-wc .esw-spec-chips {
	display: flex; gap: 6px; flex-wrap: wrap;
}
.esw-wc .esw-chip {
	font-size: 9px; letter-spacing: .18em; text-transform: uppercase;
	color: rgba(211,201,181,.45);
	background: rgba(211,201,181,.05);
	padding: 3px 10px;
	border: 1px solid rgba(211,201,181,.1);
}
.esw-wc .esw-bar-btns {
	display: flex; gap: 10px;
}
.esw-wc .esw-btn-back {
	font-family: var(--esw-font);
	font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
	color: rgba(248,247,244,.38);
	background: none;
	border: 1px solid rgba(248,247,244,.14);
	padding: 12px 26px;
	cursor: pointer;
	transition: all .3s;
}
.esw-wc .esw-btn-back:hover {
	color: var(--esw-white);
	border-color: rgba(248,247,244,.4);
}
.esw-wc .esw-btn-next,
.esw-wc .esw-form-submit {
	font-family: var(--esw-font);
	font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
	color: #131313;
	background: var(--esw-timber);
	border: none;
	padding: 12px 32px;
	cursor: pointer;
	transition: background .3s, opacity .3s;
	font-weight: 300;
}
.esw-wc .esw-btn-next:hover:not(:disabled),
.esw-wc .esw-form-submit:hover:not(:disabled) {
	background: #d4b898;
}
.esw-wc .esw-btn-next:disabled,
.esw-wc .esw-form-submit:disabled {
	opacity: .28;
	cursor: not-allowed;
}

/* ─── SUCCESS STATE ─────────────────────────────────── */
.esw-wc .esw-success {
	display: none;
	padding: 80px 80px 120px;
	max-width: 720px;
	animation: esw-fadeIn .4s var(--esw-ease);
}
.esw-wc .esw-success.active {
	display: block;
}
.esw-wc .esw-success-icon {
	width: 56px; height: 56px;
	border: 1px solid var(--esw-timber);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	color: var(--esw-timber);
	margin-bottom: 28px;
}
.esw-wc .esw-success-h {
	font-size: clamp(24px, 3vw, 36px);
	line-height: 1.15;
	margin-bottom: 16px;
}
.esw-wc .esw-success-body {
	font-size: 13px;
	color: rgba(248,247,244,.5);
	line-height: 1.9;
	letter-spacing: .03em;
}
.esw-wc .esw-success-body p {
	font-size: 13px;
	color: rgba(248,247,244,.5);
	line-height: 1.9;
	letter-spacing: .03em;
}
.esw-wc .esw-success-body a {
	color: var(--esw-timber);
}

/* ─── RESPONSIVE — small screens ─────────────────── */
@media (max-width: 900px) {
	.esw-wc .esw-hero       { padding: 56px 32px 40px; }
	.esw-wc .esw-stepper    { padding: 0 16px; }
	.esw-wc .esw-step-tab   { padding: 16px 24px 16px 0; margin-right: 18px; }
	.esw-wc .esw-step-panel { padding: 40px 24px 96px; }
	.esw-wc .esw-glaz-grid  { grid-template-columns: 1fr; }
	.esw-wc .esw-clad-grid  { grid-template-columns: 1fr; }
	.esw-wc .esw-hw-grid    { grid-template-columns: 1fr; }
	.esw-wc .esw-summary-grid { grid-template-columns: 1fr; }
}

/* ─── BOT-BAR — MOBILE ─────────────────────────────── */
@media (max-width: 720px) {
	.esw-wc .esw-bot-bar {
		padding: 12px 16px;
		flex-wrap: nowrap;
		gap: 10px;
		min-height: 60px;
	}
	.esw-wc .esw-spec-area {
		gap: 10px;
		min-width: 0;
		overflow: hidden;
	}
	.esw-wc .esw-spec-lbl   { display: none; }     /* hide "Spec" label */
	.esw-wc .esw-spec-chips { display: none; }     /* hide chips — too cluttered */
	.esw-wc .esw-spec-val {
		font-size: 11px;
		letter-spacing: .14em;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.esw-wc .esw-bar-btns { flex-shrink: 0; gap: 8px; }
	.esw-wc .esw-btn-back { padding: 10px 14px; font-size: 9px; letter-spacing: .22em; }
	.esw-wc .esw-btn-next { padding: 10px 18px; font-size: 9px; letter-spacing: .22em; }
}

/* ─── ELEMENTOR EDITOR PREVIEW ──────────────────── */
/* Slightly relax sticky positioning inside editor */
.elementor-editor-active .esw-wc .esw-stepper,
.elementor-editor-active .esw-wc .esw-bot-bar {
	position: static;
}
