/* GI Landings – főzősuli és workshop oldalak
   A színek és betűk az Elementor globális változóiból jönnek, így követik az oldal arculatát. */

.sfz,
.sfz-cards,
.sfz-empty {
	--sfz-green: var(--e-global-color-primary, #6ea91b);
	--sfz-green-dark: #4c7a0f;
	--sfz-green-deep: #2f4d08;
	--sfz-green-soft: #eef6e2;
	--sfz-bg: var(--e-global-color-secondary, #f5fbff);
	--sfz-orange: #f78727;
	--sfz-orange-dark: #dd6d10;
	--sfz-sun: #ffd873;
	--sfz-ink: #17210d;
	--sfz-muted: #56634b;
	--sfz-line: #d5e3c8;
	--sfz-danger: #b3261e;
	--sfz-display: "Abril Fatface", Georgia, "Times New Roman", serif;
	--sfz-body: "Baloo 2", system-ui, -apple-system, "Segoe UI", sans-serif;
	--sfz-radius: 28px;
	--sfz-shadow: 0 24px 60px -32px rgba(47, 77, 8, 0.45);
}

/* ---------- A téma kereteinek kikapcsolása az esemény oldalán ---------- */

.sfz-single #page {
	max-width: none;
	padding: 0;
}

.sfz-single .site-content {
	display: block;
}

.sfz-single .sfz-primary,
.sfz-single .site-main.sfz {
	width: 100%;
	margin: 0;
	padding: 0;
}

/* ---------- Alapok ---------- */

.sfz {
	overflow-x: clip;
	background: var(--sfz-bg);
	color: var(--sfz-ink);
	font-family: var(--sfz-body);
	font-size: 18px;
	line-height: 1.65;
}

.sfz *,
.sfz *::before,
.sfz *::after,
.sfz-cards *,
.sfz-cards *::before,
.sfz-cards *::after {
	box-sizing: border-box;
}

.sfz-wrap {
	width: min(100% - 40px, 1160px);
	margin-inline: auto;
}

.sfz-icon {
	flex: none;
	width: 1.25em;
	height: 1.25em;
}

.sfz-testbar {
	margin: 0;
	padding: 8px 20px;
	background: #fff4c2;
	color: #5c4a00;
	font-size: 14px;
	text-align: center;
}

/* ---------- Gombok ---------- */

.sfz .sfz-btn,
.sfz-cards .sfz-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 15px 30px;
	border: 0;
	border-radius: 999px;
	background: var(--sfz-orange);
	color: #fff;
	font-family: var(--sfz-body);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	box-shadow: 0 12px 24px -12px rgba(221, 109, 16, 0.8);
	transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.sfz .sfz-btn:hover,
.sfz .sfz-btn:focus-visible,
.sfz-cards .sfz-btn:hover,
.sfz-cards .sfz-btn:focus-visible {
	background: var(--sfz-orange-dark);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 16px 28px -12px rgba(221, 109, 16, 0.9);
}

.sfz .sfz-btn:focus-visible,
.sfz-cards .sfz-btn:focus-visible {
	outline: 3px solid var(--sfz-green-deep);
	outline-offset: 3px;
}

.sfz .sfz-btn .sfz-icon {
	transition: transform 0.2s ease;
}

.sfz .sfz-btn:hover .sfz-icon {
	transform: translateX(4px);
}

.sfz .sfz-btn--light {
	background: #fff;
	color: var(--sfz-green-dark);
	box-shadow: none;
}

.sfz .sfz-btn--light:hover,
.sfz .sfz-btn--light:focus-visible {
	background: var(--sfz-green-soft);
	color: var(--sfz-green-deep);
	box-shadow: none;
}

/* ---------- Hero ---------- */

.sfz-hero {
	position: relative;
	padding: clamp(28px, 5vw, 72px) 0 clamp(36px, 5vw, 72px);
	isolation: isolate;
}

/* Napsugarak a háttérben – „Süt a Nap” */
.sfz-hero::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: -30vw;
	right: -24vw;
	width: min(70vw, 900px);
	aspect-ratio: 1;
	border-radius: 50%;
	background:
		radial-gradient(circle, rgba(255, 216, 115, 0.55) 0 18%, rgba(255, 216, 115, 0) 19%),
		repeating-conic-gradient(from 0deg, rgba(255, 216, 115, 0.28) 0 6deg, rgba(255, 216, 115, 0) 6deg 18deg);
	-webkit-mask-image: radial-gradient(circle, #000 0 30%, transparent 68%);
	mask-image: radial-gradient(circle, #000 0 30%, transparent 68%);
	pointer-events: none;
}

.sfz-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 440px) minmax(0, 1fr);
	gap: clamp(32px, 6vw, 84px);
	align-items: center;
}

