/**
 * Okienko „Zadaj pytanie” nad nazwą rozkładu + panel „karta w Twoim pytaniu”.
 * Stylistyka strony: karty pozycji (granat + obwódka), Cinzel, złoto #c9a84c/#e3cd8a.
 */

.tq {
	position: relative;
	width: 100%;
	max-width: 46rem;
	margin: 0 auto 2.4rem !important;
	padding: 1.7rem 1.9rem 2rem;
	text-align: center;
	background: linear-gradient(180deg, rgba(36, 27, 70, 0.55), rgba(16, 16, 42, 0.35));
	border: 1px solid rgba(201, 168, 76, 0.32);
	border-radius: 16px;
	box-shadow: inset 0 0 46px rgba(124, 58, 237, 0.08), 0 12px 32px rgba(0, 0, 0, 0.28);
	transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.tq:focus-within {
	border-color: rgba(227, 205, 138, 0.55);
	box-shadow: inset 0 0 46px rgba(124, 58, 237, 0.1), 0 0 26px rgba(201, 168, 76, 0.14), 0 12px 32px rgba(0, 0, 0, 0.28);
}

.tq__eyebrow {
	display: block;
	font-family: Cinzel, Georgia, serif;
	font-size: 1.05rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: #e3cd8a;
	margin-bottom: 1rem;
	text-shadow: 0 0 24px rgba(201, 168, 76, 0.35);
}

.tq__field {
	position: relative;
	max-width: 38rem;
	margin: 0 auto;
}

.tq__input {
	display: block;
	width: 100%;
	background: transparent;
	border: 0;
	outline: none;
	resize: none;
	overflow: hidden;
	text-align: center;
	font-family: Cinzel, Georgia, serif;
	font-size: 1.15rem;
	line-height: 1.65;
	color: #ece8f7;
	padding: 0.2rem 0.5rem 0.6rem;
}

.tq__input::placeholder {
	color: #6f6b93;
	font-style: italic;
}

/* Złoty włosek: przygaszony w spoczynku, pełny i świecący przy pisaniu. */
.tq__rule {
	height: 1px;
	transform: scaleX(0.55);
	background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.5), transparent);
	transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1), background 0.4s ease, box-shadow 0.4s ease;
}

