/* Myofix Ürün Seçici — örnek tasarımın birebir değerleri */

.mxf-wrap {
	--mxf-green: #6cbd45;
	--mxf-green-dark: #4f9d2d;
	--mxf-graphite: #485860;
	--mxf-ink: #18232a;
	--mxf-muted: #66757c;
	--mxf-line: #dfe7e3;

	display: grid;
	grid-template-columns: 0.85fr 2.4fr;
	gap: 25px;
	padding: 34px;
	border: 1px solid #dce9df;
	border-radius: 19px;
	background: linear-gradient(135deg, #edf7eb, #f7faf9 70%);
}

/* ------------------------------------------------------------------ intro */

.mxf-wrap .mxf-intro {
	padding: 6px 4px;
}

.mxf-wrap .mxf-eyebrow {
	margin: 0 0 10px;
	color: var(--mxf-green-dark);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.mxf-wrap .mxf-h2 {
	margin: 0;
	font-size: clamp(24px, 2.2vw, 34px);
	line-height: 1.15;
	letter-spacing: -0.04em;
	color: var(--mxf-ink);
}

.mxf-wrap .mxf-lead {
	margin: 14px 0 0;
	color: var(--mxf-muted);
	font-size: 13px;
	line-height: 1.65;
}

/* ----------------------------------------------------------------- result */

.mxf-wrap .mxf-result {
	display: grid;
	gap: 7px;
	margin-top: 24px;
	padding: 15px 17px;
	border-left: 4px solid var(--mxf-green);
	border-radius: 4px 10px 10px 4px;
	background: #fff;
}

.mxf-wrap .mxf-result .mxf-lbl {
	margin: 0;
	color: var(--mxf-muted);
	font-size: 10px;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.mxf-wrap .mxf-result .mxf-title {
	margin: 0;
	color: var(--mxf-graphite);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
}

.mxf-wrap .mxf-result .mxf-desc {
	margin: 0;
	color: var(--mxf-muted);
	font-size: 11px;
	line-height: 1.5;
}

.mxf-wrap .mxf-result .mxf-link {
	justify-self: start;
	color: var(--mxf-green-dark);
	font-size: 11px;
	font-weight: 800;
	text-decoration: none;
}

.mxf-wrap .mxf-result .mxf-link:hover {
	text-decoration: underline;
}

.mxf-wrap .mxf-result .mxf-reset {
	justify-self: start;
	padding: 0;
	border: 0;
	background: none;
	color: var(--mxf-muted);
	font-size: 10px;
	letter-spacing: 0;
	text-transform: none;
	text-decoration: underline;
	cursor: pointer;
}

/* ------------------------------------------------------------------ steps */

.mxf-wrap .mxf-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(138px, 1fr));
	gap: 14px 12px;
}

.mxf-wrap .mxf-step {
	position: relative;
	min-width: 0;
	padding: 21px 17px 17px;
	border: 1px solid var(--mxf-line);
	border-radius: 13px;
	background: #fff;
	transition: opacity 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.mxf-wrap .mxf-step.is-locked {
	opacity: 0.4;
	pointer-events: none;
}

.mxf-wrap .mxf-step.is-current {
	border-color: #bcd0c5;
	box-shadow: 0 8px 22px rgba(47, 69, 57, 0.06);
}

.mxf-wrap .mxf-num {
	position: absolute;
	top: -12px;
	left: 16px;
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--mxf-graphite);
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
}

.mxf-wrap .mxf-step.is-done .mxf-num {
	background: var(--mxf-green);
}

.mxf-wrap .mxf-step .mxf-q {
	min-height: 34px;
	margin: 8px 0 13px;
	color: var(--mxf-ink);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0;
	text-transform: none;
}

.mxf-wrap .mxf-choices {
	display: grid;
	gap: 7px;
}

.mxf-wrap .mxf-choices button {
	display: block;
	width: 100%;
	min-height: 38px;
	padding: 7px 10px;
	border: 1px solid var(--mxf-line);
	border-radius: 8px;
	background: #fff;
	color: var(--mxf-muted);
	font-size: 10px;
	line-height: 1.3;
	letter-spacing: 0;
	text-align: left;
	text-transform: none;
	cursor: pointer;
	transition: all 0.15s;
}

.mxf-wrap .mxf-choices button:hover,
.mxf-wrap .mxf-choices button.is-on {
	border-color: var(--mxf-green);
	color: var(--mxf-ink);
	box-shadow: inset 3px 0 var(--mxf-green);
}

/* ------------------------------------------------------------- responsive */

@media (max-width: 1024px) {
	.mxf-wrap {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 26px;
	}
}

@media (max-width: 680px) {
	.mxf-wrap {
		padding: 20px;
	}

	.mxf-wrap .mxf-steps {
		grid-template-columns: 1fr;
		gap: 22px;
	}
}

/* ------------------------------------------------- v2: eşleşen ürün kartları */

.mxf-products {
	margin-top: 18px;
}

.mxf-products .mxf-relaxed {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 16px;
	padding: 12px 16px;
	border-left: 4px solid #e0a02a;
	border-radius: 6px 10px 10px 6px;
	background: #fffaf0;
	color: #7a5410;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.5;
}

/* -------------------------------------------------- eşleşme yok uyarı kutusu */

.mxf-empty {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 22px 24px;
	border: 1px solid #f0d9a8;
	border-left: 4px solid #e0a02a;
	border-radius: 12px;
	background: #fffaf0;
}

.mxf-empty-icon {
	display: grid;
	place-items: center;
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #e0a02a;
	color: #fff;
	font-size: 19px;
	font-weight: 900;
	line-height: 1;
}

.mxf-empty-title {
	display: block;
	color: #7a5410;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
}

.mxf-empty-text {
	margin: 6px 0 14px;
	color: #8a6a33;
	font-size: 13px;
	line-height: 1.6;
}

.mxf-empty-btn {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0 18px;
	border-radius: 8px;
	background: #6cbd45;
	color: #fff !important;
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
}

.mxf-empty-btn:hover {
	background: #4f9d2d;
	color: #fff !important;
}

@media (max-width: 680px) {
	.mxf-empty {
		flex-direction: column;
		gap: 12px;
		padding: 18px;
	}
}

.mxf-products .mxf-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
	gap: 18px;
}