.sfz-hero__grid > :only-child {
	grid-column: 1 / -1;
	max-width: 820px;
}

.sfz-hero__media {
	position: relative;
	margin: 0;
	transform: rotate(-2deg);
}

.sfz-hero__media::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	border-radius: var(--sfz-radius);
	background: var(--sfz-green);
	transform: translate(16px, 18px) rotate(4deg);
}

.sfz .sfz-hero__img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 78vh;
	object-fit: cover;
	border-radius: var(--sfz-radius);
	box-shadow: var(--sfz-shadow);
}

.sfz .sfz-eyebrow {
	margin: 0 0 14px;
	color: var(--sfz-muted);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.sfz .sfz-eyebrow a {
	color: var(--sfz-green-dark);
	text-decoration: none;
}

.sfz .sfz-eyebrow a:hover {
	text-decoration: underline;
}

.sfz .sfz-badge {
	display: inline-block;
	margin: 0 0 16px;
	padding: 6px 16px;
	border-radius: 999px;
	background: var(--sfz-ink);
	color: #fff;
	font-size: 15px;
	font-weight: 600;
}

.sfz .sfz-badge--full {
	background: var(--sfz-orange-dark);
}

.sfz .sfz-title {
	margin: 0 0 clamp(20px, 3vw, 32px);
	color: var(--sfz-green);
	font-family: var(--sfz-display);
	font-size: clamp(32px, 4.3vw, 56px);
	font-weight: 400;
	line-height: 1.08;
	letter-spacing: -0.01em;
	text-wrap: balance;
	overflow-wrap: anywhere;
}

.sfz-facts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin: 0 0 clamp(24px, 3vw, 36px);
}

.sfz-fact {
	display: grid;
	grid-template-columns: 48px 1fr;
	column-gap: 14px;
	align-content: center;
	padding: 14px 16px;
	border: 1.5px solid var(--sfz-line);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.85);
}

/* Páratlan számú csempénél az utolsó (a helyszín) teljes sort kap. */
.sfz-fact:last-child:nth-child(odd) {
	grid-column: 1 / -1;
}

.sfz-fact__icon {
	display: grid;
	grid-row: 1 / span 2;
	align-self: center;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--sfz-green-soft);
	color: var(--sfz-green-dark);
	font-size: 20px;
}

.sfz .sfz-fact dt {
	margin: 0;
	color: var(--sfz-muted);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.1em;
	line-height: 1.3;
	text-transform: uppercase;
}

.sfz .sfz-fact dd {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
}

/* ---------- Tartalom ---------- */

.sfz .sfz-content {
	max-width: 860px;
	margin: 0 auto clamp(56px, 8vw, 96px);
	padding: clamp(24px, 5vw, 60px);
	border-radius: var(--sfz-radius);
	background: #fff;
	box-shadow: var(--sfz-shadow);
	font-size: clamp(17px, 1.4vw, 19px);
}

.sfz .sfz-content > :first-child {
	margin-top: 0;
}

.sfz .sfz-content > :last-child {
	margin-bottom: 0;
}

.sfz .sfz-content h2,
.sfz .sfz-content h3,
.sfz .sfz-content h4 {
	margin: 1.8em 0 0.6em;
	color: var(--sfz-green-dark);
	font-family: var(--sfz-body);
	font-weight: 700;
	line-height: 1.25;
	text-wrap: balance;
}

.sfz .sfz-content h2 {
	font-size: clamp(22px, 2.4vw, 28px);
}

.sfz .sfz-content h2::after {
	content: "";
	display: block;
	width: 54px;
	height: 4px;
	margin-top: 10px;
	border-radius: 4px;
	background: var(--sfz-orange);
}

