/* Elállás a szerződéstől – Gyémánt Kézimunka */
#elallas-wrap {
	max-width: 860px;
	margin: 10px auto 40px auto;
	padding: 0 5px;
}
.ell-page-title {
	font-size: 34px;
	margin-bottom: 8px;
}
.ell-page-subtitle {
	color: #5c4a3d;
	font-size: 14px;
	margin-bottom: 20px;
}
.ell-info-box {
	background: #f6f4e8;
	border-left: 4px solid #80a640;
	border-radius: 3px;
	padding: 14px 18px;
	margin-bottom: 24px;
	font-size: 13px;
	color: #444;
	line-height: 1.7;
}
.ell-info-box strong { color: #6d8f36; }

.ell-section {
	background: #fff;
	border: 1px solid #dcd7cc;
	border-radius: 4px;
	margin-bottom: 20px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.ell-section-header {
	background: #faf8f2;
	border-bottom: 1px solid #dcd7cc;
	padding: 12px 18px;
	display: flex;
	align-items: center;
	gap: 12px;
}
.ell-section-header .ell-section-icon {
	width: 30px;
	height: 30px;
	background: #80a640;
	border-radius: 50%;
	color: #fff;
	font-weight: bold;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	line-height: 30px;
	text-align: center;
}
.ell-section-header .ell-section-icon--optional {
	background: #816f5b;
}
.ell-section-header h3 {
	margin: 0;
	font-size: 16px;
	color: #5c4a3d;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}
.ell-section-body {
	padding: 20px 18px 8px 18px;
}

.ell-form-group {
	margin-bottom: 16px;
	position: relative;
}
.ell-form-group label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #5c4a3d;
	margin-bottom: 6px;
}
.ell-form-group label .req {
	color: #c00;
	margin-left: 2px;
}
.ell-form-group label .opt {
	color: #888;
	font-weight: normal;
	font-size: 12px;
	margin-left: 4px;
}
.ell-input {
	width: 100%;
	border: 1px solid #c9b99a;
	border-radius: 5px;
	padding: 10px 12px;
	font-size: 14px;
	color: #333;
	background: #fff;
	transition: border-color .2s, box-shadow .2s;
	box-sizing: border-box;
}
.ell-input:focus {
	outline: none;
	border-color: #80a640;
	box-shadow: 0 0 0 3px rgba(128,166,64,.15);
}
.ell-input.is-valid {
	border-color: #80a640;
	background: #fafff5;
}
.ell-input.is-invalid {
	border-color: #c00;
	background: #fff8f8;
}
textarea.ell-input {
	resize: vertical;
	min-height: 90px;
}
.ell-feedback {
	font-size: 12px;
	margin-top: 4px;
	min-height: 16px;
	display: block;
}
.ell-feedback.error { color: #c00; }

.ell-radio-group {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 12px;
}
.ell-radio-option {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	padding: 10px 16px;
	border: 2px solid #dcd7cc;
	border-radius: 5px;
	font-size: 14px;
	color: #5c4a3d;
	background: #faf8f2;
	transition: all .2s;
	user-select: none;
}
.ell-radio-option:hover {
	border-color: #80a640;
	background: #f6f4e8;
	color: #6d8f36;
}
.ell-radio-option.selected {
	border-color: #80a640;
	background: #f0f7e6;
	color: #6d8f36;
	font-weight: 600;
}
.ell-radio-option input[type="radio"] {
	margin: 0;
	cursor: pointer;
	accent-color: #80a640;
}
#termekek-leiras-wrap {
	display: none;
	animation: ellFadeIn .25s ease;
}
@keyframes ellFadeIn {
	from { opacity: 0; transform: translateY(-6px); }
	to   { opacity: 1; transform: translateY(0); }
}
.ell-hint {
	font-size: 11px;
	color: #888;
	margin-top: 4px;
}

.ell-submit-wrap {
	text-align: center;
	padding: 10px 0 24px 0;
}
.ell-submit-btn {
	display: inline-block;
	background: linear-gradient(135deg, #80a640 0%, #6d8f36 100%);
	color: #fff !important;
	border: none;
	border-radius: 5px;
	padding: 14px 36px;
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: opacity .2s, transform .1s;
	position: relative;
	min-width: 280px;
}
.ell-submit-btn:hover:not(:disabled) {
	opacity: 0.92;
}
.ell-submit-btn:active:not(:disabled) {
	transform: scale(.98);
}
.ell-submit-btn:disabled {
	background: #aaa;
	cursor: not-allowed;
}
.ell-submit-btn .btn-spinner {
	display: none;
	width: 18px;
	height: 18px;
	border: 3px solid rgba(255,255,255,.4);
	border-top-color: #fff;
	border-radius: 50%;
	animation: ellSpin .7s linear infinite;
	position: absolute;
	left: 16px;
	top: 50%;
	margin-top: -9px;
}
.ell-submit-btn.loading .btn-spinner { display: block; }
.ell-submit-btn.loading .btn-text { margin-left: 22px; }
@keyframes ellSpin { to { transform: rotate(360deg); } }

#ell-overlay {
	display: none;
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(92,74,61,.35);
	z-index: 9999;
	align-items: center;
	justify-content: center;
}
#ell-overlay.visible { display: flex; }
.ell-overlay-spinner {
	width: 52px;
	height: 52px;
	border: 5px solid rgba(255,255,255,.3);
	border-top-color: #80a640;
	border-radius: 50%;
	animation: ellSpin .8s linear infinite;
}

#ell-form-error {
	display: none;
	background: #fff0f0;
	border: 1px solid #c00;
	border-radius: 5px;
	padding: 12px 16px;
	margin-bottom: 18px;
	color: #900;
	font-size: 14px;
}

#ell-success-banner {
	display: none;
	background: #f0f7e6;
	border: 2px solid #80a640;
	border-radius: 5px;
	padding: 28px 24px;
	text-align: center;
	margin-top: 20px;
	animation: ellFadeIn .4s ease;
}
#ell-success-banner .ell-success-icon {
	font-size: 48px;
	color: #80a640;
	margin-bottom: 10px;
	line-height: 1;
}
#ell-success-banner h3 {
	color: #6d8f36;
	margin: 0 0 10px 0;
	font-size: 22px;
}
#ell-success-banner p {
	color: #444;
	font-size: 14px;
	margin: 0;
}
#ell-success-banner .ell-ref {
	display: inline-block;
	margin-top: 12px;
	background: #80a640;
	color: #fff;
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: bold;
}

.ell-required-note {
	font-size: 12px;
	color: #888;
	margin-bottom: 16px;
}
.ell-required-note span { color: #c00; }
.ell-privacy-note {
	font-size: 12px;
	color: #888;
	margin-top: 12px;
}
.ell-privacy-note a { color: #80a640; }

@media (max-width: 767px) {
	.ell-page-title { font-size: 26px; }
	.ell-submit-btn { min-width: 100%; padding: 12px 20px; font-size: 15px; }
	.ell-radio-option { width: 100%; }
}