.mxf-products .mxf-card {
	display: block;
	padding: 13px;
	border: 1px solid #dfe7e3;
	border-radius: 15px;
	background: #fff;
	color: #18232a;
	text-decoration: none;
	transition: transform .18s, box-shadow .18s, border-color .18s;
}

.mxf-products .mxf-card:hover {
	border-color: #b9cebf;
	transform: translateY(-5px);
	box-shadow: 0 18px 36px rgba(47, 69, 57, .1);
}

.mxf-products .mxf-card-media {
	display: grid;
	place-items: center;
	height: 170px;
	margin-bottom: 12px;
	border-radius: 11px;
	background: #f6f8f7;
	overflow: hidden;
}

.mxf-products .mxf-card-media img {
	width: auto !important;
	height: auto !important;
	max-width: 100% !important;
	max-height: 100% !important;
	object-fit: contain;
	mix-blend-mode: multiply;
}

.mxf-products .mxf-card-title {
	display: block;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
}

.mxf-products .mxf-card-meta {
	display: block;
	margin-top: 6px;
	color: #66757c;
	font-size: 11px;
}

.mxf-products .mxf-card-price {
	display: block;
	margin-top: 4px;
	color: #4f9d2d;
	font-size: 14px;
	font-weight: 700;
}

.mxf-products .mxf-all {
	display: inline-block;
	margin-top: 16px;
	color: #4f9d2d;
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
}

.mxf-products .mxf-all:hover {
	text-decoration: underline;
}

.mxf-notice {
	padding: 14px 18px;
	border: 1px dashed #d0d7d3;
	border-radius: 10px;
	background: #fbfcfb;
	color: #66757c;
	font-size: 13px;
}

.mxf-products .mxf-card-price del {
	margin-right: 6px;
	color: #9aa8ad;
	font-weight: 400;
	text-decoration: line-through;
}

.mxf-products .mxf-card-price ins {
	text-decoration: none;
}

.mxf-products .mxf-card-price .screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

/* ------------------------------- v2.2: adım adım daralan sonuç rafı */

.mxf-products .mxf-shelf-label {
	margin: 0 0 12px;
	color: #66757c;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

@media (max-width: 1180px) {
	.mxf-wrap {
		grid-template-columns: 1fr;
	}

	.mxf-wrap .mxf-steps {
		grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	}
}

/* ================================================================
   v2.2.1 — 4 adımlı yerleşim: giriş + canlı sonuç üstte,
   adımlar tam genişlikte tek sıra, ürünler altta.
   ================================================================ */

.mxf-wrap {
	display: block !important;
	padding: 30px 32px;
}

.mxf-wrap .mxf-intro {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(250px, 1fr);
	gap: 30px;
	align-items: center;
	padding: 0;
	margin-bottom: 26px;
}

.mxf-wrap .mxf-h2 {
	font-size: clamp(22px, 1.9vw, 30px);
}

.mxf-wrap .mxf-lead {
	margin-top: 10px;
	max-width: 560px;
}

/* canlı sonuç kutusu — artık her adımda güncelleniyor */

.mxf-wrap .mxf-result {
	margin-top: 0;
	gap: 6px;
	padding: 18px 20px;
	border-left: 4px solid var(--mxf-green);
	border-radius: 6px 14px 14px 6px;
	background: #fff;
	box-shadow: 0 8px 22px rgba(47, 69, 57, 0.06);
}

.mxf-wrap .mxf-result .mxf-title {
	font-size: 19px;
	line-height: 1.25;
	letter-spacing: -0.02em;
	color: var(--mxf-ink);
}

.mxf-wrap .mxf-result .mxf-desc {
	font-size: 12px;
}

/* adımlar — tam genişlikte tek sıra */

.mxf-wrap .mxf-steps {
	grid-template-columns: repeat(auto-fit, minmax(198px, 1fr));
	gap: 16px 16px;
}

.mxf-wrap .mxf-step {
	padding: 22px 18px 18px;
	border-radius: 15px;
}

.mxf-wrap .mxf-step.is-locked {
	opacity: 0.5;
}

.mxf-wrap .mxf-step .mxf-q {
	min-height: 34px;
	margin-bottom: 14px;
	font-size: 13.5px;
}

.mxf-wrap .mxf-choices {
	gap: 8px;
}

.mxf-wrap .mxf-choices button {
	min-height: 40px;
	padding: 8px 12px;
	border-radius: 9px;
	font-size: 11.5px;
}

.mxf-wrap .mxf-choices button.is-on {
	border-color: var(--mxf-green);
	background: #f2f9ef;
	color: var(--mxf-ink);
	font-weight: 700;
	box-shadow: inset 3px 0 var(--mxf-green);
}

/* ürün kartları */

.mxf-products {
	margin-top: 26px;
}

.mxf-products .mxf-grid {
	grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
	gap: 18px;
}

.mxf-products .mxf-card {
	padding: 14px;
	border-radius: 16px;
}

.mxf-products .mxf-card-media {
	height: 178px;
	margin-bottom: 14px;
	border: 1px solid #eef2f0;
	border-radius: 12px;
	background: #fff;
}

.mxf-products .mxf-card-title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	min-height: 39px;
	overflow: hidden;
	font-size: 13.5px;
	line-height: 1.45;
}