.sfz .sfz-content h3 {
	font-size: clamp(19px, 2vw, 23px);
}

.sfz .sfz-content h4 {
	font-size: 18px;
}

.sfz .sfz-content p {
	margin: 0 0 1.1em;
}

.sfz .sfz-content ul,
.sfz .sfz-content ol {
	margin: 0 0 1.2em 1.2em;
	padding: 0;
}

.sfz .sfz-content li {
	margin-bottom: 0.4em;
}

.sfz .sfz-content a {
	color: var(--sfz-green-dark);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.sfz .sfz-content img {
	max-width: 100%;
	height: auto;
	border-radius: 18px;
}

/* ---------- Jelentkezési sáv ---------- */

.sfz-signup {
	position: relative;
	padding: clamp(96px, 11vw, 150px) 0;
	background:
		radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.14), transparent 38%),
		radial-gradient(circle at 88% 82%, rgba(47, 77, 8, 0.35), transparent 45%),
		var(--sfz-green);
	color: #fff;
	/* A ragadós fejléc ne takarja ki a szakasz elejét, amikor a gomb ide ugrik. */
	scroll-margin-top: 90px;
}

.sfz-wave {
	position: absolute;
	left: 0;
	width: 100%;
	height: clamp(30px, 5vw, 70px);
	fill: var(--sfz-bg);
}

.sfz-wave--top {
	top: -1px;
}

.sfz-wave--bottom {
	bottom: -1px;
}

.sfz-signup__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	gap: clamp(28px, 5vw, 72px);
	align-items: start;
}

.sfz-signup__intro {
	position: sticky;
	top: 120px;
	font-size: 19px;
}

.sfz .sfz-signup__title {
	margin: 0 0 16px;
	color: #fff;
	font-family: var(--sfz-display);
	font-size: clamp(30px, 3.6vw, 46px);
	font-weight: 400;
	line-height: 1.12;
	text-wrap: balance;
}

.sfz-signup__intro p {
	margin: 0 0 24px;
}

.sfz .sfz-signup__recap {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 20px 22px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.16);
	list-style: none;
	font-weight: 600;
	line-height: 1.4;
}

.sfz-signup__recap li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.sfz-signup__recap .sfz-icon {
	margin-top: 2px;
}

.sfz-signup__card {
	padding: clamp(22px, 4vw, 44px);
	border-radius: var(--sfz-radius);
	background: #fff;
	color: var(--sfz-ink);
	box-shadow: 0 30px 70px -30px rgba(23, 33, 13, 0.6);
}

.sfz-signup__closed {
	text-align: center;
	font-size: 19px;
}

.sfz-signup__closed > p {
	max-width: 640px;
	margin: 0 auto 28px;
}

.sfz .sfz-signup__more {
	margin-top: 36px;
}

/* ---------- Űrlap ---------- */

.sfz .sfz-form {
	display: grid;
	gap: 26px;
	margin: 0;
}