.tq__field:focus-within .tq__rule,
.tq.is-filled .tq__rule {
	transform: scaleX(1);
	background: linear-gradient(90deg, transparent, #e3cd8a, transparent);
	box-shadow: 0 0 16px rgba(227, 205, 138, 0.3);
}

.tq__hint {
	margin-top: 0.85rem;
	font-size: 0.78rem;
	color: #8b87ab;
	transition: opacity 0.35s ease;
}

.tq.is-filled .tq__hint {
	opacity: 0;
	pointer-events: none;
}

.tq__count {
	position: absolute;
	right: 0.1rem;
	bottom: -1.35rem;
	font-size: 0.7rem;
	color: #7c7a9b;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.tq.is-near-limit .tq__count {
	opacity: 1;
}

/* Ozdobniki w narożach — spójne z gwiazdkami nagłówków strony. */
.tq::before,
.tq::after {
	position: absolute;
	top: 0.9rem;
	font-size: 1rem;
	color: rgba(201, 168, 76, 0.55);
	text-shadow: 0 0 14px rgba(201, 168, 76, 0.4);
	pointer-events: none;
}

.tq::before {
	content: '☾ ✦';
	left: 1.2rem;
}

.tq::after {
	content: '✦ ☽';
	right: 1.2rem;
}

/* ---------- Rozdroże: dwa pola A/B ---------- */

.tq__ab-label {
	display: block;
	margin-top: 0.9rem;
	font-family: Cinzel, Georgia, serif;
	font-size: 0.78rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: #a78bfa;
}

.tq__input--ab {
	font-size: 1.05rem;
	border-bottom: 1px solid rgba(201, 168, 76, 0.25) !important;
}

/* ---------- wybór formy zwracania się ---------- */

.tq__plec {
	margin-top: 1rem;
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.tq__plec-btn {
	cursor: pointer;
	background: transparent;
	border: 1px solid rgba(167, 139, 250, 0.3);
	border-radius: 9999px;
	padding: 0.3rem 0.9rem;
	font-family: Cinzel, Georgia, serif;
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	color: #8b87ab;
	transition: border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.tq__plec-btn:hover {
	color: #cbc6e6;
	border-color: rgba(167, 139, 250, 0.6);
}

.tq__plec-btn.is-active {
	color: #e3cd8a;
	border-color: rgba(201, 168, 76, 0.65);
	box-shadow: 0 0 12px rgba(201, 168, 76, 0.18);
}

/* ---------- „← Wszystkie rozkłady”: spójny z resztą i przy treści ---------- */

.tarot-root a[href="#/"] {
	font-family: Cinzel, Georgia, serif !important;
	letter-spacing: 0.08em;
	color: #e3cd8a !important;
	border-color: rgba(201, 168, 76, 0.5) !important;
	margin-left: max(1rem, calc(50% - 36rem)) !important;
}

/* ---------- wysłanie pytania i wybór drogi ---------- */

.tq__actions {
	margin-top: 1.35rem;
}

.tq__send {
	display: inline-block;
	cursor: pointer;
	border-radius: 9999px;
	border: 1px solid rgba(201, 168, 76, 0.65);
	background: linear-gradient(180deg, rgba(124, 58, 237, 0.32), rgba(124, 58, 237, 0.08));
	padding: 0.8rem 2.3rem;
	font-family: Cinzel, Georgia, serif;
	font-size: 1rem;
	letter-spacing: 0.16em;
	color: #ece8f7;
	transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease, opacity 0.3s ease;
}

.tq__send:hover {
	border-color: #e3cd8a;
	box-shadow: 0 0 22px rgba(201, 168, 76, 0.25);
	transform: translateY(-1px);
}

/* Po przyjęciu pytania przycisk wysyłki znika, pojawia się wybór drogi. */
.tq.is-accepted .tq__actions {
	display: none;
}

.tq.is-accepted {
	border-color: rgba(227, 205, 138, 0.75);
	animation: tqAccept 1.1s ease-out 1;
}

.tq.is-accepted .tq__eyebrow {
	color: #f4e6b8;
	text-shadow: 0 0 30px rgba(227, 205, 138, 0.6);
}

.tq__choice {
	display: none;
	margin-top: 1.3rem;
}

.tq.is-accepted .tq__choice {
	display: block;
	animation: tqFadeUp 0.5s ease-out both;
}

.tq__choice-label {
	font-family: Cinzel, Georgia, serif;
	font-size: 0.85rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #a78bfa;
	margin-bottom: 0.9rem;
}

.tq__choice-btns {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.8rem;
}

.tq__go {
	cursor: pointer;
	border-radius: 9999px;
	padding: 0.75rem 1.9rem;
	font-family: Cinzel, Georgia, serif;
	font-size: 0.95rem;
	letter-spacing: 0.14em;
	color: #cbc6e6;
	border: 1px solid rgba(167, 139, 250, 0.45);
	background: transparent;
	transition: border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.tq__go--auto {
	color: #f4e6b8;
	border-color: rgba(201, 168, 76, 0.7);
	background: linear-gradient(180deg, rgba(201, 168, 76, 0.22), rgba(201, 168, 76, 0.05));
}

.tq__go:hover {
	transform: translateY(-1px);
	border-color: #e3cd8a;
	color: #fff;
	box-shadow: 0 0 20px rgba(201, 168, 76, 0.22);
}

/* Puste pytanie: delikatne potrząśnięcie zamiast komunikatu błędu. */
.tq.is-shake {
	animation: tqShake 0.5s ease-in-out 1;
}

/* ---------- większy stolik Krzyża Celtyckiego ---------- */

.tarot-root .tq-table-big {
	max-width: 52rem !important;
	/* 1/1: kwadrat nie ścina poziomych ram tła tak, jak spłaszczone 4/5. */
	aspect-ratio: 1 / 1 !important;
	/* Luz pod stołem — bez niego dokument kończy się równo z ramą
	   i dolnych ~30 px nie da się doscrollować. */
	margin-bottom: 3rem !important;
}

/* Karty na powiększonym stole: szersze, żeby były czytelne. */
.tarot-root .tq-table-big > div[style*="width"] {
	width: 15% !important;
}

/* Osłona na czas tasowania: bez zdarzeń myszy, żeby nie wywołać błędu bundla. */
.tarot-root.tq-dealing main {
	pointer-events: none !important;
}

/* ---------- panel „ta karta w Twoim pytaniu” ---------- */

/* Kolumna karty w widoku szczegółu jest flex-row — panel MUSI stać POD kartą,
   nie obok. Wymuszenie w CSS działa niezależnie od wersji skryptu w cache. */
.tarot-root div:has(> .tqc) {
	flex-direction: column !important;
	align-items: center !important;
}

.tqc {
	max-width: 36rem;
	margin-left: auto;
	margin-right: auto;
	margin-top: 1.4rem;
	padding: 1.5rem 1.7rem 1.7rem;
	text-align: left;
	background: linear-gradient(180deg, rgba(36, 27, 70, 0.5), rgba(16, 16, 42, 0.3));
	border: 1px solid rgba(201, 168, 76, 0.35);
	border-radius: 16px;
	box-shadow: inset 0 0 40px rgba(124, 58, 237, 0.07);
	animation: tqFadeUp 0.5s ease-out both;
}

.tqc__eyebrow {
	font-family: Cinzel, Georgia, serif;
	font-size: 0.85rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: #e3cd8a;
	margin-bottom: 0.4rem;
	text-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

.tqc__question {
	font-style: italic;
	font-size: 0.9rem;
	color: #a78bfa;
	margin-bottom: 1rem;
}

.tqc__body p {
	color: #d8d4ec;
	font-size: 0.98rem;
	line-height: 1.75;
	margin: 0 0 0.9rem;
}

.tqc__body p:last-child {
	margin-bottom: 0;
}

/* Migotanie w czasie, gdy tarocistka pisze. */
.tqc__body.is-loading {
	display: block;
}

.tqc__bar {
	display: block;
	height: 0.85rem;
	border-radius: 6px;
	margin-bottom: 0.7rem;
	background: linear-gradient(90deg, rgba(124, 58, 237, 0.12) 25%, rgba(201, 168, 76, 0.22) 50%, rgba(124, 58, 237, 0.12) 75%);
	background-size: 200% 100%;
	animation: tqShimmer 1.4s ease-in-out infinite;
}

.tqc__bar:nth-child(2) { width: 92%; animation-delay: 0.15s; }
.tqc__bar:nth-child(3) { width: 76%; animation-delay: 0.3s; }

/* ---------- „Wysłuchaj wróżby” (głos wróżki) ---------- */

.tq-listen {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin: 0.7rem auto 0.4rem;
	cursor: pointer;
	border-radius: 9999px;
	border: 1px solid rgba(201, 168, 76, 0.6);
	background: linear-gradient(180deg, rgba(124, 58, 237, 0.28), rgba(124, 58, 237, 0.06));
	padding: 0.55rem 1.5rem;
	font-family: Cinzel, Georgia, serif;
	font-size: 0.9rem;
	letter-spacing: 0.14em;
	color: #ece8f7;
	box-shadow: inset 0 1px 0 rgba(227, 205, 138, 0.22);
	transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.tq-listen:hover {
	transform: translateY(-1px);
	border-color: #e3cd8a;
	box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

.tq-listen.is-loading .tq-listen__ikona {
	display: inline-block;
	animation: tqSpin 1.2s linear infinite;
}

.tq-listen.is-playing {
	border-color: #e3cd8a;
	color: #e3cd8a;
	box-shadow: 0 0 22px rgba(201, 168, 76, 0.35);
}

.tq-listen.is-err { opacity: 0.45; }

/* ---------- odtwarzacz wróżby: play, iskra na linii czasu, pobranie ---------- */

.tq-player {
	display: flex;
	align-items: center;
	gap: 1rem;
	max-width: 30rem;
	margin: 0.8rem auto 0.5rem;
	padding: 0.75rem 1.1rem;
	border: 1px solid rgba(201, 168, 76, 0.45);
	border-radius: 9999px;
	background:
		radial-gradient(110% 90% at 50% 0%, rgba(124, 58, 237, 0.2), transparent 60%),
		linear-gradient(180deg, rgba(36, 27, 70, 0.85), rgba(15, 14, 40, 0.9));
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(227, 205, 138, 0.18);
	animation: tqFadeUp 0.45s ease-out both;
}

.tq-player__pp,
.tq-player__dl {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	cursor: pointer;
	border-radius: 9999px;
	border: 1px solid rgba(201, 168, 76, 0.6);
	background: linear-gradient(180deg, rgba(124, 58, 237, 0.28), rgba(124, 58, 237, 0.06));
	color: #e3cd8a;
	font-size: 0.85rem;
	line-height: 1;
	text-decoration: none;
	box-shadow: inset 0 1px 0 rgba(227, 205, 138, 0.25);
	transition: box-shadow 0.25s ease, transform 0.2s ease, border-color 0.25s ease;
}

.tq-player__pp:hover,
.tq-player__dl:hover {
	transform: translateY(-1px);
	border-color: #e3cd8a;
	box-shadow: 0 0 18px rgba(201, 168, 76, 0.35);
}

.tq-player__dl { font-size: 1rem; }

.tq-player__srodek { flex: 1 1 auto; min-width: 0; }

/* Linia czasu = zloty wlosek strony; wypelnienie swieci, iskra ✦ jest suwakiem. */
.tq-player__track {
	position: relative;
	height: 14px;
	display: flex;
	align-items: center;
	cursor: pointer;
	touch-action: none;
}

.tq-player__track::before {
	content: '';
	position: absolute;
	left: 0; right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.35), transparent);
	border-radius: 2px;
}

.tq-player__fill {
	position: absolute;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, rgba(201, 168, 76, 0.25), #e3cd8a);
	box-shadow: 0 0 10px rgba(227, 205, 138, 0.45);
	border-radius: 2px;
	pointer-events: none;
}

.tq-player__thumb {
	position: absolute;
	left: 0;
	transform: translateX(-50%);
	color: #f4e6b8;
	font-size: 0.85rem;
	text-shadow: 0 0 12px rgba(227, 205, 138, 0.8);
	pointer-events: none;
	transition: text-shadow 0.25s ease;
}

.tq-player.is-playing .tq-player__thumb {
	animation: tqWaitPulse 1.8s ease-in-out infinite;
}

.tq-player__czas {
	display: flex;
	justify-content: space-between;
	margin-top: 0.2rem;
	font-family: Cinzel, Georgia, serif;
	font-size: 0.68rem;
	letter-spacing: 0.12em;
	color: #a78bfa;
}

@media (max-width: 640px) {
	.tq-player { max-width: 100%; gap: 0.7rem; padding: 0.65rem 0.9rem; }
}

/* ---------- „Poznaj ten rozkład” + modal opisu ---------- */

.tq__poznaj {
	display: inline-block;
	margin-top: 0.8rem;
	cursor: pointer;
	background: transparent;
	border: 0;
	font-family: Cinzel, Georgia, serif;
	font-size: 0.78rem;
	letter-spacing: 0.2em;
	color: #a78bfa;
	text-transform: uppercase;
	transition: color 0.25s ease, text-shadow 0.25s ease;
}

.tq__poznaj:hover {
	color: #e3cd8a;
	text-shadow: 0 0 16px rgba(201, 168, 76, 0.4);
}

#tq-modal {
	position: fixed;
	inset: 0;
	z-index: 99998;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.2rem;
	background: rgba(13, 10, 30, 0.85);
	backdrop-filter: blur(6px);
	animation: tqFadeUp 0.3s ease-out both;
}

.tq-modal__box {
	position: relative;
	width: 100%;
	max-width: 44rem;
	max-height: 86vh;
	overflow-y: auto;
	padding: 2rem 2.2rem;
	background: linear-gradient(180deg, rgba(36, 27, 70, 0.97), rgba(16, 16, 42, 0.97));
	border: 1px solid rgba(201, 168, 76, 0.45);
	border-radius: 18px;
	box-shadow: 0 0 60px rgba(124, 58, 237, 0.25), inset 0 0 46px rgba(124, 58, 237, 0.08);
}

.tq-modal__x {
	position: absolute;
	top: 0.9rem;
	right: 1rem;
	cursor: pointer;
	background: transparent;
	border: 0;
	color: #8b87ab;
	font-size: 1.1rem;
}

.tq-modal__x:hover { color: #e3cd8a; }

.tq-modal__eyebrow {
	font-family: Cinzel, Georgia, serif;
	font-size: 0.8rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: #a78bfa;
	text-align: center;
	margin-bottom: 0.4rem;
}

.tq-modal__tytul {
	font-family: Cinzel, Georgia, serif;
	font-size: 1.5rem;
	color: #e3cd8a;
	text-align: center;
	margin-bottom: 1.1rem;
	text-shadow: 0 0 24px rgba(201, 168, 76, 0.35);
}

.tq-modal__sekcja {
	font-family: Cinzel, Georgia, serif;
	font-size: 0.78rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #c9a84c;
	margin: 1.1rem 0 0.3rem;
}

.tq-modal__tresc p:not(.tq-modal__sekcja):not(.tq-modal__eyebrow) {
	color: #d8d4ec;
	font-size: 0.95rem;
	line-height: 1.7;
}

.tq-modal__poz b { color: #ece8f7; }

/* ---------- slider dopasowanych rozkładów ---------- */

.tq-slider {
	margin-top: 1.6rem;
	overflow: hidden;
	padding: 0.4rem 0.2rem 0.2rem;
}

.tq-slider__tor {
	display: flex;
	transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.tq-slider__karta {
	position: relative;
	flex: 0 0 100%;
	padding: 1.7rem 1.6rem 1.5rem;
	border: 1px solid rgba(201, 168, 76, 0.45);
	border-radius: 16px;
	background:
		radial-gradient(120% 70% at 50% 0%, rgba(124, 58, 237, 0.22), transparent 55%),
		radial-gradient(90% 60% at 50% 105%, rgba(201, 168, 76, 0.1), transparent 60%),
		linear-gradient(180deg, rgba(42, 32, 82, 0.85), rgba(15, 14, 40, 0.92));
	box-shadow:
		0 14px 38px rgba(0, 0, 0, 0.5),
		0 0 30px rgba(124, 58, 237, 0.16),
		inset 0 1px 0 rgba(227, 205, 138, 0.18),
		inset 0 0 46px rgba(9, 7, 24, 0.5);
	text-align: center;
}

/* Zawijasy w narożach karty dopasowania. */
.tq-slider__karta::before,
.tq-slider__karta::after {
	position: absolute;
	top: 0.7rem;
	font-size: 0.95rem;
	color: rgba(201, 168, 76, 0.55);
	text-shadow: 0 0 12px rgba(201, 168, 76, 0.45);
	pointer-events: none;
}

.tq-slider__karta::before { content: '☾ ⋆'; left: 1rem; }
.tq-slider__karta::after { content: '⋆ ☽'; right: 1rem; }

.tq-slider__nazwa {
	font-family: Cinzel, Georgia, serif;
	font-size: 1.25rem;
	color: #e3cd8a;
	text-shadow: 0 0 22px rgba(201, 168, 76, 0.45);
}

/* Ozdobny podział pod nazwą rozkładu. */
.tq-slider__nazwa::after {
	content: '─── ✦ ───';
	display: block;
	margin-top: 0.35rem;
	font-size: 0.7rem;
	letter-spacing: 0.3em;
	color: rgba(167, 139, 250, 0.7);
	text-shadow: 0 0 10px rgba(124, 58, 237, 0.5);
}

.tq-slider__meta {
	font-size: 0.75rem;
	color: #8b87ab;
	margin-bottom: 0.6rem;
}

.tq-slider__sekcja {
	font-family: Cinzel, Georgia, serif;
	font-size: 0.72rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #a78bfa;
	margin-top: 0.7rem;
}

.tq-slider__opis {
	color: #d8d4ec;
	font-size: 0.92rem;
	line-height: 1.6;
}

.tq-slider__karta .tq__go {
	margin-top: 1rem;
}

.tq-slider__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.1rem;
	margin-top: 1rem;
}

.tq-slider__strzalka {
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(180deg, rgba(124, 58, 237, 0.28), rgba(124, 58, 237, 0.06));
	border: 1px solid rgba(201, 168, 76, 0.6);
	border-radius: 9999px;
	width: 2.6rem;
	height: 2.6rem;
	color: #e3cd8a;
	font-family: Cinzel, Georgia, serif;
	font-size: 1.25rem;
	line-height: 1;
	padding: 0 0 0.2rem;
	box-shadow: inset 0 1px 0 rgba(227, 205, 138, 0.25), 0 4px 14px rgba(0, 0, 0, 0.35);
	transition: box-shadow 0.25s ease, transform 0.2s ease, border-color 0.25s ease;
}

.tq-slider__strzalka:hover {
	transform: translateY(-1px);
	border-color: #e3cd8a;
	box-shadow: inset 0 1px 0 rgba(227, 205, 138, 0.3), 0 0 20px rgba(201, 168, 76, 0.35);
}

.tq-slider__licznik {
	font-family: Cinzel, Georgia, serif;
	font-size: 0.82rem;
	color: #a78bfa;
	letter-spacing: 0.24em;
}

.tq-slider__licznik::before { content: '✧ '; color: rgba(201, 168, 76, 0.6); }
.tq-slider__licznik::after { content: ' ✧'; color: rgba(201, 168, 76, 0.6); }

/* ---------- overlay oczekiwania na przepowiednię ---------- */

#tq-wait {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: rgba(13, 10, 30, 0.86);
	backdrop-filter: blur(7px);
	animation: tqFadeUp 0.4s ease-out both;
}

#tq-wait.is-out {
	opacity: 0;
	transition: opacity 0.4s ease;
}

.tq-wait__krag {
	width: 130px;
	height: 130px;
	border-radius: 50%;
	overflow: hidden;
	border: 1px solid rgba(227, 205, 138, 0.5);
	box-shadow: 0 0 40px rgba(201, 168, 76, 0.45), inset 0 0 20px rgba(0, 0, 0, 0.6);
}

.tq-wait__krag img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	animation: tqSpin 14s linear infinite;
}

#tq-wait h3 {
	margin: 1.4rem 0 0.5rem;
	font-family: Cinzel, Georgia, serif;
	font-size: 1.05rem;
	letter-spacing: 0.3em;
	color: #e3cd8a;
	text-transform: uppercase;
	text-shadow: 0 0 24px rgba(201, 168, 76, 0.4);
}

#tq-wait p {
	font-family: Cinzel, Georgia, serif;
	font-size: 0.85rem;
	color: #a78bfa;
	animation: tqWaitPulse 2.6s ease-in-out infinite;
}

@keyframes tqSpin {
	from { transform: rotate(0); }
	to { transform: rotate(360deg); }
}

@keyframes tqWaitPulse {
	0%, 100% { opacity: 0.55; }
	50% { opacity: 1; }
}

@keyframes tqShimmer {
	0% { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}

@keyframes tqAccept {
	0% { box-shadow: inset 0 0 46px rgba(124, 58, 237, 0.08), 0 0 0 rgba(227, 205, 138, 0); }
	35% { box-shadow: inset 0 0 46px rgba(124, 58, 237, 0.1), 0 0 46px rgba(227, 205, 138, 0.45); }
	100% { box-shadow: inset 0 0 46px rgba(124, 58, 237, 0.08), 0 0 22px rgba(227, 205, 138, 0.12); }
}

@keyframes tqFadeUp {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes tqShake {
	0%, 100% { transform: translateX(0); }
	20% { transform: translateX(-7px); }
	40% { transform: translateX(6px); }
	60% { transform: translateX(-4px); }
	80% { transform: translateX(3px); }
}

@media (max-width: 640px) {
	.tq {
		padding: 1.3rem 1.1rem 1.6rem;
		margin-bottom: 1.8rem;
	}
	.tq__input {
		font-size: 1.05rem;
	}
	.tq__eyebrow {
		font-size: 0.92rem;
		letter-spacing: 0.2em;
	}
	.tq__go,
	.tq__send {
		width: 100%;
	}
	.tqc {
		padding: 1.2rem 1.1rem 1.3rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tq,
	.tq__rule,
	.tq__hint,
	.tq__count,
	.tq__send,
	.tq__go {
		transition: none;
	}
	.tq__rule {
		transform: scaleX(1);
	}
	.tq.is-accepted,
	.tq.is-shake,
	.tq.is-accepted .tq__choice,
	.tqc,
	.tqc__bar,
	#tq-wait,
	.tq-wait__krag img,
	#tq-wait p {
		animation: none;
	}
}

/* ---------- horoskop dnia od Luny: slider sekcji ---------- */

.tq-horo {
	position: relative;
	margin: 0.25rem 0 0.5rem;
	padding: 1.6rem 1.4rem 1.2rem;
	border: 1px solid rgba(201, 168, 76, 0.45);
	border-radius: 18px;
	background:
		radial-gradient(420px 200px at 15% -10%, rgba(124, 58, 237, 0.2), transparent 60%),
		radial-gradient(420px 220px at 90% 110%, rgba(201, 168, 76, 0.1), transparent 60%),
		linear-gradient(180deg, rgba(24, 18, 48, 0.92), rgba(13, 10, 30, 0.94));
	box-shadow:
		0 14px 38px rgba(0, 0, 0, 0.5),
		0 0 30px rgba(124, 58, 237, 0.14),
		inset 0 1px 0 rgba(227, 205, 138, 0.16);
	text-align: center;
}

.tq-horo::before,
.tq-horo::after {
	position: absolute;
	top: 0.65rem;
	font-size: 0.95rem;
	color: rgba(201, 168, 76, 0.55);
	text-shadow: 0 0 12px rgba(201, 168, 76, 0.45);
	pointer-events: none;
}

.tq-horo::before { content: '☾ ⋆'; left: 1rem; }
.tq-horo::after { content: '⋆ ☽'; right: 1rem; }

.tq-horo__czekaj {
	font-family: Cinzel, Georgia, serif;
	color: #a78bfa;
	font-size: 0.9rem;
	letter-spacing: 0.16em;
	padding: 1.2rem 0;
}

.tq-horo__iskra {
	display: inline-block;
	color: #e3cd8a;
	animation: tqIskra 1.2s ease-in-out infinite;
}

@keyframes tqIskra {
	0%, 100% { opacity: 0.35; transform: scale(0.9); }
	50% { opacity: 1; transform: scale(1.15); text-shadow: 0 0 16px rgba(201, 168, 76, 0.8); }
}

.tq-horo__motto {
	font-family: Cinzel, Georgia, serif;
	font-size: 1.05rem;
	color: #e3cd8a;
	text-shadow: 0 0 22px rgba(201, 168, 76, 0.4);
	margin-bottom: 0.9rem;
}

.tq-horo__motto::after {
	content: '─── ✦ ───';
	display: block;
	margin-top: 0.45rem;
	font-size: 0.7rem;
	letter-spacing: 0.3em;
	color: rgba(167, 139, 250, 0.7);
	text-shadow: 0 0 10px rgba(124, 58, 237, 0.5);
}

.tq-horo__taby {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.4rem;
	margin-bottom: 1rem;
}

.tq-horo__tab {
	cursor: pointer;
	font-family: Cinzel, Georgia, serif;
	font-size: 0.68rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #8b87ab;
	background: rgba(124, 58, 237, 0.08);
	border: 1px solid rgba(167, 139, 250, 0.25);
	border-radius: 9999px;
	padding: 0.3rem 0.75rem;
	transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.tq-horo__tab:hover { color: #d8d4ec; border-color: rgba(201, 168, 76, 0.5); }

.tq-horo__tab.jest {
	color: #e3cd8a;
	border-color: rgba(201, 168, 76, 0.7);
	box-shadow: 0 0 14px rgba(201, 168, 76, 0.25), inset 0 1px 0 rgba(227, 205, 138, 0.2);
	background: linear-gradient(180deg, rgba(124, 58, 237, 0.25), rgba(124, 58, 237, 0.05));
}

.tq-horo__okno {
	overflow: hidden;
	outline: none;
	border-radius: 12px;
}

.tq-horo__okno:focus-visible {
	box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.55);
}

.tq-horo__tor {
	display: flex;
	transition: transform 0.45s cubic-bezier(0.22, 0.8, 0.3, 1);
}

@media (prefers-reduced-motion: reduce) {
	.tq-horo__tor { transition: none; }
	.tq-horo__iskra { animation: none; }
}

.tq-horo__slajd {
	min-width: 100%;
	padding: 0.4rem 1.2rem 0.6rem;
	box-sizing: border-box;
}

.tq-horo__znak {
	font-size: 1.5rem;
	color: #e3cd8a;
	text-shadow: 0 0 18px rgba(201, 168, 76, 0.55);
	margin-bottom: 0.2rem;
}

.tq-horo__naglowek {
	font-family: Cinzel, Georgia, serif;
	font-size: 0.8rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: #a78bfa;
	margin: 0 0 0.55rem;
}

.tq-horo__meta {
	font-size: 0.75rem;
	color: #8b87ab;
	margin-bottom: 0.55rem;
}

.tq-horo__energia {
	color: #e3cd8a;
	letter-spacing: 0.12em;
	text-shadow: 0 0 10px rgba(201, 168, 76, 0.5);
}

.tq-horo__tekst {
	max-width: 46rem;
	margin: 0 auto;
	color: #d8d4ec;
	font-size: 0.97rem;
	line-height: 1.7;
	text-align: center;
}

.tq-horo__cechy {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 0.85rem;
}

.tq-horo__cecha {
	font-size: 0.78rem;
	line-height: 1.45;
	color: #d8d4ec;
	border: 1px solid rgba(167, 139, 250, 0.3);
	border-radius: 10px;
	padding: 0.4rem 0.7rem;
	max-width: 21rem;
}

.tq-horo__cecha b {
	display: block;
	font-family: Cinzel, Georgia, serif;
	font-size: 0.62rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 0.15rem;
}

.tq-horo__cecha--swiatlo { border-color: rgba(110, 231, 183, 0.4); }
.tq-horo__cecha--swiatlo b { color: #6ee7b7; }
.tq-horo__cecha--cien { border-color: rgba(244, 114, 182, 0.35); }
.tq-horo__cecha--cien b { color: #f472b6; }

.tq-horo__nawigacja {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.1rem;
	margin-top: 0.9rem;
}

.tq-horo__strzalka {
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(180deg, rgba(124, 58, 237, 0.28), rgba(124, 58, 237, 0.06));
	border: 1px solid rgba(201, 168, 76, 0.6);
	border-radius: 9999px;
	width: 2.6rem;
	height: 2.6rem;
	color: #e3cd8a;
	font-family: Cinzel, Georgia, serif;
	font-size: 1.25rem;
	line-height: 1;
	padding: 0 0 0.2rem;
	box-shadow: inset 0 1px 0 rgba(227, 205, 138, 0.25), 0 4px 14px rgba(0, 0, 0, 0.35);
	transition: box-shadow 0.25s ease, transform 0.2s ease, border-color 0.25s ease;
}

.tq-horo__strzalka:hover {
	transform: translateY(-1px);
	border-color: #e3cd8a;
	box-shadow: inset 0 1px 0 rgba(227, 205, 138, 0.3), 0 0 20px rgba(201, 168, 76, 0.35);
}

.tq-horo__licznik {
	font-family: Cinzel, Georgia, serif;
	font-size: 0.82rem;
	color: #a78bfa;
	letter-spacing: 0.24em;
}

.tq-horo__licznik::before { content: '✧ '; color: rgba(201, 168, 76, 0.6); }
.tq-horo__licznik::after { content: ' ✧'; color: rgba(201, 168, 76, 0.6); }

@media (max-width: 640px) {
	.tq-horo { padding: 1.2rem 0.7rem 1rem; }
	.tq-horo__slajd { padding: 0.3rem 0.4rem 0.5rem; }
	.tq-horo__tab { font-size: 0.62rem; padding: 0.26rem 0.55rem; }
}

/* przelacznik pelnego raportu astrologicznego pod portretem od wrozki */
.tq-horo__zwin {
	cursor: pointer;
	display: block;
	margin: 0.5rem auto 1.2rem;
	font-family: Cinzel, Georgia, serif;
	font-size: 0.78rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #a78bfa;
	background: transparent;
	border: 1px solid rgba(167, 139, 250, 0.35);
	border-radius: 9999px;
	padding: 0.55rem 1.4rem;
	transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.tq-horo__zwin:hover {
	color: #e3cd8a;
	border-color: rgba(201, 168, 76, 0.6);
	box-shadow: 0 0 16px rgba(201, 168, 76, 0.2);
}

/* ---------- kolo natalne: tooltip, zoom, okienka znakow i planet ---------- */

#tq-kolo-tip {
	position: fixed;
	z-index: 100010;
	pointer-events: none;
	opacity: 0;
	transform: translateY(4px);
	transition: opacity 0.15s ease, transform 0.15s ease;
	background: linear-gradient(180deg, rgba(28, 22, 55, 0.97), rgba(13, 10, 30, 0.97));
	border: 1px solid rgba(201, 168, 76, 0.5);
	border-radius: 12px;
	padding: 0.55rem 0.85rem;
	max-width: 240px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55), 0 0 18px rgba(124, 58, 237, 0.25);
}

#tq-kolo-tip.jest { opacity: 1; transform: translateY(0); }

#tq-kolo-tip b {
	display: block;
	font-family: Cinzel, Georgia, serif;
	font-size: 0.9rem;
	color: #e3cd8a;
	text-shadow: 0 0 14px rgba(201, 168, 76, 0.5);
}

#tq-kolo-tip span {
	display: block;
	margin-top: 0.15rem;
	font-size: 0.74rem;
	line-height: 1.45;
	color: #b9b3d6;
}

/* powiekszone kolo */
#tq-kolo-zoom {
	position: fixed;
	inset: 0;
	z-index: 100001;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	background: rgba(10, 8, 24, 0.72);
	backdrop-filter: blur(9px);
	-webkit-backdrop-filter: blur(9px);
	animation: tqFadeUp 0.3s ease-out both;
}

#tq-kolo-zoom.znika, #tq-astro-modal.znika { opacity: 0; transition: opacity 0.25s ease; }

.tq-kolo-zoom__x, .tq-astro__x {
	position: absolute;
	top: 1.1rem;
	right: 1.2rem;
	cursor: pointer;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 9999px;
	border: 1px solid rgba(201, 168, 76, 0.5);
	background: rgba(13, 10, 30, 0.7);
	color: #e3cd8a;
	font-size: 1rem;
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.tq-kolo-zoom__x:hover, .tq-astro__x:hover { border-color: #e3cd8a; box-shadow: 0 0 18px rgba(201, 168, 76, 0.35); }

.tq-kolo-zoom__glowa {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.2rem;
}

.tq-kolo-zoom__znak {
	font-family: Cinzel, Georgia, serif;
	font-size: 1.5rem;
	color: #e3cd8a;
	letter-spacing: 0.08em;
	text-shadow: 0 0 26px rgba(201, 168, 76, 0.55);
}

.tq-kolo-zoom__data {
	font-size: 0.85rem;
	letter-spacing: 0.22em;
	color: #a78bfa;
}

.tq-kolo-zoom__scena {
	position: relative;
	width: min(82vmin, 720px);
	height: min(82vmin, 720px);
}

.tq-kolo-zoom__scena svg { position: relative; width: 100%; height: 100%; z-index: 2; }

.tq-kolo-zoom__glow {
	position: absolute;
	inset: -6%;
	z-index: 1;
	border-radius: 50%;
	background:
		radial-gradient(circle at 50% 58%, rgba(124, 58, 237, 0.4), transparent 62%),
		radial-gradient(circle at 50% 45%, rgba(201, 168, 76, 0.22), transparent 58%);
	filter: blur(18px);
	animation: tqGlowPuls 5s ease-in-out infinite;
}

@keyframes tqGlowPuls {
	0%, 100% { opacity: 0.7; }
	50% { opacity: 1; }
}

.tq-kolo-obrot {
	animation: tqKoloObrot 150s linear infinite;
	transform-origin: 50% 50%;
}

@keyframes tqKoloObrot {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
	.tq-kolo-obrot { animation: none; }
	.tq-kolo-zoom__glow { animation: none; }
}

/* okienko znaku / planety — przejscia tonalne wg zywiolu */
#tq-astro-modal {
	position: fixed;
	inset: 0;
	z-index: 100005;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	overflow-y: auto;
	padding: 4vh 1rem 6vh;
	background: rgba(10, 8, 24, 0.7);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	animation: tqFadeUp 0.3s ease-out both;
}

.tq-astro__karta {
	position: relative;
	width: 100%;
	max-width: 34rem;
	border-radius: 24px;
	border: 1px solid rgba(201, 168, 76, 0.45);
	overflow: hidden;
	text-align: center;
	color: #d8d4ec;
	background: linear-gradient(180deg, rgba(24, 18, 48, 0.98), rgba(13, 10, 30, 0.98));
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 46px rgba(124, 58, 237, 0.2);
}

.tq-astro__glowa {
	padding: 2.1rem 1.4rem 1.3rem;
	border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

.tq-astro--ogien .tq-astro__glowa { background: radial-gradient(120% 150% at 50% -20%, rgba(232, 121, 58, 0.4), rgba(201, 168, 76, 0.12) 55%, transparent); }
.tq-astro--ziemia .tq-astro__glowa { background: radial-gradient(120% 150% at 50% -20%, rgba(110, 231, 143, 0.28), rgba(201, 168, 76, 0.1) 55%, transparent); }
.tq-astro--powietrze .tq-astro__glowa { background: radial-gradient(120% 150% at 50% -20%, rgba(167, 139, 250, 0.4), rgba(201, 168, 76, 0.1) 55%, transparent); }
.tq-astro--woda .tq-astro__glowa { background: radial-gradient(120% 150% at 50% -20%, rgba(56, 189, 248, 0.32), rgba(124, 58, 237, 0.14) 55%, transparent); }
.tq-astro--planeta .tq-astro__glowa { background: radial-gradient(120% 150% at 50% -20%, rgba(201, 168, 76, 0.32), rgba(124, 58, 237, 0.14) 55%, transparent); }

.tq-astro__symbol {
	display: block;
	font-size: 2.6rem;
	line-height: 1;
	color: #e3cd8a;
	text-shadow: 0 0 30px rgba(201, 168, 76, 0.65);
}

.tq-astro__glowa h4 {
	margin: 0.5rem 0 0;
	font-family: Cinzel, Georgia, serif;
	font-size: 1.5rem;
	font-weight: 600;
	color: #f0e8d0;
	letter-spacing: 0.1em;
}

.tq-astro__meta {
	margin-top: 0.3rem;
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #a78bfa;
}

.tq-astro__tresc { padding: 1.3rem 1.6rem 1.8rem; }

.tq-astro__tagline {
	font-family: Cinzel, Georgia, serif;
	font-size: 1rem;
	color: #e3cd8a;
	margin-bottom: 0.7rem;
}

.tq-astro__meta2 { font-size: 0.78rem; color: #8b87ab; margin-bottom: 0.9rem; }

.tq-astro__tresc h5 {
	margin: 1.1rem 0 0.35rem;
	font-family: Cinzel, Georgia, serif;
	font-size: 0.74rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: #a78bfa;
}

.tq-astro__tresc p {
	margin: 0;
	font-size: 0.93rem;
	line-height: 1.7;
	color: #d8d4ec;
}

.tq-astro__laduje {
	font-family: Cinzel, Georgia, serif;
	color: #a78bfa;
	letter-spacing: 0.16em;
	padding: 1rem 0;
}

/* znak sloneczny pod mottem portretu + przycisk sluchania w sliderze */
.tq-horo__znaczek {
	margin: -0.4rem 0 0.8rem;
	font-family: Cinzel, Georgia, serif;
	font-size: 0.85rem;
	letter-spacing: 0.2em;
	color: #a78bfa;
}

.tq-horo__sluchaj { margin: 0.9rem auto 0; }

.tq-horo .tq-player { margin: 0.9rem auto 0; max-width: 30rem; }

/* ---------- Moje rozklady: slider miesiecy ---------- */

#tq-mies {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.4rem;
	margin: 0.4rem auto 1.6rem;
	padding: 1rem 1.4rem;
	max-width: 34rem;
	border-radius: 18px;
	border: 1px solid rgba(201, 168, 76, 0.35);
	background:
		radial-gradient(320px 130px at 20% -20%, rgba(124, 58, 237, 0.28), transparent 60%),
		radial-gradient(320px 130px at 85% 120%, rgba(201, 168, 76, 0.14), transparent 60%),
		linear-gradient(180deg, rgba(24, 18, 48, 0.9), rgba(13, 10, 30, 0.92));
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(227, 205, 138, 0.14);
}

.tq-mies__srodek { text-align: center; min-width: 13rem; }

.tq-mies__nazwa {
	font-family: Cinzel, Georgia, serif;
	font-size: 1.25rem;
	letter-spacing: 0.12em;
	color: transparent;
	background: linear-gradient(100deg, #c9a8f0 0%, #e3cd8a 55%, #f6e3b4 100%);
	-webkit-background-clip: text;
	background-clip: text;
	text-shadow: 0 0 30px rgba(201, 168, 76, 0.25);
}

.tq-mies__licznik {
	margin-top: 0.2rem;
	font-family: Cinzel, Georgia, serif;
	font-size: 0.72rem;
	letter-spacing: 0.22em;
	color: #8b87ab;
}

/* ---------- zakladka subskrypcji ---------- */

.tq-tab-sub { color: #e3cd8a !important; }
.tq-tab-sub.jest { box-shadow: 0 0 18px rgba(201, 168, 76, 0.3), inset 0 1px 0 rgba(227, 205, 138, 0.25); border-color: rgba(201, 168, 76, 0.7) !important; }

#tq-sub-panel { margin: 0.6rem 0 2rem; }

.tq-sub__intro { text-align: center; margin-bottom: 1.6rem; }

.tq-sub__tytul {
	font-family: Cinzel, Georgia, serif;
	font-size: 1.6rem;
	color: #f0e8d0;
	letter-spacing: 0.08em;
	margin: 0 0 0.3rem;
}

.tq-sub__pod { color: #8b87ab; font-size: 0.9rem; margin: 0; }

.tq-sub__kafle {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
	gap: 1.4rem;
	max-width: 46rem;
	margin: 0 auto;
	align-items: stretch;
}

.tq-sub__kafel {
	position: relative;
	display: flex;
	flex-direction: column;
	border-radius: 22px;
	border: 1px solid rgba(167, 139, 250, 0.28);
	background: linear-gradient(180deg, rgba(21, 21, 42, 0.85), rgba(13, 10, 30, 0.9));
	padding: 1.8rem 1.6rem 1.6rem;
	text-align: center;
}

.tq-sub__kafel--pelnia {
	border-color: rgba(201, 168, 76, 0.65);
	background:
		radial-gradient(340px 200px at 50% -30%, rgba(201, 168, 76, 0.22), transparent 60%),
		radial-gradient(300px 200px at 50% 120%, rgba(124, 58, 237, 0.3), transparent 60%),
		linear-gradient(180deg, rgba(30, 22, 60, 0.95), rgba(16, 12, 36, 0.97));
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 168, 76, 0.18);
	transform: translateY(-6px);
}

.tq-sub__wstega {
	position: absolute;
	top: -0.85rem;
	left: 50%;
	transform: translateX(-50%);
	font-family: Cinzel, Georgia, serif;
	font-size: 0.68rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: #241a08;
	background: linear-gradient(135deg, #f6e3b4, #e3cd8a, #c9a84c);
	border-radius: 9999px;
	padding: 0.35rem 1rem;
	box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
	white-space: nowrap;
}

.tq-sub__plan {
	font-family: Cinzel, Georgia, serif;
	font-size: 1.15rem;
	letter-spacing: 0.14em;
	color: #e3cd8a;
}

.tq-sub__cena {
	font-family: Cinzel, Georgia, serif;
	font-size: 2.3rem;
	color: #f0e8d0;
	margin: 0.5rem 0 1rem;
	text-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
}

.tq-sub__cena span { font-size: 0.85rem; color: #8b87ab; letter-spacing: 0.06em; }

.tq-sub__lista {
	list-style: none;
	margin: 0 0 1.3rem;
	padding: 0;
	text-align: left;
	flex: 1;
}

.tq-sub__lista li {
	position: relative;
	padding: 0.42rem 0 0.42rem 1.7rem;
	font-size: 0.88rem;
	line-height: 1.5;
	color: #d8d4ec;
	border-bottom: 1px dashed rgba(167, 139, 250, 0.14);
}

.tq-sub__lista li:last-child { border-bottom: 0; }

.tq-sub__lista li::before {
	position: absolute;
	left: 0.15rem;
	top: 0.42rem;
}

.tq-sub__lista li.jest::before { content: '✦'; color: #e3cd8a; }
.tq-sub__lista li.brak { color: #6d6890; }
.tq-sub__lista li.brak::before { content: '✕'; color: #6d6890; }
.tq-sub__lista li.limit::before { content: '☾'; color: #a78bfa; }

.tq-sub__cta {
	cursor: pointer;
	font-family: Cinzel, Georgia, serif;
	font-size: 0.9rem;
	letter-spacing: 0.14em;
	border-radius: 9999px;
	padding: 0.8rem 1.4rem;
	border: 0;
	color: #241a08;
	background: linear-gradient(135deg, #f6e3b4, #e3cd8a, #c9a84c);
	box-shadow: 0 8px 28px rgba(201, 168, 76, 0.35);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tq-sub__cta:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(201, 168, 76, 0.5); }

.tq-sub__cta--cichy {
	cursor: default;
	color: #8b87ab;
	background: transparent;
	border: 1px solid rgba(167, 139, 250, 0.3);
	box-shadow: none;
}

.tq-sub__cta--cichy:hover { transform: none; box-shadow: none; }

/* klodka planu Pelnia na kafelkach rozkladow */
.tq-lock {
	position: absolute;
	top: 0.7rem;
	right: 0.7rem;
	font-family: Cinzel, Georgia, serif;
	font-size: 0.62rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #241a08;
	background: linear-gradient(135deg, #f6e3b4, #e3cd8a, #c9a84c);
	border-radius: 9999px;
	padding: 0.28rem 0.7rem;
	box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35);
	pointer-events: none;
}

/* ============================================================
   REDESIGN „ZADAJ PYTANIE" wg mockupu — glass panel, złoty CTA.
   Nadpisuje bazowe .tq (kaskada: ten blok jest ostatni).
   ============================================================ */

.tq.tq {
	display: flex;
	flex-direction: column;
	max-width: 48rem;               /* = szerokość treści rozkładu poniżej */
	padding: 2.2rem clamp(1.2rem, 4vw, 3rem) 2.4rem;
	border-radius: 22px;
	border: 1px solid rgba(201, 168, 76, 0.38);
	background:
		radial-gradient(520px 260px at 50% -12%, rgba(124, 58, 237, 0.28), transparent 60%),
		linear-gradient(168deg, rgba(46, 34, 92, 0.55), rgba(18, 14, 44, 0.62));
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow:
		0 24px 60px rgba(0, 0, 0, 0.45),
		0 0 44px rgba(124, 58, 237, 0.16),
		inset 0 1px 0 rgba(227, 205, 138, 0.22);
}

/* iskra na górnej krawędzi — sygnatura panelu */
.tq.tq::before {
	content: '✦';
	position: absolute;
	top: -0.85rem;
	left: 50%;
	transform: translateX(-50%);
	font-size: 1.05rem;
	color: #e3cd8a;
	text-shadow: 0 0 18px rgba(232, 195, 106, 0.9), 0 0 40px rgba(232, 195, 106, 0.5);
	background: none;
	animation: tqIskra 2.6s ease-in-out infinite;
}

/* porządek sekcji jak w mockupie: tytuł → podpowiedź → pole → reszta */
.tq.tq > .tq__eyebrow { order: 1; }
.tq.tq > .tq__hint { order: 2; }
.tq.tq > .tq__field { order: 3; }
.tq.tq > .tq__poznaj { order: 4; }
.tq.tq > .tq__plec { order: 5; }
.tq.tq > .tq__actions { order: 6; }
.tq.tq > .tq__choice { order: 7; }
.tq.tq > .tq__count { order: 8; }

.tq.tq .tq__eyebrow {
	font-family: Cinzel, Georgia, serif;
	font-size: clamp(1.15rem, 2.6vw, 1.55rem);
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: #e3cd8a;
	text-shadow: 0 0 26px rgba(232, 195, 106, 0.45);
	margin-bottom: 0.55rem;
}

.tq.tq .tq__hint {
	font-style: italic;
	font-size: 0.98rem;
	color: #c9bfe8;
	margin: 0 0 1.15rem;
}

.tq.tq .tq__input {
	border: 1px solid rgba(167, 139, 250, 0.35);
	border-radius: 15px;
	background: rgba(13, 10, 30, 0.55);
	padding: 1.02rem 2.9rem 1.02rem 1.25rem;
	font-size: 1rem;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.tq.tq .tq__input:focus {
	border-color: rgba(232, 195, 106, 0.65);
	box-shadow: 0 0 0 3px rgba(232, 195, 106, 0.12), 0 0 26px rgba(124, 58, 237, 0.25);
	outline: none;
}

.tq.tq .tq__field { position: relative; }

.tq.tq .tq__field::after {
	content: '✦';
	position: absolute;
	right: 1.05rem;
	top: 0.95rem;
	color: rgba(232, 195, 106, 0.75);
	pointer-events: none;
	text-shadow: 0 0 12px rgba(232, 195, 106, 0.6);
}

.tq.tq .tq__rule { display: none; }   /* linijka zbędna przy pełnej ramce pola */

.tq.tq .tq__send {
	width: min(100%, 26rem);
	margin: 0 auto;
	padding: 1rem 2rem;
	border: 0;
	border-radius: 15px;
	font-family: Cinzel, Georgia, serif;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #241a08;
	background: linear-gradient(135deg, #f6e3b4, #e8c36a 55%, #c9a84e);
	box-shadow: 0 10px 34px rgba(232, 195, 106, 0.35), inset 0 1px 0 rgba(255, 245, 214, 0.8);
	transition: transform 0.2s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.tq.tq .tq__send:hover {
	transform: translateY(-2px);
	filter: brightness(1.05);
	box-shadow: 0 14px 44px rgba(232, 195, 106, 0.5), inset 0 1px 0 rgba(255, 245, 214, 0.8);
}

/* matcher na liście rozkładów: szerokość = siatka kart poniżej (880px) */
#tq-matcher.tq { max-width: 55rem; }

@media (max-width: 640px) {
	.tq.tq { padding: 1.7rem 1rem 1.8rem; }
	.tq.tq .tq__send { letter-spacing: 0.14em; }
}

/* pole pytania na pelna szerokosc panelu */
.tq.tq .tq__field { width: 100%; }
.tq.tq .tq__input { width: 100%; box-sizing: border-box; display: block; text-align: left; }
.tq.tq .tq__input--ab { margin-bottom: 0.6rem; }

/* mockup ZADAJ PYTANIE: przyklad kursywa, benefity, ozdobne rogi */
.tq.tq > .tq__przyklad { order: 2; font-style: italic; font-size: 1rem; color: #cfc7f0; margin: 0 0 0.25rem; }
.tq.tq > .tq__hint { order: 3; font-style: normal; font-size: 0.9rem; color: #9a93c4; margin: 0 0 1.15rem; }
.tq.tq > .tq__benefity { order: 9; }

.tq.tq .tq__eyebrow::before,
.tq.tq::after {
	position: absolute;
	top: 1.05rem;
	font-size: 0.8rem;
	color: rgba(232, 195, 106, 0.75);
	border: 1px solid rgba(201, 168, 76, 0.35);
	border-radius: 12px;
	padding: 0.4rem 0.65rem;
	line-height: 1;
	pointer-events: none;
	background: rgba(13, 10, 30, 0.35);
}
.tq.tq .tq__eyebrow::before { content: '☾ ✦'; left: 1.1rem; }
.tq.tq::after { content: '✦ ☽'; right: 1.1rem; }

.tq__benefity {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.4rem 2.6rem;
	margin-top: 1.6rem;
	padding-top: 1.3rem;
	border-top: 1px solid rgba(167, 139, 250, 0.16);
}
.tq__benefit { display: flex; align-items: center; gap: 0.75rem; text-align: left; max-width: 15rem; }
.tq__benefit-ikona {
	flex: 0 0 auto;
	width: 2.6rem; height: 2.6rem;
	display: inline-flex; align-items: center; justify-content: center;
	border: 1px solid rgba(201, 168, 76, 0.45);
	border-radius: 9999px;
	color: #e3cd8a;
	font-size: 1.05rem;
	background: rgba(124, 58, 237, 0.1);
	box-shadow: inset 0 1px 0 rgba(227, 205, 138, 0.18);
}
.tq__benefit-tekst { font-size: 0.78rem; line-height: 1.45; color: #8b87ab; }
.tq__benefit-tekst b { display: block; font-size: 0.86rem; color: #e9e2f8; font-weight: 600; }

/* tlo appki jak w mockupie: kolo zodiaku z lewej, mglawica z planeta z prawej */
.tarot-root::before,
.tarot-root::after {
	content: '';
	position: absolute;
	top: 0;
	width: min(28vw, 470px);
	height: 853px;
	z-index: 0;
	pointer-events: none;
	background-repeat: no-repeat;
	background-size: contain;
	opacity: 0.9;
}
.tarot-root::before {
	left: 0;
	background-image: var(--tg-tlo-lewe, url('https://taroscope.eu/wp-content/uploads/tarot-kompat/planety/tlo-lewe.png'));
	background-position: left top;
}
.tarot-root::after {
	right: 0;
	background-image: var(--tg-tlo-prawe, url('https://taroscope.eu/wp-content/uploads/tarot-kompat/planety/tlo-prawe.png'));
	background-position: right top;
}
@media (max-width: 900px) {
	.tarot-root::before, .tarot-root::after { display: none; }
}

/* mockup: opis nad polem */
.tq.tq > .tq__field { order: 4; }