.mxf-products .mxf-card-meta {
	display: inline-flex;
	align-items: center;
	margin-top: 9px;
	padding: 3px 10px;
	border-radius: 20px;
	background: #eef7ea;
	color: #3f7f26;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.mxf-products .mxf-card-meta.is-out {
	background: #fdeceb;
	color: #b3261e;
}

.mxf-products .mxf-card-price {
	margin-top: 9px;
	font-size: 15px;
}

/* duyarlı */

@media (max-width: 1100px) {
	.mxf-wrap .mxf-intro {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

@media (max-width: 680px) {
	.mxf-wrap {
		padding: 22px 18px;
	}

	.mxf-wrap .mxf-steps {
		grid-template-columns: 1fr;
		gap: 22px;
	}
}

/* ================================================================
   v2.2.2 — referans tasarım yerleşimi
   Başlık ve açıklama solda, canlı sonuç paneli sağda;
   adımlar tek sırada 4 sütun, kart içi numara rozeti.
   ================================================================ */

.mxf-wrap {
	padding: 26px 28px;
	border: 1px solid #dcebd6;
	border-radius: 14px;
	background: linear-gradient(150deg, #f1f8ef, #ffffff 70%);
}

.mxf-wrap .mxf-intro {
	grid-template-columns: minmax(0, 1fr) minmax(220px, 290px);
	grid-template-rows: auto auto auto;
	gap: 0 24px;
	align-items: start;
	margin-bottom: 20px;
}

.mxf-wrap .mxf-eyebrow {
	grid-column: 1;
	grid-row: 1;
	margin: 0 0 6px;
	font-size: 10px;
	letter-spacing: 0.14em;
}

.mxf-wrap .mxf-h2 {
	grid-column: 1;
	grid-row: 2;
	font-size: clamp(19px, 1.5vw, 26px);
	letter-spacing: -0.02em;
}

.mxf-wrap .mxf-lead {
	grid-column: 1;
	grid-row: 3;
	max-width: 58ch;
	margin-top: 8px;
	font-size: 12.5px;
}

.mxf-wrap .mxf-result {
	grid-column: 2;
	grid-row: 1 / span 3;
	align-self: center;
	gap: 5px;
	margin-top: 0;
	padding: 14px 18px;
	border: 1px solid #dcebd6;
	border-left: 3px solid var(--mxf-green);
	border-radius: 8px;
	box-shadow: none;
}

.mxf-wrap .mxf-result .mxf-lbl {
	font-size: 9px;
	letter-spacing: 0.12em;
	color: var(--mxf-green-dark);
	font-weight: 800;
}

.mxf-wrap .mxf-result .mxf-title {
	font-size: 15px;
	line-height: 1.3;
}

.mxf-wrap .mxf-result .mxf-desc {
	font-size: 11.5px;
}

/* adımlar */

.mxf-wrap .mxf-steps {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.mxf-wrap .mxf-step {
	overflow: visible;
	padding: 14px;
	border-radius: 9px;
}

.mxf-wrap .mxf-num {
	position: static;
	width: 22px;
	height: 22px;
	margin: 0 0 9px;
	background: var(--mxf-green);
	font-size: 10px;
	font-weight: 700;
}

.mxf-wrap .mxf-step.is-locked .mxf-num {
	background: #e2eadf;
	color: #8fa093;
}

.mxf-wrap .mxf-step .mxf-q {
	min-height: 0;
	margin: 0 0 9px;
	font-size: 11.5px;
	font-weight: 600;
}

.mxf-wrap .mxf-choices {
	gap: 5px;
}

.mxf-wrap .mxf-choices button {
	min-height: 0;
	padding: 6px 9px;
	border-radius: 6px;
	font-size: 10.5px;
}

.mxf-wrap .mxf-choices button.is-on {
	background: #f2f9ef;
	font-weight: 600;
}

/* duyarlı */

@media (max-width: 1100px) {
	.mxf-wrap .mxf-intro {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		gap: 16px;
	}

	.mxf-wrap .mxf-eyebrow,
	.mxf-wrap .mxf-h2,
	.mxf-wrap .mxf-lead,
	.mxf-wrap .mxf-result {
		grid-column: 1;
		grid-row: auto;
	}

	.mxf-wrap .mxf-steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 680px) {
	.mxf-wrap .mxf-steps {
		grid-template-columns: 1fr;
		gap: 18px;
	}
}

/* ==========================================================================
   SİHİRBAZ MODU — tek soru, adım adım
   ========================================================================== */

.mxf-wrap.is-wizard .mxf-intro {
	display: block;
	margin-bottom: 22px;
}
.mxf-wrap.is-wizard .mxf-intro .mxf-lead {
	max-width: 62ch;
}
.mxf-wrap.is-wizard .mxf-steps {
	display: block;
}

.mxf-wz {
	position: relative;
	background: #fff;
	border: 1px solid #e6ebe6;
	border-radius: 12px;
	padding: 26px 28px 24px;
	transition: opacity .15s;
}
.mxf-wz.is-busy { opacity: .55; }

/* --- üst şerit: ilerleme + kalan model -------------------------------- */
.mxf-wz-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
}
.mxf-wz-prog {
	display: flex;
	gap: 6px;
}
.mxf-wz-prog i {
	display: block;
	width: 38px;
	height: 4px;
	border-radius: 2px;
	background: #e6ebe6;
	transition: background .18s;
}
.mxf-wz-prog i.is-on { background: #4f9d2d; }
.mxf-wz-left {
	font-size: 13px;
	font-weight: 600;
	color: #4f9d2d;
	white-space: nowrap;
}

/* --- soru ------------------------------------------------------------- */
.mxf-wz-step {
	margin: 0 0 6px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #8a978f;
}
.mxf-wz-q {
	margin: 0 0 18px;
	font-size: 23px;
	font-weight: 600;
	line-height: 1.25;
	color: #18232a;
}
.mxf-wz-note {
	margin: -8px 0 18px;
	font-size: 13.5px;
	color: #6b7a74;
	max-width: 60ch;
}

/* --- seçenekler ------------------------------------------------------- */
.mxf-wz-opts {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 10px;
}
.mxf-wz-opt {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	width: 100%;
	min-height: 0;
	margin: 0;
	padding: 14px 16px;
	text-align: left;
	font-size: 14.5px;
	font-weight: 400;
	line-height: 1.35;
	text-transform: none;
	color: #18232a;
	background: #fff;
	border: 1px solid #dfe5e0;
	border-radius: 9px;
	box-shadow: none;
	cursor: pointer;
	transition: border-color .12s, background .12s;
}
.mxf-wz-opt:hover:not(:disabled) {
	background: #f2f8ee;
	border-color: #4f9d2d;
	color: #18232a;
}
.mxf-wz-opt:focus-visible {
	outline: 2px solid #4f9d2d;
	outline-offset: 2px;
}
.mxf-wz-opt.is-on {
	background: #eaf4e4;
	border-color: #4f9d2d;
}
.mxf-wz-opt:disabled {
	opacity: .45;
	cursor: not-allowed;
	background: #f6f8f5;
}
.mxf-wz-opt:disabled .mxf-wz-opt-n { text-decoration: line-through; }
.mxf-wz-opt-n { flex: 1 1 auto; }
.mxf-wz-opt-c {
	flex: 0 0 auto;
	font-size: 11.5px;
	font-weight: 600;
	color: #6b7a74;
	background: #f0f3ef;
	border-radius: 20px;
	padding: 2px 9px;
	font-variant-numeric: tabular-nums;
}
.mxf-wz-opt.is-on .mxf-wz-opt-c { background: #fff; color: #3c7a21; }

/* --- gezinme ---------------------------------------------------------- */
.mxf-wz-nav,
.mxf-wz-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin-top: 18px;
}
.mxf-wz-btn {
	display: inline-flex;
	align-items: center;
	min-height: 0;
	margin: 0;
	padding: 9px 17px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
	text-transform: none;
	text-decoration: none;
	color: #18232a;
	background: #fff;
	border: 1px solid #dfe5e0;
	border-radius: 8px;
	box-shadow: none;
	cursor: pointer;
	transition: border-color .12s, background .12s;
}
.mxf-wz-btn:hover { border-color: #8a978f; background: #fff; color: #18232a; }
.mxf-wz-btn:focus-visible { outline: 2px solid #4f9d2d; outline-offset: 2px; }
.mxf-wz-btn--p {
	color: #fff;
	background: #4f9d2d;
	border-color: #4f9d2d;
}
.mxf-wz-btn--p:hover { color: #fff; background: #3c7a21; border-color: #3c7a21; }
.mxf-wz-skip { margin-left: auto; color: #6b7a74; }
.mxf-wz-reset { color: #6b7a74; }

/* --- sonuç ekranı ----------------------------------------------------- */
.mxf-wz--done .mxf-wz-q { margin-bottom: 4px; }

/* --- mobil ------------------------------------------------------------ */
@media (max-width: 600px) {
	.mxf-wz { padding: 20px 18px 18px; }
	.mxf-wz-q { font-size: 20px; }
	.mxf-wz-opts { grid-template-columns: 1fr; }
	.mxf-wz-prog i { width: 26px; }
	.mxf-wz-skip { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
	.mxf-wz, .mxf-wz-prog i, .mxf-wz-opt, .mxf-wz-btn { transition: none; }
}

/* ==========================================================================
   VURGU — koyu zeminde sihirbaz
   ========================================================================== */

/* Koyu zemin bandı — WPBakery satır ayarına ihtiyaç duymaz, eklenti kendi boyar.
   Sitedeki koyu güven şeridiyle aynı dili kullanır: kapsayıcı genişlikte,
   köşeleri yuvarlatılmış degrade blok. */
.mxf-outer.is-dark {
	/* WPBakery sütunu 15px içeri alıyor; bant komşu bölümlerle
	   aynı hizada başlasın diye geri açılıyor. */
	margin: 0 -15px 50px;
	padding: 44px;
	border-radius: 14px;
	background: linear-gradient(118deg, #16243d 0%, #21375a 55%, #24405f 100%);
}

/* Açık zemin paneli koyu bantta kapatılır — yoksa beyaz başlık
   açık degradenin üstüne düşüyor ve okunmuyor. */
.mxf-outer.is-dark .mxf-wrap {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: none;
}
.mxf-outer.is-dark .mxf-wrap .mxf-intro { padding: 0; }

/* Masaüstünde metin solda, sihirbaz sağda: bant boşluğu dolar,
   bölüm yarı yüksekliğe iner. */
@media (min-width: 992px) {
	.mxf-outer.is-dark .mxf-wrap.is-wizard {
		/* v2.2.1 bloğundaki `display:block !important` bunu ezdiği için
		   burada da !important gerekiyor. */
		display: grid !important;
		grid-template-columns: 0.82fr 1.4fr;
		gap: 44px;
		align-items: center;
	}
	.mxf-outer.is-dark .mxf-wrap.is-wizard .mxf-intro { margin-bottom: 0; }
	.mxf-outer.is-dark .mxf-wrap.is-wizard .mxf-h2 { font-size: clamp(26px, 2.1vw, 33px); }

	/* Dar sütunda 4 seçenek 3+1 kırılıyor; 2x2 daha dengeli duruyor. */
	.mxf-outer.is-dark .mxf-wz-opts { grid-template-columns: repeat(2, 1fr); }
}

.mxf-outer.is-dark .mxf-eyebrow { color: #a8dd8b; }
.mxf-outer.is-dark .mxf-h2 { color: #fff; }
.mxf-outer.is-dark .mxf-lead { color: rgba(255,255,255,.74); }
.mxf-outer.is-dark .mxf-meta { color: rgba(255,255,255,.5); }

.mxf-outer.is-dark .mxf-wz {
	border-color: transparent;
	box-shadow: 0 20px 46px rgba(0,0,0,.28);
}

/* Koyu zeminde ürün kartları da beyaz kalmalı */
.mxf-outer.is-dark .mxf-card {
	background: #fff;
	border-color: transparent;
	box-shadow: 0 12px 28px rgba(0,0,0,.18);
}
.mxf-outer.is-dark .mxf-shelf-label,
.mxf-outer.is-dark .mxf-relaxed { color: rgba(255,255,255,.7); }

/* Başlık altı küçük metin */
.mxf-meta {
	margin: 8px 0 0;
	font-size: 12.5px;
	color: #8a978f;
	letter-spacing: .01em;
}

/* Vurgulu bölümde başlık biraz daha iri */
.mxf-wrap.is-wizard .mxf-h2 { font-size: clamp(24px, 2.4vw, 32px); line-height: 1.16; }
.mxf-wrap.is-wizard .mxf-intro { margin-bottom: 26px; }

/* --- sonuç: seçim özeti ------------------------------------------------ */
.mxf-wz-sum {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	align-items: center;
	margin: 4px 0 14px;
}
.mxf-wz-sum-lbl {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: #8a978f;
	margin-right: 2px;
}
.mxf-wz-chip {
	display: inline-flex;
	align-items: center;
	font-size: 12.5px;
	color: #3c7a21;
	background: #eaf4e4;
	border-radius: 20px;
	padding: 4px 12px;
}
.mxf-wz-chip b { font-weight: 600; }

/* ==========================================================================
   KATEGORİ SAYFASI — seçiciye yönlendirme şeridi
   ========================================================================== */

.mxf-cta {
	display: flex;
	align-items: center;
	gap: 20px;
	margin: 0 0 28px;
	padding: 22px 26px;
	background: linear-gradient(100deg, #16243d, #24405f);
	border-radius: 12px;
	color: #fff;
}
.mxf-cta-ico {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: rgba(255,255,255,.1);
	color: #a8dd8b;
}
.mxf-cta-ico svg { width: 24px; height: 24px; }
.mxf-cta-body { flex: 1 1 auto; min-width: 0; }
.mxf-cta-title {
	margin: 0 0 3px;
	font-size: 16.5px;
	font-weight: 600;
	line-height: 1.3;
	color: #fff;
}
.mxf-cta-text {
	margin: 0;
	font-size: 13.5px;
	line-height: 1.5;
	color: rgba(255,255,255,.72);
	max-width: 68ch;
}
.mxf-cta-act {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}
.mxf-cta-btn {
	display: inline-flex;
	align-items: center;
	padding: 11px 22px;
	font-size: 13.5px;
	font-weight: 600;
	line-height: 1.4;
	text-decoration: none;
	white-space: nowrap;
	color: #16243d;
	background: #fff;
	border-radius: 8px;
	transition: background .14s, color .14s;
}
.mxf-cta-btn:hover { background: #4f9d2d; color: #fff; }
.mxf-cta-btn:focus-visible { outline: 2px solid #a8dd8b; outline-offset: 3px; }
.mxf-cta-note {
	font-size: 11px;
	color: rgba(255,255,255,.45);
	white-space: nowrap;
}

@media (max-width: 780px) {
	.mxf-cta {
		flex-wrap: wrap;
		gap: 14px;
		padding: 20px;
	}
	.mxf-cta-ico { width: 38px; height: 38px; border-radius: 10px; }
	.mxf-cta-body { flex: 1 1 100%; order: 2; }
	.mxf-cta-act { flex: 1 1 100%; order: 3; align-items: stretch; }
	.mxf-cta-btn { justify-content: center; }
	.mxf-cta-note { text-align: center; }
}

@media (max-width: 780px) {
	.mxf-outer.is-dark { margin: 0 -15px 34px; padding: 30px 20px 26px; border-radius: 12px; }
}

/* Boş rafta da boşluk bırakmasın diye ızgaraya veriyoruz:
   .mxf-products içinde boşluk metin düğümü kaldığından :empty tutmuyor. */
.mxf-outer.is-dark .mxf-products .mxf-grid,
.mxf-outer.is-dark .mxf-products .mxf-empty { margin-top: 26px; }

/* ==========================================================================
   TEKLİF LİSTESİNE EKLEME (myofix-bilgi-al ile birlikte)
   ========================================================================== */

.mxf-cell {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}
.mxf-cell > .mxf-card { flex: 1 1 auto; }
/* Teklif eklentisinin kendi .mfx-list-add kuralları sonra yüklendiği için
   düğme ızgara satırının boşluğunu yutup 200 px'e uzuyordu. */
.mxf-cell > .mxf-add,
.mxf-cell > button.mfx-list-add {
	flex: 0 0 auto;
	height: auto;
	align-self: stretch;
}

.mxf-add,
button.mxf-add {
	display: block;
	width: 100%;
	min-height: 0;
	margin: 0;
	padding: 9px 14px;
	font-size: 12.5px;
	font-weight: 600;
	line-height: 1.4;
	text-transform: none;
	color: #3c7a21;
	background: #eaf4e4;
	border: 1px solid #cfe4c2;
	border-radius: 8px;
	box-shadow: none;
	cursor: pointer;
	transition: background .13s, color .13s, border-color .13s;
}
.mxf-add:hover:not(:disabled) {
	color: #fff;
	background: #4f9d2d;
	border-color: #4f9d2d;
}
.mxf-add:focus-visible { outline: 2px solid #4f9d2d; outline-offset: 2px; }
.mxf-add.is-in-list,
.mxf-add:disabled {
	color: #6b7a74;
	background: #f2f4f1;
	border-color: #e3e8e4;
	cursor: default;
}

/* Koyu bantta kartın altındaki düğme de beyaz zeminle uyumlu kalsın */
.mxf-outer.is-dark .mxf-add {
	background: #fff;
	border-color: rgba(255,255,255,.28);
	color: #16243d;
}
.mxf-outer.is-dark .mxf-add:hover:not(:disabled) {
	background: #4f9d2d;
	border-color: #4f9d2d;
	color: #fff;
}
.mxf-outer.is-dark .mxf-add.is-in-list,
.mxf-outer.is-dark .mxf-add:disabled {
	background: rgba(255,255,255,.14);
	border-color: transparent;
	color: rgba(255,255,255,.7);
}

.mxf-bulk { order: -1; }

/* ==========================================================================
   ARA ADIM SONUÇLARI — her yanıttan sonra uyan modeller
   ========================================================================== */

.mxf-shelf-head {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: baseline;
	gap: 10px 18px;
	margin: 0 0 14px;
}
.mxf-shelf-head .mxf-shelf-label {
	margin: 0;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #8a978f;
}
.mxf-shelf-right {
	display: inline-flex;
	align-items: baseline;
	gap: 16px;
}
.mxf-shelf-count {
	font-size: 12.5px;
	color: #6b7a74;
	font-variant-numeric: tabular-nums;
}
.mxf-shelf-all {
	font-size: 12.5px;
	font-weight: 600;
	color: #3c7a21;
	text-decoration: none;
	white-space: nowrap;
}
.mxf-shelf-all:hover { text-decoration: underline; }

/* Koyu bantta */
.mxf-outer.is-dark .mxf-shelf-head .mxf-shelf-label { color: rgba(255,255,255,.5); }
.mxf-outer.is-dark .mxf-shelf-count { color: rgba(255,255,255,.68); }
.mxf-outer.is-dark .mxf-shelf-all { color: #a8dd8b; }

@media (max-width: 600px) {
	.mxf-shelf-head { flex-direction: column; align-items: flex-start; gap: 6px; }
	.mxf-shelf-right { gap: 12px; }
}

/* ==========================================================================
   YARDIM SATIRI — kararsız müşteri için her adımda görünür
   ========================================================================== */

.mxf-wz-help {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 18px;
	margin: 18px -28px -24px;
	padding: 14px 28px;
	border-top: 1px solid #eef1ec;
	background: #f8faf7;
	border-radius: 0 0 12px 12px;
}
.mxf-wz-help-t {
	flex: 1 1 260px;
	min-width: 0;
	font-size: 12.5px;
	line-height: 1.5;
	color: #6b7a74;
}
.mxf-wz-help-l {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 16px;
}
.mxf-wz-help-a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	color: #3c7a21;
	text-decoration: none;
	white-space: nowrap;
}
.mxf-wz-help-a:hover { color: #18232a; text-decoration: underline; }
.mxf-wz-help-a:focus-visible { outline: 2px solid #4f9d2d; outline-offset: 3px; }

/* Küçük işaretler: telefon, WhatsApp, bağlantı */
.mxf-wz-help-a::before {
	content: "";
	width: 15px;
	height: 15px;
	flex: 0 0 auto;
	background-color: currentColor;
	-webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
	-webkit-mask-position: center;  mask-position: center;
	-webkit-mask-size: 15px 15px;   mask-size: 15px 15px;
}
.mxf-wz-help-a.is-tel::before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.2 2 19.8 19.8 0 0 1-8.6-3.1 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.1 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7c.1 1 .4 1.9.7 2.8a2 2 0 0 1-.5 2.1L8.1 9.9a16 16 0 0 0 6 6l1.3-1.3a2 2 0 0 1 2.1-.4c.9.3 1.8.6 2.8.7a2 2 0 0 1 1.7 2z'/%3E%3C/svg%3E");
	        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.2 2 19.8 19.8 0 0 1-8.6-3.1 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.1 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7c.1 1 .4 1.9.7 2.8a2 2 0 0 1-.5 2.1L8.1 9.9a16 16 0 0 0 6 6l1.3-1.3a2 2 0 0 1 2.1-.4c.9.3 1.8.6 2.8.7a2 2 0 0 1 1.7 2z'/%3E%3C/svg%3E");
}
.mxf-wz-help-a.is-wa::before,
.mxf-wz-help-a.is-link::before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 11.5a8.4 8.4 0 0 1-9 8.4 8.5 8.5 0 0 1-3.8-.9L3 20.5l1.5-4.4A8.4 8.4 0 0 1 12.5 3a8.4 8.4 0 0 1 8.5 8.5z'/%3E%3C/svg%3E");
	        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 11.5a8.4 8.4 0 0 1-9 8.4 8.5 8.5 0 0 1-3.8-.9L3 20.5l1.5-4.4A8.4 8.4 0 0 1 12.5 3a8.4 8.4 0 0 1 8.5 8.5z'/%3E%3C/svg%3E");
}

@media (max-width: 600px) {
	.mxf-wz-help {
		margin: 16px -18px -18px;
		padding: 13px 18px;
	}
	.mxf-wz-help-t { flex: 1 1 100%; }
}

/* ==========================================================================
   ÜST MODEL / YAKIN EŞLEŞME BÖLÜMLERİ
   ========================================================================== */

.mxf-extra { margin-top: 26px; }
.mxf-extra-hd { margin-bottom: 13px; }
.mxf-extra-t {
	margin: 0 0 3px;
	font-size: 14.5px;
	font-weight: 600;
	color: #18232a;
	display: flex;
	align-items: center;
	gap: 9px;
}
.mxf-extra-t::before {
	content: "";
	width: 16px;
	height: 16px;
	flex: 0 0 auto;
	background-color: currentColor;
	-webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
	-webkit-mask-position: center;  mask-position: center;
	-webkit-mask-size: 16px 16px;   mask-size: 16px 16px;
}
.mxf-extra.is-up .mxf-extra-t { color: #3c7a21; }
.mxf-extra.is-up .mxf-extra-t::before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 19V5M5 12l7-7 7 7'/%3E%3C/svg%3E");
	        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 19V5M5 12l7-7 7 7'/%3E%3C/svg%3E");
}
.mxf-extra.is-near .mxf-extra-t { color: #a8701a; }
.mxf-extra.is-near .mxf-extra-t::before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 8v5M12 16v.5'/%3E%3C/svg%3E");
	        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 8v5M12 16v.5'/%3E%3C/svg%3E");
}
.mxf-extra-d {
	margin: 0;
	font-size: 12.5px;
	color: #6b7a74;
	max-width: 70ch;
	line-height: 1.5;
}

/* Kart üzerindeki gerekçe rozetleri */
.mxf-why {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin-top: 8px;
}
.mxf-why-score {
	font-size: 10.5px;
	font-weight: 700;
	color: #3c7a21;
	background: #eaf4e4;
	border-radius: 20px;
	padding: 2px 8px;
	font-variant-numeric: tabular-nums;
}
.mxf-why-i {
	font-size: 10.5px;
	line-height: 1.35;
	border-radius: 20px;
	padding: 2px 8px;
	color: #6b7a74;
	background: #f0f3ef;
}
.mxf-why-i.is-up { color: #3c7a21; background: #eaf4e4; }
.mxf-why-i.is-down,
.mxf-why-i.is-none { color: #a8701a; background: #f7efe0; }

/* Koyu bantta */
.mxf-outer.is-dark .mxf-extra-t { color: #fff; }
.mxf-outer.is-dark .mxf-extra.is-up .mxf-extra-t { color: #a8dd8b; }
.mxf-outer.is-dark .mxf-extra.is-near .mxf-extra-t { color: #e3bd77; }
.mxf-outer.is-dark .mxf-extra-d { color: rgba(255,255,255,.68); }

/* ==========================================================================
   GÜVEN ŞERİDİ — yetkili satıcı logoları + güven maddeleri
   Koyu zemin üzerinde kullanılmak üzere tasarlandı.
   ========================================================================== */

.mfx-trust {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 28px 40px;
	/* Satırın kendi dolgusu 18px üst / 4px alt; dengeyi burada kuruyoruz. */
	padding: 6px 0 18px;
}

/* --- marka bloğu ------------------------------------------------------- */
.mfx-trust-brand {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	gap: 9px;
}
.mfx-trust-lbl {
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: rgba(255,255,255,.55);
}
.mfx-trust-logos {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 13px 20px;
	background: #fff;
	border-radius: 11px;
	box-shadow: 0 10px 26px rgba(0,0,0,.22);
}
.mfx-trust-logos img {
	display: block;
	width: auto;
	max-width: none;
	height: 26px;
	object-fit: contain;
}
/* Xerox yatay kelime markası, HP dairesel — optik olarak dengelensin */
.mfx-trust-logos img:first-child { height: 30px; }
.mfx-trust-logos img + img {
	padding-left: 18px;
	border-left: 1px solid #e3e8e4;
	height: 19px;
}

/* --- güven maddeleri --------------------------------------------------- */
.mfx-trust-items {
	flex: 1 1 460px;
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(158px, 1fr));
	gap: 22px 26px;
}
.mfx-trust-items > li {
	position: relative;
	margin: 0;
	padding-left: 34px;
	line-height: 1.35;
}
.mfx-trust-items > li > b {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #fff;
	letter-spacing: .005em;
}
.mfx-trust-items > li > span {
	display: block;
	margin-top: 3px;
	font-size: 11.5px;
	color: rgba(255,255,255,.6);
}

/* Çizgi ikonlar — satır içi SVG (mask yok: her tarayıcıda birebir çalışır) */
.mfx-trust-items > li > .mfx-trust-ico {
	position: absolute;
	left: 0;
	top: 1px;
	width: 22px;
	height: 22px;
	display: block;
	flex: none;
	max-width: none;
	color: #a8dd8b;
	fill: none;
	stroke: currentColor;
	overflow: visible;
}

/* Açık zeminde de kullanılabilsin */
.mfx-trust.is-light .mfx-trust-lbl { color: #8a978f; }
.mfx-trust.is-light .mfx-trust-logos { background: none; box-shadow: none; padding: 0; }
.mfx-trust.is-light .mfx-trust-items > li > b { color: #18232a; }
.mfx-trust.is-light .mfx-trust-items > li > span { color: #6b7a74; }
.mfx-trust.is-light .mfx-trust-items > li > .mfx-trust-ico { color: #4f9d2d; }

@media (max-width: 900px) {
	.mfx-trust { gap: 22px 28px; }
	.mfx-trust-items { flex-basis: 100%; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
	.mfx-trust-items { grid-template-columns: 1fr; gap: 16px; }
	.mfx-trust-logos { padding: 11px 16px; gap: 14px; }
}


/* ==========================================================================
   ANA SAYFA — bölümler arası ritim
   WPBakery satırlarının bir kısmında alt boşluk yok, bir kısmında 50-60px var.
   Hepsini tek bir ölçüye çekiyoruz ki bölümler birbirine yapışmasın.
   ========================================================================== */

.home .entry-content > .wpb-content-wrapper > .wpb_row {
	margin-bottom: 0;
}
.home .entry-content > .wpb-content-wrapper > .wpb_row + .wpb_row {
	margin-top: 56px;
}
/* Yalnızca eski özel CSS'i taşıyan, içi boş satır — ritmi bozmasın.
   Not: WPBakery bu satırda sınıf adlarını tırnakla birlikte basıyor
   (class="... &quot;mfx-bos&quot; ..."), bu yüzden nitelik eşleşmesi de var. */
.wpb_row.mfx-bos,
.wpb_row[class*="mfx-bos"] { display: none !important; }
@media (max-width: 768px) {
	.home .entry-content > .wpb-content-wrapper > .wpb_row + .wpb_row {
		margin-top: 36px;
	}
}