.sfz .sfz-fieldset {
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

.sfz .sfz-legend {
	width: 100%;
	margin: 0 0 14px;
	padding: 0 0 8px;
	border-bottom: 2px solid var(--sfz-green-soft);
	color: var(--sfz-green-dark);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.sfz .sfz-sublegend {
	margin: 18px 0 10px;
	color: var(--sfz-muted);
	font-size: 15px;
	font-weight: 700;
}

.sfz-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.sfz-grid[hidden] {
	display: none;
}

.sfz-grid--address {
	grid-template-columns: 150px minmax(0, 1fr);
}

.sfz-field--wide {
	grid-column: 1 / -1;
}

.sfz-field {
	min-width: 0;
}

.sfz .sfz-label {
	display: block;
	margin: 0 0 6px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3;
}

.sfz-req {
	color: var(--sfz-orange-dark);
}

.sfz-optional {
	color: var(--sfz-muted);
	font-weight: 500;
}

.sfz .sfz-input {
	display: block;
	width: 100%;
	min-height: 52px;
	margin: 0;
	padding: 12px 16px;
	border: 1.5px solid var(--sfz-line);
	border-radius: 14px;
	background: #fbfdf8;
	color: var(--sfz-ink);
	font-family: var(--sfz-body);
	font-size: 17px;
	line-height: 1.4;
	box-shadow: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.sfz .sfz-input--area {
	min-height: 96px;
	resize: vertical;
}

.sfz .sfz-input::placeholder {
	color: #9aa690;
	opacity: 1;
}

.sfz .sfz-input:hover {
	border-color: #b9cfa5;
}

.sfz .sfz-input:focus {
	border-color: var(--sfz-green);
	background: #fff;
	outline: 0;
	box-shadow: 0 0 0 4px rgba(110, 169, 27, 0.2);
}

.sfz .is-invalid .sfz-input {
	border-color: var(--sfz-danger);
	background: #fff7f6;
}

.sfz .sfz-error {
	margin: 6px 0 0;
	color: var(--sfz-danger);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;
}

.sfz .sfz-hint {
	margin: 12px 0 0;
	color: var(--sfz-muted);
	font-size: 15px;
}

.sfz [hidden] {
	display: none !important;
}

/* Rejtett csapdamező a robotoknak */
.sfz-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* Létszám – választható „pirulák” */
.sfz-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.sfz-pill,
.sfz-switch__opt {
	position: relative;
	margin: 0;
	cursor: pointer;
}

.sfz-pill input,
.sfz-switch__opt input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
}

.sfz-pill span {
	display: block;
	min-width: 72px;
	padding: 11px 20px;
	border: 1.5px solid var(--sfz-line);
	border-radius: 999px;
	background: #fbfdf8;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	transition: all 0.15s ease;
}

.sfz-pill:hover span {
	border-color: var(--sfz-green);
}

.sfz-pill input:checked + span {
	border-color: var(--sfz-green);
	background: var(--sfz-green);
	color: #fff;
	box-shadow: 0 8px 18px -10px rgba(47, 77, 8, 0.9);
}

.sfz-pill input:focus-visible + span,
.sfz-switch__opt input:focus-visible + span {
	outline: 3px solid var(--sfz-green-deep);
	outline-offset: 2px;
}

.sfz .is-invalid .sfz-pill span {
	border-color: var(--sfz-danger);
}

/* Magánszemély / cég kapcsoló */
.sfz-switch {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4px;
	padding: 5px;
	border-radius: 999px;
	background: var(--sfz-green-soft);
}

.sfz-switch__opt span {
	display: block;
	padding: 11px 12px;
	border-radius: 999px;
	color: var(--sfz-muted);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	transition: all 0.18s ease;
}

.sfz-switch__opt input:checked + span {
	background: #fff;
	color: var(--sfz-green-deep);
	box-shadow: 0 6px 16px -8px rgba(47, 77, 8, 0.6);
}

.sfz-switch + .sfz-grid {
	margin-top: 16px;
}

/* Elfogadó jelölőnégyzet */
.sfz .sfz-check {
	display: grid;
	grid-template-columns: 26px 1fr;
	gap: 12px;
	align-items: start;
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
	cursor: pointer;
}

.sfz .sfz-check input {
	appearance: none;
	-webkit-appearance: none;
	display: grid;
	place-content: center;
	width: 26px;
	height: 26px;
	margin: 0;
	border: 1.5px solid var(--sfz-line);
	border-radius: 8px;
	background: #fbfdf8;
	cursor: pointer;
	transition: all 0.15s ease;
}

.sfz .sfz-check input::after {
	content: "";
	width: 12px;
	height: 7px;
	border-left: 3px solid #fff;
	border-bottom: 3px solid #fff;
	transform: rotate(-45deg) scale(0);
	transform-origin: center 40%;
	transition: transform 0.15s ease;
}

.sfz .sfz-check input:checked {
	border-color: var(--sfz-green);
	background: var(--sfz-green);
}

.sfz .sfz-check input:checked::after {
	transform: rotate(-45deg) scale(1);
}

.sfz .sfz-check input:focus-visible {
	outline: 3px solid var(--sfz-green-deep);
	outline-offset: 2px;
}

.sfz .is-invalid .sfz-check input {
	border-color: var(--sfz-danger);
}

.sfz .sfz-check a {
	color: var(--sfz-green-dark);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.sfz .sfz-form__status {
	margin: 0;
	padding: 14px 18px;
	border-radius: 14px;
	background: #fdecea;
	color: #7f1d17;
	font-size: 16px;
	font-weight: 600;
}

.sfz .sfz-btn--submit {
	position: relative;
	width: 100%;
	padding: 18px 30px;
	font-size: 19px;
}

.sfz .sfz-btn--submit[disabled] {
	cursor: progress;
	transform: none;
	opacity: 0.85;
}

.sfz-btn__spinner {
	display: none;
	width: 20px;
	height: 20px;
	border: 3px solid rgba(255, 255, 255, 0.45);
	border-top-color: #fff;
	border-radius: 50%;
	animation: sfz-spin 0.7s linear infinite;
}

.sfz-form.is-sending .sfz-btn__spinner {
	display: block;
}

/* Sikeres jelentkezés */
.sfz-success {
	padding: clamp(12px, 3vw, 28px) 0;
	text-align: center;
	outline: 0;
}

.sfz-success__icon {
	display: grid;
	place-items: center;
	width: 84px;
	height: 84px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: var(--sfz-green);
	color: #fff;
	font-size: 36px;
	animation: sfz-pop 0.5s cubic-bezier(0.2, 1.4, 0.4, 1) both;
}

.sfz-success__icon .sfz-icon {
	stroke-width: 2.6;
	stroke-dasharray: 24;
	stroke-dashoffset: 24;
	animation: sfz-draw 0.45s 0.3s ease forwards;
}

.sfz .sfz-success__title {
	margin: 0 0 12px;
	color: var(--sfz-green-dark);
	font-family: var(--sfz-display);
	font-size: clamp(26px, 3vw, 34px);
	font-weight: 400;
	line-height: 1.2;
}

.sfz-success p {
	margin: 0 0 10px;
	overflow-wrap: anywhere;
}

/* ---------- Eseménykártyák ---------- */

.sfz-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 340px));
	gap: 28px;
	justify-content: center;
	font-family: var(--sfz-body);
	text-align: left;
}

