.cihaz-satelpa-form {
	--cs-bg: #edf2f7;
	--cs-bg-input: #f2f7fd;
	--cs-surface: #ffffff;
	--cs-surface-2: #f6f8fc;
	--cs-line: #d9e2ee;
	--cs-text: #132238;
	--cs-muted: #617086;
	--cs-primary: #134a8e;
	--cs-primary-strong: #0e3b70;
	--cs-success: #1e8e5a;
	--cs-danger: #cf3f3f;
	max-width: 1120px;
	margin: 0 auto;
	padding: 30px;
	border-radius: 28px;
	border: 1px solid #d6e0ea;
	background:
		linear-gradient(180deg, rgba(255,255,255,0.92), rgba(247,250,253,0.96)),
		radial-gradient(900px 260px at -10% -20%, #dce8fb 0%, transparent 60%),
		radial-gradient(740px 220px at 110% 0%, #dde8f4 0%, transparent 55%),
		var(--cs-bg);
	color: var(--cs-text);
	font-family: "Poppins", "Segoe UI", Arial, sans-serif;
	box-shadow: 0 28px 70px rgba(16, 34, 56, 0.08);
}

.cihaz-satelpa-form * { box-sizing: border-box; }

.cihaz-satelpa-form button,
.cihaz-satelpa-form input,
.cihaz-satelpa-form select,
.cihaz-satelpa-form textarea {
	font: inherit;
	color: inherit;
	letter-spacing: normal;
	text-transform: none;
}

.cihaz-satelpa-form button,
.cihaz-satelpa-form input[type="button"],
.cihaz-satelpa-form input[type="submit"],
.cihaz-satelpa-form input[type="reset"] {
	appearance: none;
	-webkit-appearance: none;
	box-shadow: none;
}

.cihaz-satelpa-form label,
.cihaz-satelpa-form button {
	margin: 0;
}

.cihaz-satelpa-form .cs-steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin: 0 0 26px;
	padding: 18px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 253, 0.92));
	border: 1px solid #dfe7f0;
	border-radius: 22px;
	backdrop-filter: blur(8px);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.cihaz-satelpa-form .cs-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	border-radius: 18px;
	color: #7f91a8;
	transition: .18s ease;
}

.cihaz-satelpa-form .cs-step-num {
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	border: 1px solid #bfd0e4;
	background: #fff;
	font-size: 14px;
	font-weight: 700;
	box-shadow: 0 6px 18px rgba(18, 43, 80, 0.08);
}

.cihaz-satelpa-form .cs-step-label {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .03em;
}

.cihaz-satelpa-form .cs-step.active { color: var(--cs-success); }
.cihaz-satelpa-form .cs-step.active {
	background: linear-gradient(180deg, rgba(30, 142, 90, 0.08), rgba(30, 142, 90, 0.03));
}
.cihaz-satelpa-form .cs-step.active .cs-step-num { border-color: var(--cs-success); color: var(--cs-success); }

.cihaz-satelpa-form .cs-step.done { color: #7b95b6; }
.cihaz-satelpa-form .cs-step.done .cs-step-num {
	background: var(--cs-success);
	border-color: var(--cs-success);
	color: #fff;
}

.cihaz-satelpa-form .cs-panel {
	animation: csFadeIn 0.4s ease-out;
}

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

.cihaz-satelpa-form .cs-panel h3 {
	margin: 0 0 14px;
	font-size: 30px;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.cihaz-satelpa-form .cs-step2-layout,
.cihaz-satelpa-form .cs-step3-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) 400px;
	gap: 24px;
	align-items: start;
}

.cihaz-satelpa-form .cs-form-section,
.cihaz-satelpa-form .cs-summary-section {
	background: var(--cs-surface);
	border: 1px solid var(--cs-line);
	border-radius: 24px;
	padding: 24px;
	box-shadow: 0 16px 40px rgba(18, 43, 80, 0.06);
}

.cihaz-satelpa-form .cs-summary-section {
	background: transparent;
	border: 0;
	padding: 0;
	position: sticky;
	top: 14px;
	box-shadow: none;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.cihaz-satelpa-form .cs-section-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
	padding: 7px 12px;
	border-radius: 999px;
	background: #eef5ff;
	color: var(--cs-primary);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.cihaz-satelpa-form .cs-section-intro {
	margin: -4px 0 18px;
	max-width: 620px;
	font-size: 15px;
	line-height: 1.65;
	color: var(--cs-muted);
}

.cihaz-satelpa-form .cs-back-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border: 0;
	padding: 0;
	background: transparent;
	color: var(--cs-primary);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	margin-bottom: 8px;
}