.sfz-card {
	--sfz-card-bg: var(--sfz-green);
	--sfz-card-ink: #fff;
	display: flex;
	flex-direction: column;
	padding: 18px;
	border-radius: var(--sfz-radius);
	background: var(--sfz-card-bg);
	color: var(--sfz-card-ink);
	box-shadow: var(--sfz-shadow);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sfz-card:hover,
.sfz-card:focus-within {
	transform: translateY(-6px);
	box-shadow: 0 32px 60px -30px rgba(47, 77, 8, 0.7);
}

.sfz-signup .sfz-card {
	--sfz-card-bg: #fff;
	--sfz-card-ink: var(--sfz-ink);
}

.sfz-card__media {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.18);
	aspect-ratio: 4 / 5;
}

.sfz-cards .sfz-card__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	transition: transform 0.5s ease;
}

.sfz-card:hover .sfz-card__img {
	transform: scale(1.04);
}

.sfz-card--past .sfz-card__img {
	filter: saturate(0.55);
}

.sfz-card__type {
	position: absolute;
	top: 12px;
	right: 12px;
	padding: 5px 12px;
	border-radius: 999px;
	background: var(--sfz-orange);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.3;
	text-transform: uppercase;
	box-shadow: 0 8px 18px -8px rgba(0, 0, 0, 0.45);
}

.sfz-card__date {
	position: absolute;
	top: 12px;
	left: 12px;
	display: grid;
	min-width: 58px;
	padding: 8px 10px 6px;
	border-radius: 14px;
	background: #fff;
	color: var(--sfz-green-dark);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.1;
	text-align: center;
	text-transform: uppercase;
	box-shadow: 0 8px 18px -8px rgba(0, 0, 0, 0.45);
}

.sfz-card__date strong {
	color: var(--sfz-ink);
	font-family: var(--sfz-display);
	font-size: 26px;
	font-weight: 400;
	letter-spacing: 0;
}

.sfz-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 14px;
	padding: 18px 6px 6px;
}

.sfz-cards .sfz-card__title {
	margin: 0;
	font-family: var(--sfz-display);
	font-size: 23px;
	font-weight: 400;
	line-height: 1.15;
	text-wrap: balance;
	overflow-wrap: anywhere;
}

.sfz-cards .sfz-card__title a {
	color: inherit;
	text-decoration: none;
}

.sfz-signup .sfz-card__title {
	color: var(--sfz-green-dark);
}

.sfz-cards .sfz-card__facts {
	display: grid;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.35;
}

.sfz-card__facts li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

.sfz-cards .sfz-btn--card {
	align-self: flex-start;
	margin-top: auto;
	padding: 12px 26px;
	font-size: 17px;
}

.sfz-empty {
	font-family: var(--sfz-body);
	text-align: center;
}

/* ---------- Mobilon rögzített jelentkezés gomb ---------- */

.sfz .sfz-sticky-cta {
	position: fixed;
	right: 12px;
	bottom: calc(12px + env(safe-area-inset-bottom, 0px));
	left: 12px;
	z-index: 90;
	display: none;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 8px 8px 8px 22px;
	border-radius: 999px;
	background: var(--sfz-green-deep);
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	box-shadow: 0 18px 40px -14px rgba(0, 0, 0, 0.6);
	transform: translateY(140%);
	transition: transform 0.3s ease;
}

.sfz .sfz-sticky-cta strong {
	padding: 12px 22px;
	border-radius: 999px;
	background: var(--sfz-orange);
	font-weight: 700;
}

.sfz .sfz-sticky-cta.is-visible {
	transform: none;
}

/* ---------- Belépő animáció ---------- */

@media (prefers-reduced-motion: no-preference) {
	.sfz-hero__media {
		animation: sfz-poster 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
	}

	.sfz-hero__body > * {
		animation: sfz-rise 0.6s ease both;
	}

	.sfz-hero__body > :nth-child(2) { animation-delay: 0.08s; }
	.sfz-hero__body > :nth-child(3) { animation-delay: 0.16s; }
	.sfz-hero__body > :nth-child(4) { animation-delay: 0.24s; }
	.sfz-hero__body > :nth-child(5) { animation-delay: 0.32s; }

	.sfz-hero::before {
		animation: sfz-sun 90s linear infinite;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sfz *,
	.sfz-cards * {
		animation: none !important;
		transition: none !important;
	}

	.sfz-success__icon .sfz-icon {
		stroke-dashoffset: 0;
	}
}

@keyframes sfz-rise {
	from { opacity: 0; transform: translateY(18px); }
	to { opacity: 1; transform: none; }
}

@keyframes sfz-poster {
	from { opacity: 0; transform: rotate(-7deg) translateY(28px) scale(0.96); }
	to { opacity: 1; transform: rotate(-2deg); }
}

@keyframes sfz-sun {
	to { transform: rotate(360deg); }
}

@keyframes sfz-spin {
	to { transform: rotate(360deg); }
}

@keyframes sfz-pop {
	from { opacity: 0; transform: scale(0.4); }
	to { opacity: 1; transform: none; }
}

@keyframes sfz-draw {
	to { stroke-dashoffset: 0; }
}

/* ---------- Kisebb képernyők ---------- */

@media (max-width: 960px) {
	.sfz-signup__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.sfz-signup__intro {
		position: static;
		text-align: center;
	}

	.sfz .sfz-signup__recap {
		display: inline-grid;
		text-align: left;
	}
}

@media (max-width: 860px) {
	.sfz-hero__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.sfz-hero__media {
		width: min(100%, 400px);
		margin-inline: auto;
	}

	.sfz-hero__media::before {
		transform: translate(10px, 12px) rotate(3deg);
	}

	.sfz .sfz-btn--cta {
		width: 100%;
	}

	.sfz .sfz-sticky-cta {
		display: flex;
	}
}

@media (max-width: 560px) {
	.sfz {
		font-size: 17px;
	}

	.sfz-wrap {
		width: min(100% - 28px, 1160px);
	}

	.sfz-facts,
	.sfz-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.sfz-grid--address {
		grid-template-columns: 120px minmax(0, 1fr);
	}

	.sfz-pill {
		flex: 1 1 28%;
	}

	.sfz-pill span {
		min-width: 0;
		padding-inline: 10px;
	}

	.sfz-switch__opt span {
		font-size: 15px;
		padding-inline: 6px;
	}

	.sfz-cards {
		grid-template-columns: minmax(0, 1fr);
	}
}