.cihaz-satelpa-form .cs-search-container {
	display: grid;
	grid-template-columns: 1fr 110px;
	gap: 8px;
	margin-bottom: 14px;
}

.cihaz-satelpa-form .cs-search-input,
.cihaz-satelpa-form .cs-select-card select,
.cihaz-satelpa-form .cs-field input[type="text"],
.cihaz-satelpa-form .cs-field input[type="email"],
.cihaz-satelpa-form .cs-field input[type="tel"],
.cihaz-satelpa-form .cs-field textarea {
	width: 100%;
	background: #fff;
	border: 1px solid #ccd8e6;
	border-radius: 14px;
	padding: 14px 15px;
	min-height: 56px;
	font-size: 15px;
	line-height: 1.35;
	color: var(--cs-text);
	vertical-align: middle;
	transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.cihaz-satelpa-form .cs-select-card select {
	display: block;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding-top: 0;
	padding-bottom: 0;
	padding-right: 46px;
	line-height: 54px;
	background-image:
		linear-gradient(45deg, transparent 50%, #5f7390 50%),
		linear-gradient(135deg, #5f7390 50%, transparent 50%);
	background-position:
		calc(100% - 22px) calc(50% - 2px),
		calc(100% - 16px) calc(50% - 2px);
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
}

.cihaz-satelpa-form .cs-select-card select::-ms-expand {
	display: none;
}

.cihaz-satelpa-form .cs-search-input:focus,
.cihaz-satelpa-form .cs-select-card select:focus,
.cihaz-satelpa-form .cs-field input[type="text"]:focus,
.cihaz-satelpa-form .cs-field input[type="email"]:focus,
.cihaz-satelpa-form .cs-field input[type="tel"]:focus,
.cihaz-satelpa-form .cs-field textarea:focus {
	outline: none;
	border-color: #84aee0;
	box-shadow: 0 0 0 3px rgba(12, 92, 171, 0.12);
}

.cihaz-satelpa-form .cs-phone-wrap {
	display: flex;
	gap: 8px;
	width: 100%;
	align-items: stretch;
}

.cihaz-satelpa-form .cs-country-select {
	flex: 0 0 115px;
	width: 115px;
	height: 54px;
	background: #fff;
	border: 1px solid #ccd8e6;
	border-radius: 14px;
	padding: 0 10px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all .18s ease;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath stroke='%236A7A90' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
}

.cihaz-satelpa-form .cs-country-select:focus {
	outline: none;
	border-color: #84aee0;
}

.cihaz-satelpa-form .cs-search-btn,
.cihaz-satelpa-form .cs-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 14px;
	padding: 13px 18px;
	min-height: 48px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: .18s ease;
}

.cihaz-satelpa-form .cs-search-btn {
	background: var(--cs-primary);
	color: #fff;
}

.cihaz-satelpa-form .cs-btn-primary {
	background: linear-gradient(135deg, #2aa96b, #197f50);
	color: #fff;
	box-shadow: 0 14px 24px rgba(30, 142, 90, 0.22);
}

.cihaz-satelpa-form .cs-btn-prev {
	background: var(--cs-surface);
	color: var(--cs-text);
	border: 1px solid var(--cs-line);
}

.cihaz-satelpa-form .cs-search-btn:hover { background: var(--cs-primary-strong); }
.cihaz-satelpa-form .cs-btn-primary:hover { filter: brightness(0.95); }
.cihaz-satelpa-form .cs-btn-prev:hover { background: #f4f7fc; }

.cihaz-satelpa-form .cs-category-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 10px;
}

@media (max-width: 992px) {
	.cihaz-satelpa-form .cs-category-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 640px) {
	.cihaz-satelpa-form .cs-category-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.cihaz-satelpa-form .cs-category-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px 10px;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	cursor: pointer;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	text-align: center;
}

.cihaz-satelpa-form .cs-category-card:hover {
	border-color: #ff6600;
	box-shadow: 0 10px 20px rgba(255, 102, 0, 0.08);
	transform: translateY(-2px);
}

.cihaz-satelpa-form .cs-category-card.selected {
	background: #fff;
	border-color: #ff6600;
	border-width: 2px;
	box-shadow: 0 12px 24px rgba(255, 102, 0, 0.12);
}

.cihaz-satelpa-form .cs-category-image {
	width: 64px;
	height: 64px;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cihaz-satelpa-form .cs-category-image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	mix-blend-mode: multiply;
}

.cihaz-satelpa-form .cs-category-image.cs-no-image {
	background: #f1f5f9;
	border-radius: 12px;
}

.cihaz-satelpa-form .cs-category-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--cs-text);
	transition: color 0.25s ease;
}

.cihaz-satelpa-form .cs-category-card.selected .cs-category-name {
	color: #ff6600;
}

.cihaz-satelpa-form .cs-select-card {
	background: linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 100%);
	border: 1px solid var(--cs-line);
	border-radius: 18px;
	padding: 16px;
	margin-bottom: 12px;
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.cihaz-satelpa-form .cs-select-card label {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 700;
	color: #20314a;
}

.cihaz-satelpa-form .cs-select-card:focus-within {
	border-color: #9ab6d8;
	box-shadow: 0 12px 24px rgba(19, 74, 142, 0.08);
	transform: translateY(-1px);
}

.cihaz-satelpa-form .cs-field-help {
	margin: 8px 0 0;
	font-size: 13px;
	line-height: 1.45;
	color: var(--cs-muted);
}

.cihaz-satelpa-form .cs-related-models {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px dashed #d4dfed;
}

.cihaz-satelpa-form .cs-related-models-title {
	margin: 0 0 8px;
	font-size: 14px;
	font-weight: 700;
	color: #20314a;
}

.cihaz-satelpa-form .cs-related-models-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.cihaz-satelpa-form .cs-related-model-chip {
	border: 1px solid #cfdced;
	background: #fff;
	color: #1f3657;
	border-radius: 999px;
	padding: 7px 12px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.25;
	cursor: pointer;
	transition: .16s ease;
}

.cihaz-satelpa-form .cs-related-model-chip:hover {
	border-color: #8ab1de;
	background: #f0f7ff;
}

.cihaz-satelpa-form .cs-offer-card {
	background:
		radial-gradient(circle at top right, rgba(87, 129, 214, 0.35), transparent 34%),
		linear-gradient(145deg, #102e63, #0d1b39 64%);
	border-radius: 24px;
	padding: 22px;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.09);
	position: relative;
	overflow: hidden;
	box-shadow: 0 22px 42px rgba(7, 24, 58, 0.24);
	min-height: 214px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.cihaz-satelpa-form .cs-offer-card::before {
	content: "";
	position: absolute;
	top: -80px;
	right: -40px;
	width: 180px;
	height: 180px;
	background: radial-gradient(circle, rgba(77, 132, 255, 0.24) 0%, rgba(77, 132, 255, 0) 70%);
	pointer-events: none;
}

.cihaz-satelpa-form .cs-offer-title {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: #c6d4ef;
	font-weight: 700;
}

.cihaz-satelpa-form .cs-offer-price {
	margin: 10px 0 12px;
	font-size: clamp(24px, 3.5vw, 42px);
	line-height: .95;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	padding: 12px 14px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.09);
	border: 1px solid rgba(255, 255, 255, 0.14);
	letter-spacing: -0.01em;
	backdrop-filter: blur(10px);
	word-break: normal;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cihaz-satelpa-form .cs-offer-price.is-updating {
	opacity: 0.5;
	transform: scale(0.98);
}

.cihaz-satelpa-form .cs-offer-card p {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: #d2def4;
}

.cihaz-satelpa-form .cs-sidebar-device-image {
	margin-top: 10px;
	text-align: center;
	padding: 10px;
}

.cihaz-satelpa-form .cs-sidebar-device-img {
	max-width: 100%;
	max-height: 240px;
	object-fit: contain;
	mix-blend-mode: multiply;
	border-radius: 12px;
}

.cihaz-satelpa-form .cs-info-card {
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid var(--cs-line);
	border-radius: 20px;
	padding: 18px;
	box-shadow: 0 14px 30px rgba(18, 43, 80, 0.06);
}

.cihaz-satelpa-form .cs-info-card h4 {
	margin: 0 0 12px;
	font-size: 16px;
	line-height: 1.3;
}

.cihaz-satelpa-form .cs-info-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.cihaz-satelpa-form .cs-info-list li {
	position: relative;
	padding-left: 18px;
	font-size: 14px;
	line-height: 1.55;
	color: var(--cs-muted);
}

.cihaz-satelpa-form .cs-info-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: var(--cs-success);
}

.cihaz-satelpa-form .cs-device-card {
	margin-top: 10px;
	background: var(--cs-surface);
	border: 1px solid var(--cs-line);
	border-radius: 18px;
	padding: 16px;
}

.cihaz-satelpa-form .cs-summary-item {
	display: flex;
	gap: 8px;
	font-size: 14px;
	margin: 3px 0;
}

.cihaz-satelpa-form .cs-summary-label { color: var(--cs-muted); }
.cihaz-satelpa-form .cs-summary-value { font-weight: 600; }
.cihaz-satelpa-form .cs-model-value { color: var(--cs-success); }

.cihaz-satelpa-form .cs-questions-container {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.cihaz-satelpa-form .cs-question-group {
	background: linear-gradient(180deg, #f7fbff 0%, #f2f8ff 100%);
	border: 1px solid #cfe0f5;
	border-radius: 20px;
	padding: 20px;
	box-shadow: 0 12px 28px rgba(19, 43, 80, 0.06);
}

.cihaz-satelpa-form .cs-question-item {
	margin-bottom: 12px;
	background: #fff;
	border: 1px solid #d7e5f6;
	border-radius: 16px;
	padding: 14px;
}

.cihaz-satelpa-form .question-text {
	display: block;
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 9px;
	line-height: 1.35;
}

.cihaz-satelpa-form .cs-answers-buttons {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.cihaz-satelpa-form .cs-answer-btn {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 11px 12px;
	background: #fff;
	border: 1px solid #d4e2f3;
	border-radius: 12px;
	cursor: pointer;
	font-size: 14px;
	transition: .16s ease;
	min-height: 52px;
}

.cihaz-satelpa-form .cs-answer-btn:hover {
	border-color: #9fbbe0;
	background: #f8fbff;
}

.cihaz-satelpa-form .cs-answer-btn input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.cihaz-satelpa-form .cs-answer-letter {
	width: 20px;
	height: 20px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 700;
	background: #e6eef9;
	color: #38567f;
}

.cihaz-satelpa-form .cs-answer-btn.is-selected {
	border-color: #2b9b5a;
	background: #effbf3;
	box-shadow: 0 0 0 2px rgba(31, 165, 90, 0.15);
}

.cihaz-satelpa-form .cs-answer-btn.is-selected .cs-answer-letter {
	background: var(--cs-success);
	color: #fff;
}

.cihaz-satelpa-form .cs-answer-btn-rich {
	display: flex;
	flex-direction: row;
	align-items: center;
	text-align: left;
	gap: 10px;
	padding: 10px 12px;
	min-height: 58px;
}

.cihaz-satelpa-form .cs-answer-body {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.cihaz-satelpa-form .cs-answer-emoji {
	width: 26px;
	height: 26px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	line-height: 1;
	border-radius: 999px;
	background: #ecf3ff;
}

.cihaz-satelpa-form .cs-answer-title {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.25;
}

.cihaz-satelpa-form .cs-answer-desc {
	font-size: 12px;
	line-height: 1.35;
	color: var(--cs-muted);
}

.cihaz-satelpa-form .cs-price-display {
	margin-top: 12px;
	background: linear-gradient(180deg, #eef6ff 0%, #e6f1ff 100%);
	border: 1px solid #bfd8f5;
	border-radius: 16px;
	padding: 14px 15px;
}

.cihaz-satelpa-form .cs-actions {
	display: flex;
	gap: 10px;
	margin-top: 18px;
	flex-wrap: wrap;
}

.cihaz-satelpa-form .cs-fields-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.cihaz-satelpa-form .cs-field.cs-full {
	grid-column: 1 / -1;
}

.cihaz-satelpa-form .cs-checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 12px 0;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	border-bottom: 1px solid rgba(0,0,0,0.03);
	width: 100%;
}

.cihaz-satelpa-form .cs-checkbox-label:last-child {
	border-bottom: 0;
}

.cihaz-satelpa-form .cs-checkbox-label input[type="checkbox"] {
	appearance: none;
	width: 20px;
	height: 20px;
	border: 2px solid #cbd5e1;
	border-radius: 6px;
	flex-shrink: 0;
	margin-top: 2px;
}

.cihaz-satelpa-form .cs-checkbox-label input[type="checkbox"]:checked {
	background: var(--cs-success);
	border-color: var(--cs-success);
}

.cihaz-satelpa-form .cs-upload-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 160px;
	padding: 14px 12px;
	border: 1px solid #d6e3f3;
	border-radius: 14px;
	background: #fff;
	text-align: center;
	cursor: pointer;
	transition: .18s ease;
}

.cihaz-satelpa-form .cs-upload-card:hover { border-color: #8eb0da; box-shadow: 0 10px 22px rgba(19, 74, 142, 0.12); }

.cihaz-satelpa-form .cs-upload-preview {
	width: 100%;
	height: 100%;
	object-fit: contain;
	mix-blend-mode: multiply;
	display: none;
	border-radius: 8px;
}

.cihaz-satelpa-form .cs-upload-card.has-preview .cs-upload-card-title,
.cihaz-satelpa-form .cs-upload-card.has-preview .cs-upload-card-meta,
.cihaz-satelpa-form .cs-upload-card.has-preview .cs-upload-card-btn {
	display: none;
}

.cihaz-satelpa-form .cs-upload-card.has-preview .cs-upload-preview {
	display: block;
}

.cihaz-satelpa-form .cs-field {
	margin-bottom: 10px;
}

.cihaz-satelpa-form .cs-field > label:not(.cs-checkbox-label):not(.cs-upload-card) {
	display: block;
	margin-bottom: 7px;
	font-size: 14px;
	font-weight: 700;
	color: #20314a;
}

.cihaz-satelpa-form .cs-field textarea {
	resize: vertical;
	min-height: 110px;
}

.cihaz-satelpa-form .required {
	color: var(--cs-danger);
	font-weight: 700;
}

.cihaz-satelpa-form .cs-hidden-control {
	position: absolute;
	left: -9999px;
	opacity: 0;
	pointer-events: none;
}

.cihaz-satelpa-form .cs-upload-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 8px;
}

.cihaz-satelpa-form .cs-upload-card-title {
	font-size: 14px;
	font-weight: 700;
	color: var(--cs-text);
}

.cihaz-satelpa-form .cs-upload-card-meta {
	font-size: 12px;
	color: var(--cs-muted);
}

.cihaz-satelpa-form .cs-upload-card-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 12px;
	border-radius: 10px;
	background: #edf4ff;
	color: var(--cs-primary);
	font-size: 13px;
	font-weight: 700;
}

.cihaz-satelpa-form .cs-upload-card-file {
	font-size: 12px;
	color: #5d7290;
	word-break: break-word;
}

.cihaz-satelpa-form .cs-upload-card-input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.cihaz-satelpa-form .cs-message {
	margin-top: 18px;
	padding: 13px 14px;
	border-radius: 14px;
	border: 1px solid transparent;
	font-size: 14px;
	line-height: 1.45;
}

.cihaz-satelpa-form .cs-message.info {
	background: #eef5ff;
	border-color: #cddff7;
	color: #1b4475;
}

.cihaz-satelpa-form .cs-message.success {
	background: #e9f8ef;
	border-color: #b8e3c8;
	color: #1f7044;
}

.cihaz-satelpa-form .cs-message.error {
	background: #fdeeee;
	border-color: #f3c5c5;
	color: #8e2727;
}

.cihaz-satelpa-form .cs-success-screen {
	margin-top: 18px;
}

.cihaz-satelpa-form .cs-success-card {
	background: #fff;
	border: 1px solid var(--cs-line);
	border-radius: 24px;
	padding: 24px;
	box-shadow: 0 16px 40px rgba(18, 43, 80, 0.08);
}

.cihaz-satelpa-form .cs-success-icon {
	width: 52px;
	height: 52px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #e8f8ef;
	color: var(--cs-success);
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 10px;
}

.cihaz-satelpa-form .cs-success-meta {
	margin: 10px 0 14px;
}

.cihaz-satelpa-form .cs-success-next {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.cihaz-satelpa-form .cs-success-next-item {
	background: #f7fbff;
	border: 1px solid #dae9fb;
	border-radius: 14px;
	padding: 12px;
}

.cihaz-satelpa-form .cs-success-next-item strong {
	display: block;
	margin-bottom: 4px;
	font-size: 13px;
}

.cihaz-satelpa-form .cs-success-next-item span {
	font-size: 13px;
	color: var(--cs-muted);
	line-height: 1.45;
}

.cihaz-satelpa-form .cs-success-actions {
	margin-top: 14px;
}

.cihaz-satelpa-form .cs-question-wizard-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	justify-content: space-between;
	margin-top: 8px;
}

.cihaz-satelpa-form .cs-question-nav-status {
	font-size: 13px;
	font-weight: 700;
	color: var(--cs-muted);
}

.cihaz-satelpa-form .cs-mobile-sticky-price {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.cihaz-satelpa-form .cs-mobile-sticky-price span {
	font-size: 12px;
	color: var(--cs-muted);
}

.cihaz-satelpa-form .cs-mobile-sticky-price strong {
	font-size: 18px;
	line-height: 1.1;
	color: var(--cs-text);
}

.cihaz-satelpa-form .cs-mobile-sticky-bar {
	display: none;
}

@media (max-width: 768px) {
	.cihaz-satelpa-form { padding: 20px; }
	.cihaz-satelpa-form .cs-step2-layout, .cihaz-satelpa-form .cs-step3-layout { grid-template-columns: 1fr; }
	.cihaz-satelpa-form .cs-summary-section { position: relative; top: 0; }
	.cihaz-satelpa-form .cs-fields-grid { grid-template-columns: 1fr; }
	.cihaz-satelpa-form .cs-upload-grid { grid-template-columns: 1fr; }
	.cihaz-satelpa-form .cs-answers-buttons { grid-template-columns: 1fr; }
	.cihaz-satelpa-form .cs-success-next { grid-template-columns: 1fr; }
	.cihaz-satelpa-form .cs-mobile-sticky-bar {
		position: fixed;
		bottom: 24px;
		left: 16px;
		right: 16px;
		z-index: 1000;
		background: rgba(255, 255, 255, 0.72);
		backdrop-filter: blur(20px);
		border-radius: 20px;
		padding: 14px 20px;
		box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
}

/* --- Mobile Enhancement V2 --- */
.cs-mobile-header {
    display: none;
    position: sticky;
    top: 0;
    background: #fff;
    padding: 16px 20px;
    border-bottom: 1px solid #edf2f7;
    z-index: 100;
    margin: -30px -30px 20px -30px;
    border-radius: 28px 28px 0 0;
}

.cs-mobile-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    color: var(--cs-text);
}

.cs-mobile-back, .cs-mobile-close {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 0;
    padding: 8px;
    color: #64748b;
    cursor: pointer;
}

.cs-mobile-back { left: 10px; }
.cs-mobile-close { right: 10px; }

.cs-mobile-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #f1f5f9;
}

.cs-mobile-progress-bar {
    height: 100%;
    background: #ff6600; /* Matching example orange */
    transition: width 0.3s ease;
}

.cs-mobile-progress-text {
    position: absolute;
    right: 20px;
    top: -24px;
    font-size: 12px;
    font-weight: 700;
    color: var(--cs-text);
}

.cs-trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fef3c7;
    border: 1px solid #fde68a;
    padding: 10px 14px;
    border-radius: 14px;
    margin-bottom: 18px;
}

.cs-trust-icon { font-size: 18px; }
.cs-trust-text { font-size: 13px; font-weight: 600; color: #92400e; }

.cs-main-headline {
    font-size: 24px !important;
    font-weight: 800 !important;
    line-height: 1.2;
    margin-bottom: 12px !important;
    color: var(--cs-text);
}

.cs-main-headline span { color: #ff6600; }

.cs-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: #fff;
    border: 1px solid #ccd8e6;
    border-radius: 14px;
    padding: 14px 15px;
    min-height: 56px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cs-select-trigger:hover { border-color: #84aee0; }

.cs-trigger-value { font-size: 15px; color: var(--cs-text); font-weight: 500; }
.cs-trigger-icon { color: #64748b; }

/* Selection Overlay */
.cs-selection-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    flex-direction: column;
}

.cs-overlay-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
}

.cs-overlay-content {
    position: relative;
    margin-top: auto;
    background: #fff;
    width: 100%;
    max-height: 90vh;
    border-radius: 24px 24px 0 0;
    display: flex;
    flex-direction: column;
    animation: csOverlaySlideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes csOverlaySlideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cs-overlay-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #edf2f7;
}

.cs-overlay-header h3 { margin: 0; font-size: 18px; font-weight: 700; }

.cs-overlay-close {
    background: #f1f5f9;
    border: 0;
    padding: 6px;
    border-radius: 999px;
    color: #64748b;
    cursor: pointer;
}

.cs-overlay-search { padding: 16px 20px; border-bottom: 1px solid #edf2f7; }

.cs-search-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.cs-search-icon { position: absolute; left: 14px; color: #94a3b8; }

#cs_overlay_search_input {
    width: 100%;
    padding: 12px 14px 12px 42px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s;
}

#cs_overlay_search_input:focus { border-color: #ff6600; }

.cs-overlay-list {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
}

.cs-overlay-option {
    padding: 16px 24px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 16px;
    font-weight: 500;
    color: var(--cs-text);
    cursor: pointer;
    transition: background 0.15s;
}

.cs-overlay-option:hover { background: #f8fafc; }
.cs-overlay-option.selected { color: #ff6600; background: #fffaf0; font-weight: 700; }

@media (max-width: 768px) {
    .cihaz-satelpa-form {
        padding: 0;
        border: 0;
        box-shadow: none !important;
        background: #fff;
    }

    .cs-mobile-header { display: block; }
    .cs-steps { display: none; }
    
    .cs-form-section {
        border: 0;
        box-shadow: none;
        padding: 20px;
    }

    .cs-step2-layout, .cs-step3-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .cs-summary-section { display: none; }

    .cs-mobile-sticky-bar {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 16px 20px;
        box-shadow: 0 -10px 25px rgba(0,0,0,0.05);
        z-index: 1000;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
    }

    .cs-main-headline { font-size: 22px !important; }
}


/* --- Step 2 UI Refinement (Anti-Nesting) --- */
@media (max-width: 768px) {
    .cs-panel-step-2 .cs-form-section, 
    .cs-panel-step-3 .cs-form-section {
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        padding: 10px 15px !important;
    }

    .cs-question-group {
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin-top: 10px !important;
    }

    .cs-question-item {
        background: #fff !important;
        margin-bottom: 16px !important;
        border-radius: 18px !important;
        border: 1px solid #edf2f7 !important;
        box-shadow: 0 8px 20px rgba(0,0,0,0.04) !important;
        padding: 18px !important;
    }

    .cs-back-link.cs-btn-prev {
        display: inline-flex !important;
        align-items: center !important;
        gap: 8px !important;
        background: #f8fafc !important;
        border: 1px solid #e2e8f0 !important;
        padding: 10px 16px !important;
        border-radius: 12px !important;
        color: #64748b !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        margin-bottom: 15px !important;
        transition: all 0.2s !important;
    }

    .cs-back-link.cs-btn-prev:active {
        background: #f1f5f9 !important;
        transform: scale(0.98);
    }
    
    .cs-answers-buttons {
        grid-template-columns: 1fr !important; /* Stack answers on mobile for better readability */
        gap: 10px !important;
    }

    .cs-answer-btn {
        padding: 14px 16px !important;
        min-height: 54px !important;
        border-radius: 14px !important;
    }
}


/* --- Desktop Overlay Refinement --- */
@media (min-width: 769px) {
    .cs-selection-overlay {
        justify-content: center;
        align-items: center;
        padding: 20px;
    }

    .cs-overlay-content {
        max-width: 600px;
        margin-top: 0 !important;
        border-radius: 24px !important;
        box-shadow: 0 25px 70px rgba(13, 31, 56, 0.3) !important;
        max-height: 85vh !important;
    }

    .cs-overlay-backdrop {
        background: rgba(15, 23, 42, 0.65) !important;
        backdrop-filter: blur(8px) !important;
    }

    .cs-overlay-header {
        padding: 24px 30px !important;
    }

    .cs-overlay-search {
        padding: 20px 30px !important;
    }

    .cs-overlay-list {
        padding: 10px 15px 25px !important;
    }

    .cs-overlay-option {
        padding: 14px 20px !important;
        border-radius: 12px !important;
        margin: 2px 15px !important;
        border-bottom: 0 !important;
    }

    .cs-overlay-option:hover {
        background: #f1f5f9 !important;
    }
}


/* --- Global Question UI Simplification (Desktop & Mobile) --- */
.cs-panel-step-2 .cs-form-section, 
.cs-panel-step-3 .cs-form-section {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.cs-question-group {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-top: 20px !important;
}

.cs-question-item {
    background: #fff !important;
    border: 1px solid #edf2f7 !important;
    border-radius: 24px !important;
    padding: 30px !important;
    margin-bottom: 25px !important;
    box-shadow: 0 15px 40px rgba(13, 31, 56, 0.05) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.cs-question-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(13, 31, 56, 0.08) !important;
}

.cs-back-link.cs-btn-prev {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    background: #f1f5f9 !important;
    border: 1px solid #e2e8f0 !important;
    padding: 12px 20px !important;
    border-radius: 14px !important;
    color: #475569 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    margin-bottom: 25px !important;
    text-decoration: none !important;
    cursor: pointer;
}

.cs-back-link.cs-btn-prev:hover {
    background: #e2e8f0 !important;
    color: #1e293b !important;
}

.cs-question-item .question-text {
    font-size: 18px !important;
    margin-bottom: 20px !important;
    color: #1e293b !important;
}


/* --- In-Place Selection UI (Restricted to Form Area) --- */
.cihaz-satelpa-form {
    position: relative !important;
}

@media (min-width: 769px) {
    .cs-selection-overlay {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 1000 !important;
        display: none; /* JS control handles this */
        border-radius: 24px;
        overflow: hidden;
    }

    .cs-overlay-backdrop {
        position: absolute !important;
        border-radius: 24px;
    }

    .cs-overlay-content {
        position: relative !important;
        width: 90% !important;
        max-width: 550px !important;
        margin: 40px auto !important;
        box-shadow: 0 15px 50px rgba(0,0,0,0.15) !important;
    }
}


/* --- Premium Bottom Sheet UI (Slide Up from Bottom) --- */
.cs-selection-overlay {
    display: none;
    align-items: flex-end !important;
    justify-content: center !important;
    padding: 0 !important;
}

.cs-overlay-content {
    margin-top: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 28px 28px 0 0 !important;
    max-height: 85% !important;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.1) !important;
    animation: csOverlaySheetSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

@keyframes csOverlaySheetSlideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@media (min-width: 769px) {
    .cs-overlay-content {
        max-width: 100% !important; /* Stay within form width */
        border-bottom-left-radius: 24px !important; /* Match form corners if it fits */
        border-bottom-right-radius: 24px !important;
    }
}

.cs-overlay-header {
    border-bottom: 1px solid #f1f5f9 !important;
    padding: 20px 25px !important;
    background: #fff !important;
    position: sticky;
    top: 0;
    z-index: 10;
}

/* Scroll list area improvement */
.cs-overlay-list {
    padding-bottom: 40px !important;
}


/* --- Force Bottom-Up Positioning --- */
.cs-selection-overlay {
    display: none;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    z-index: 2000 !important;
}

.cs-overlay-content {
    position: relative !important;
    margin-top: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 30px 30px 0 0 !important;
    bottom: 0 !important;
    box-shadow: 0 -15px 50px rgba(0,0,0,0.12) !important;
}

/* Ensure the dark backdrop also covers exactly the same area */
.cs-overlay-backdrop {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}


/* --- Fix for Bottom-Sheet Positioning (Forcing Flex-End) --- */
.cs-selection-overlay[style*=" display: block\] {
 display: flex !important;
 flex-direction: column !important;
 justify-content: flex-end !important;
 align-items: center !important;
}

.cs-overlay-content {
 position: relative !important;
 bottom: 0 !important;
 margin-bottom: 0 !important;
 border-radius: 30px 30px 0 0 !important;
}


/* --- Premium Mobile Floating Price Bar --- */
@media (max-width: 768px) {
    .cs-mobile-price-bar {
        position: fixed !important;
        left: 15px !important;
        right: 15px !important;
        bottom: 20px !important;
        width: auto !important;
        height: auto !important;
        background: rgba(255, 255, 255, 0.96) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        border-radius: 24px !important;
        padding: 16px 24px !important;
        box-shadow: 0 15px 45px rgba(0,0,0,0.15) !important;
        border: 1px solid rgba(255,255,255,0.4) !important;
        z-index: 10000 !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 15px !important;
    }

    .cs-mpb-info {
        display: flex !important;
        flex-direction: column !important;
        flex: 1 !important;
    }

    .cs-mpb-label {
        font-size: 10px !important;
        font-weight: 700 !important;
        color: #94a3b8 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.8px !important;
        margin-bottom: 3px !important;
    }

    .cs-mpb-price {
        font-size: 22px !important;
        font-weight: 800 !important;
        color: #1e293b !important;
        line-height: 1 !important;
    }

    .cs-mpb-btn {
        background: #059669 !important;
        color: #fff !important;
        border: none !important;
        padding: 14px 30px !important;
        border-radius: 16px !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        box-shadow: 0 8px 20px rgba(5, 150, 105, 0.25) !important;
        white-space: nowrap !important;
        transition: transform 0.2s active !important;
    }
    
    .cs-mpb-btn:active {
        transform: scale(0.95) !important;
    }
}

