/* ============================================================
   PARENDI - Uslugi (archiwum kategorii + single zabieg)
   Layout: hero split + cross-strip kategorii + grid kart zabiegow + newsletter + single zabieg
   ============================================================ */

/* ─── FLOATING BACK FAB (lewy dolny rog, rozowy, kontekstowy back) ──── */
.parendi-back-fab {
	position: fixed;
	left: 16px;
	bottom: 16px;
	z-index: 9998;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 18px 12px 14px;
	background: var(--c-btn-gradient, linear-gradient(120deg, #7A5C1E 0%, #C9A96E 100%));
	color: #FFFFFF;
	text-decoration: none;
	border-radius: 999px;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 0.06em;
	box-shadow:
		0 10px 28px -8px rgba(201, 169, 110, 0.55),
		0 4px 10px rgba(26, 23, 20, 0.18);
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
	-webkit-tap-highlight-color: transparent;
	transform: translateY(0);
}
.parendi-back-fab:hover,
.parendi-back-fab:focus-visible {
	background: var(--c-text-on-light, #1A1714);
	color: #FFFFFF;
	transform: translateY(-3px);
	box-shadow:
		0 16px 36px -10px rgba(26, 23, 20, 0.4),
		0 6px 14px rgba(26, 23, 20, 0.18);
}
.parendi-back-fab__icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transition: transform 0.3s ease;
}
.parendi-back-fab:hover .parendi-back-fab__icon {
	transform: translateX(-3px);
}
.parendi-back-fab__label {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 220px;
}

/* Hide na print + reduce motion */
@media print { .parendi-back-fab { display: none !important; } }

/* Mobile - lewy dolny rog (nie zaslania logo/hero na gorze) */
@media (max-width: 767px) {
	.parendi-back-fab {
		left: 12px;
		bottom: 20px;
		top: auto;
		padding: 8px 14px 8px 10px;
		font-size: 11px;
	}
	.parendi-back-fab__icon {
		width: 22px;
		height: 22px;
	}
	.parendi-back-fab__label {
		max-width: 160px;
	}
}

/* Ukryj gdy modal rezerwacji otwarty (nie konkuruj o uwage) */
body.pb-modal-open .parendi-back-fab,
body.parendi-search-open .parendi-back-fab,
body.has-menu-open .parendi-back-fab {
	opacity: 0;
	pointer-events: none;
	transform: translateY(20px);
}


/* ── FLOATING CTA mobile - PREMIUM PINK PILL z pulsem + shimmerem ── */
.usluga-floating-pricing {
	position: fixed;
	left: 14px;
	right: 14px;
	bottom: 16px;
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 12px 10px 14px;
	background: #FFFFFF;
	color: var(--c-text-on-light, #1A1714);
	text-decoration: none;
	border-radius: 999px;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	border: 1px solid rgba(201, 169, 110, 0.22);
	box-shadow:
		0 18px 40px -12px rgba(26, 23, 20, 0.18),
		0 4px 12px rgba(26, 23, 20, 0.08);
	transform: translateY(140%);
	opacity: 0;
	pointer-events: none;
	transition:
		transform 0.55s cubic-bezier(0.34, 1.2, 0.6, 1),
		opacity 0.4s ease,
		background 0.35s ease,
		color 0.35s ease,
		border-color 0.35s ease,
		box-shadow 0.35s ease;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
	cursor: pointer;
	position: fixed;
	overflow: hidden;
	isolation: isolate;
}
.usluga-floating-pricing.is-visible {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}
.usluga-floating-pricing:active {
	transform: translateY(0) scale(0.98);
}

/* ICON wrapper */
.usluga-floating-pricing__icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	background: var(--c-accent-soft, #F5ECD8);
	color: var(--c-accent, #C9A96E);
	border-radius: 50%;
	flex-shrink: 0;
	z-index: 2;
	transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

/* LABEL */
.usluga-floating-pricing__label {
	flex: 1;
	text-align: left;
	z-index: 2;
	position: relative;
}

/* PRICE chip - pink gradient, glass border */
.usluga-floating-pricing__price {
	display: inline-flex;
	align-items: center;
	padding: 10px 16px;
	background: linear-gradient(135deg, #D4B880 0%, #C9A96E 50%, #A07830 100%);
	color: #FFFFFF;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 999px;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 700;
	font-size: 11.5px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	white-space: nowrap;
	box-shadow:
		0 6px 14px -4px rgba(122, 92, 30, 0.4),
		0 0 0 1px rgba(255, 255, 255, 0.25) inset,
		0 1px 0 rgba(255, 255, 255, 0.4) inset;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
	z-index: 2;
	position: relative;
}

/* ─── BOOKING MODE - premium gradient pill (modern) ─── */
.usluga-floating-pricing.is-booking {
	background: linear-gradient(135deg, #D4B880 0%, #C9A96E 45%, #A07830 100%);
	color: #FFFFFF;
	border: 1px solid rgba(255, 255, 255, 0.45);
	padding: 11px 22px 11px 14px;
	box-shadow:
		0 22px 48px -12px rgba(122, 92, 30, 0.55),
		0 8px 20px -4px rgba(201, 169, 110, 0.45),
		0 0 0 1px rgba(255, 255, 255, 0.25) inset,
		0 1px 0 rgba(255, 255, 255, 0.4) inset;
}

/* Shimmer sweep w booking mode (pseudo NIE zaslania tekstu - z-index: 1 vs content z-index: 2) */
.usluga-floating-pricing.is-booking::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.25) 50%, transparent 70%);
	transform: translateX(-100%);
	animation: usFloatShimmer 3.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
	pointer-events: none;
	z-index: 1;
}

@keyframes usFloatShimmer {
	0%   { transform: translateX(-100%); }
	60%  { transform: translateX(120%); }
	100% { transform: translateX(120%); }
}

/* Icon w booking mode - glass z pulsujaca poswiata */
.usluga-floating-pricing.is-booking .usluga-floating-pricing__icon {
	background: rgba(255, 255, 255, 0.22);
	color: #FFFFFF;
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.35) inset,
		0 2px 6px -1px rgba(122, 92, 30, 0.3);
}

/* Pulse aura wokol icon (subtelnie przyciaga uwage) */
.usluga-floating-pricing.is-booking .usluga-floating-pricing__icon::after {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
	pointer-events: none;
	animation: usFloatPulse 2.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes usFloatPulse {
	0%   { transform: scale(0.85); opacity: 0; }
	50%  { transform: scale(1.4);  opacity: 0.7; }
	100% { transform: scale(1.8);  opacity: 0; }
}

.usluga-floating-pricing.is-booking .usluga-floating-pricing__price {
	display: none;
}

/* Active state - press feedback */
.usluga-floating-pricing.is-booking:active {
	box-shadow:
		0 12px 32px -10px rgba(122, 92, 30, 0.55),
		0 4px 12px -2px rgba(201, 169, 110, 0.4),
		0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

/* Reduced motion - bez pulsu i shimmera */
@media (prefers-reduced-motion: reduce) {
	.usluga-floating-pricing.is-booking::before,
	.usluga-floating-pricing.is-booking .usluga-floating-pricing__icon::after {
		animation: none;
		opacity: 0;
	}
}

@media (max-width: 767px) {
	.usluga-floating-pricing {
		display: flex;
	}
}
@media (min-width: 768px) {
	.usluga-floating-pricing:hover {
		transform: translateY(-2px);
		box-shadow:
			0 24px 48px -14px rgba(26, 23, 20, 0.22),
			0 6px 16px rgba(26, 23, 20, 0.1);
	}
	.usluga-floating-pricing.is-booking:hover {
		box-shadow:
			0 24px 48px -14px rgba(201, 169, 110, 0.55),
			0 6px 16px rgba(26, 23, 20, 0.12);
	}
}

/* Print + reduce motion */
@media print { .usluga-floating-pricing { display: none !important; } }
@media (prefers-reduced-motion: reduce) {
	.usluga-floating-pricing { transition: opacity 0.2s ease; }
}


.category-archive {
	position: relative;
	background: var(--c-bg, #F8F5F0);
	color: var(--c-text-on-light, #1A1714);
	padding-bottom: clamp(80px, 12vh, 140px);
}

/* ─── HERO (split: pink content left + image right + meta strip top-right) ───── */

/* PIN WRAPPER - rezerwuje 120vh przestrzeni scrollu.
   Hero sticky 60vh pinned na top przez 60vh scrollu (120vh wrap - 60vh hero).
   Strip ma margin-top -60vh = startuje od konca hero, w trakcie scrollu wjezdza na hero (z-index 2 > hero z-index 1).
   Po wrapperze hero sie odpina i zwykle wyscrolluje (nie wystaje na dole). */
.cat-hero-pin {
	position: relative;
	/* 1200px = 700px hero + 500px scroll. Hero sticky przez 500px scrolla. */
	height: 1200px;
}

/* COMPACT - pin-wrap dla single zabieg (sticky hero 65vh + ~55vh scroll dla curtain) */
.cat-hero-pin--compact {
	height: 120vh;
}

/* FLAT - leaf subcat / kategoria bez subkategorii: bez sticky pin, bez 1200px reserve
   (hero plynnie scrolluje, content section flows naturally pod hero, bez "przesuwjacego paska" pink) */
.cat-hero-pin--flat {
	height: auto;
}
.cat-hero--flat {
	position: relative;
	top: auto;
	height: auto;
	min-height: 56vh;
	padding: clamp(100px, 14vh, 160px) 0 clamp(60px, 8vh, 100px);
}
/* Gdy hero flat - grid section nie ma curtaina (flows naturally pod hero)
   Wyzsza specificity (1 sibling class + 2 chained = 0,3,0) nad base 0,2,0 */
.cat-hero-pin--flat + .cat-grid-section.cat-grid-section--curtain {
	margin-top: 0 !important;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	box-shadow: none;
	padding-top: clamp(40px, 6vh, 80px);
}

/* GRID-AS-CURTAIN - gdy brak karuzeli podkategorii (leaf terms), to grid zabiegow przejmuje
   curtain effect (margin-top -60vh, wjezdza na sticky hero z dolu - taki sam zachowanie jak .cat-strip). */
.cat-grid-section.cat-grid-section--curtain {
	position: relative;
	z-index: 2;
	background: var(--c-bg, #F8F5F0);
	/* -60svh zsynchronizowane z .cat-hero height (svh) - zapobiega mikro-shift sticky */
	margin-top: -60svh;
	border-top-left-radius: 36px;
	border-top-right-radius: 36px;
	box-shadow: 0 -12px 40px -18px rgba(26, 23, 20, 0.25);
	padding-top: clamp(56px, 7vh, 80px);
}

/* Tablet curtain peek */
@media (max-width: 1024px) and (min-width: 768px) {
	.cat-grid-section.cat-grid-section--curtain {
		margin-top: -48px;
		border-top-left-radius: 28px;
		border-top-right-radius: 28px;
	}
}

/* Mobile: ZERO curtaina - sekcje normalnie po sobie, bez nakladania */
@media (max-width: 767px) {
	.cat-grid-section.cat-grid-section--curtain {
		margin-top: 0;
		border-top-left-radius: 0;
		border-top-right-radius: 0;
		box-shadow: none;
		padding-top: clamp(40px, 6vh, 64px);
	}
}

.cat-hero {
	position: sticky;
	top: 0;
	z-index: 1;
	height: 700px;
	min-height: 700px;
	background-color: var(--c-blush-soft, #F5ECD8);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	display: flex;
	align-items: stretch;
	overflow: hidden;
	padding: clamp(80px, 10vh, 140px) 0 clamp(60px, 8vh, 100px);
	/* UWAGA: ZADNYCH transform/will-change/filter tutaj - to zabija sticky behavior
	   (tworzy compositor layer ktory zmienia scope sticky parent). */
}


.cat-hero--no-image {
	background: linear-gradient(135deg, var(--c-blush-soft, #F5ECD8) 0%, var(--c-accent, #C9A96E) 100%);
}

/* COMPACT - hero dla single zabieg (panel bez lead: H1, price, status, info, button, microcopy = 6 elementow) */
.cat-hero--compact {
	height: 65vh;
	min-height: 600px;
	padding: clamp(80px, 11vh, 120px) 0 clamp(60px, 9vh, 100px);
}

/* Compact - mniejszy tytul + tighter line-height + breadcrumb + lead */
.cat-hero--compact .cat-hero__title {
	font-size: clamp(36px, 5vw, 68px);
	line-height: 1.02;
	margin-bottom: clamp(12px, 1.8vh, 18px);
}

.cat-hero--compact .cat-hero__lead {
	font-size: clamp(13px, 0.95vw, 15px);
	line-height: 1.55;
	margin-bottom: clamp(16px, 2vh, 22px);
	max-width: 440px;
}

.cat-hero--compact .cat-hero__breadcrumb {
	margin-bottom: clamp(10px, 1.5vh, 16px);
	font-size: 10px;
}

.cat-hero--compact .cat-hero__cta {
	padding: 14px 28px;
	font-size: 11px;
}

/* SINGLE ZABIEG - elementy w panelu hero (na pink overlay, biale akcenty - jak kategoria) */

/* PRICE BLOCK - duza biala cena + przekreslona + Omnibus */
.usluga-hero__price-block {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 16px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	margin: clamp(14px, 2vh, 20px) 0;
}

.usluga-hero__price-row {
	display: flex;
	align-items: baseline;
	gap: 12px;
	flex-wrap: wrap;
}

.usluga-hero__price-main {
	display: inline-flex;
	align-items: baseline;
	gap: 6px;
}

.usluga-hero__price-from {
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 16px;
	color: rgba(255, 255, 255, 0.85);
	font-weight: 400;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.usluga-hero__price-main strong {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: normal;
	font-weight: 500;
	font-size: clamp(52px, 5.5vw, 76px);
	color: #FFFFFF;
	letter-spacing: -0.02em;
	line-height: 1;
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55), 0 4px 48px rgba(0, 0, 0, 0.3);
}

.usluga-hero__price-unit {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-weight: 400;
	font-size: clamp(24px, 2.4vw, 34px);
	color: #FFFFFF;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.usluga-hero__price-old {
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 14px;
	color: rgba(255, 255, 255, 0.65);
	text-decoration: line-through;
	font-weight: 400;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.usluga-hero__omnibus {
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 10px;
	color: rgba(255, 255, 255, 0.7);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

/* META ROW - status + info-grid w jednej linii (wrap na mobile) */
.usluga-hero__meta-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: clamp(16px, 2vw, 24px);
	margin-bottom: clamp(18px, 2.5vh, 26px);
}

/* AVAILABILITY STATUS - zielona kropka + bialy text */
.usluga-hero__status {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 15px;
	font-weight: 600;
	color: #FFFFFF;
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.usluga-hero__status-dot {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #5BD171;
	box-shadow: 0 0 0 4px rgba(91, 209, 113, 0.25);
	animation: pulse-dot 2s ease-in-out infinite;
	flex-shrink: 0;
}

@keyframes pulse-dot {
	0%, 100% { box-shadow: 0 0 0 3px rgba(91, 209, 113, 0.25); }
	50% { box-shadow: 0 0 0 6px rgba(91, 209, 113, 0.1); }
}

/* INFO GRID - inline grupowanie czas + marka, biale akcenty */
.usluga-hero__info-grid {
	display: inline-flex;
	gap: clamp(16px, 2vw, 24px);
	flex-wrap: wrap;
}

.usluga-hero__info-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.usluga-hero__info-item svg {
	color: #FFFFFF;
	flex-shrink: 0;
	opacity: 0.85;
}

.usluga-hero__info-item div {
	display: flex;
	flex-direction: column;
	gap: 1px;
	min-width: 0;
}

.usluga-hero__info-label {
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
}

.usluga-hero__info-value {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 400;
	font-size: 17px;
	color: #FFFFFF;
	line-height: 1.2;
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

/* MICROCOPY pod button - white italic */
.usluga-hero__microcopy {
	display: inline-block;
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 400;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.9);
	margin-top: 12px;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.18);
}

/* ── TABLET (768 - 1024px) - hero pinned ale nizsze + mniejszy curtain ── */
@media (max-width: 1024px) and (min-width: 768px) {
	.cat-hero-pin--compact {
		height: auto;     /* zrezygnuj z sticky na tablecie - daje mniej bugow */
		min-height: 0;
	}
	.cat-hero--compact {
		position: relative;
		height: auto;
		min-height: 520px;
		padding: clamp(80px, 10vh, 110px) 0 clamp(40px, 6vh, 64px);
	}
	.cat-hero--compact .cat-hero__title {
		font-size: clamp(36px, 6vw, 56px);
	}
}

/* ── MOBILE (<768px) - stack pionowo, brak sticky, brak curtain ── */
@media (max-width: 767px) {
	.cat-hero-pin,
	.cat-hero-pin--compact {
		height: auto;
		min-height: 0;
	}
	.cat-hero,
	.cat-hero--compact {
		position: relative;     /* override sticky - nie dziala dobrze przy auto-height */
		top: auto;
		height: auto;
		min-height: 0;
		padding: clamp(70px, 10vh, 100px) 0 32px;
	}
	.cat-hero--compact .cat-hero__title {
		font-size: clamp(32px, 9vw, 52px);
	}
	.usluga-hero__meta-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}
	.usluga-hero__price-main strong {
		font-size: clamp(28px, 8vw, 40px);
	}
}

/* REVERSE hero (single zabieg) - obraz w LEWEJ polowie + lity roz w prawej + soft gradient transition.
   - .cat-hero--reverse ma background-color #C9A96E (prawa polowa = lity roz)
   - ::before pseudo-element ma 50% szerokosci od lewej z obrazkiem (cover, center center)
   - .cat-hero__media-overlay ma gradient ktory zmiekcza krawedz miedzy obrazem a rozem
   - container z panelem text-prawa siedzi nad gradient (z-index 2) */
.cat-hero--reverse {
	/* Tlo i wymiary - sticky z bazowej .cat-hero (position sticky top:0). */
	background-image: none;
	background-color: var(--c-accent, #C9A96E);
}

/* OBRAZ W LEWEJ POŁOWIE - rozszerzone do 60% zeby gradient overlay zdazyl pokryc krawedz
   zanim obraz sie skonczy (eliminuje widoczna linie ciecia przy obrazach portretowych 3:4) */
.cat-hero--reverse::before {
	content: '';
	position: absolute;
	inset: 0 40% 0 0;             /* obraz zajmuje 60% od lewej - gradient przykrywa 55-60% */
	background-image: var(--hero-bg-img);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	z-index: 0;
	pointer-events: none;
}

/* GRADIENT STOPNIOWY PO CAŁOŚCI - lewa krawedz ma juz lekka rozowa nakladke (~35% alpha)
   zeby cena/CTA na obrazie byly czytelne, srodek smooth fade, prawa lity roz.
   Gradient staje sie pelny roz w okolicach 55% - przykrywa krawedz obrazu (ktory siega do 60%). */
.cat-hero--reverse .cat-hero__media-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(
		to right,
		rgba(10, 6, 2, 0.55)  0%,
		rgba(10, 6, 2, 0.42)  25%,
		rgba(10, 6, 2, 0.2)   38%,
		rgba(26, 20, 12, 0.8) 46%,
		rgba(26, 20, 12, 1)   54%,
		rgba(26, 20, 12, 1)   100%
	);
}

.cat-hero--reverse .cat-hero__container {
	position: relative;
	z-index: 2;                    /* nad gradient overlay i ::before */
	justify-content: flex-end;
}

/* MOBILE: split 50/50 nie ma sensu na waskim viewporcie.
   Obrazek wraca jako full background, panel tekstu pod, gradient od dolu. */
@media (max-width: 900px) {
	.cat-hero--reverse {
		min-height: 600px;
		background-image: var(--hero-bg-img) !important;
		background-size: cover !important;
		background-position: center center !important;
	}
	.cat-hero--reverse::before {
		display: none;
	}
	.cat-hero--reverse .cat-hero__media-overlay {
		background: linear-gradient(
			180deg,
			rgba(201, 169, 110, 0.18) 0%,
			rgba(201, 169, 110, 0.08) 30%,
			rgba(20, 14, 8, 0.1)      55%,
			rgba(20, 14, 8, 0.45)     100%
		);
	}
}

/* CTA + CENA w lewym gornym rogu (over image) - asymetryczna kompozycja editorial */
.cat-hero__cta-corner {
	position: absolute;
	top: 50%;
	left: clamp(20px, 4vw, 80px);
	transform: translateY(-50%);
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	max-width: 420px;
}

.cat-hero__cta-corner .usluga-hero__price-block {
	margin: 0;
	padding: 0;
	border: 0;
	gap: 6px;
}

.cat-hero__cta-corner .usluga-hero__microcopy {
	margin-top: 0;
}

/* Meta-row w cta-corner - stacked (status + info-grid), z marginem od microcopy */
.cat-hero__cta-corner .usluga-hero__meta-row {
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.25);
	width: 100%;
}

.cat-hero__cta-corner .usluga-hero__info-grid {
	display: flex;
	flex-direction: row;
	gap: 20px;
}

@media (max-width: 900px) {
	.cat-hero__cta-corner {
		position: static;
		transform: none;
		margin-top: 24px;
		max-width: 100%;
		align-items: stretch;
	}

	/* ── MOBILE/TABLET KOLEJNOSC: panel (breadcrumb/title/lead) PIERWSZY, potem cta-corner ── */
	.cat-hero--reverse .cat-hero__container {
		flex-direction: column;
		align-items: stretch;
	}
	.cat-hero--reverse .cat-hero__panel {
		order: 1;
		max-width: 100%;
	}
	.cat-hero--reverse .cat-hero__cta-corner {
		order: 2;
		margin-top: 20px;
	}

	/* W cta-corner: meta-row (status + info) PIERWSZE, potem cena, button, microcopy */
	.cat-hero__cta-corner .usluga-hero__meta-row {
		order: 1;
		margin-top: 0;
		padding-top: 0;
		border-top: none;
		/* Status na bialym/jasnym tle - lekko mocniejszy text shadow */
		text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
	}
	.cat-hero__cta-corner .usluga-hero__price-block {
		order: 2;
		padding-top: 14px;
		border-top: 1px solid rgba(255, 255, 255, 0.3);
		margin-top: 4px;
		width: 100%;
	}
	/* Cena z prawej strony (align-self na flex-end + text-align right na rzedzie) */
	.cat-hero__cta-corner .usluga-hero__price-row {
		justify-content: flex-end;
		text-align: right;
	}
	.cat-hero__cta-corner .usluga-hero__omnibus {
		text-align: right;
		align-self: flex-end;
	}

	.cat-hero__cta-corner .cat-hero__cta           { order: 3; }

	/* Microcopy pod buttonem wysrodkowany */
	.cat-hero__cta-corner .usluga-hero__microcopy  {
		order: 4;
		text-align: center;
		align-self: center;
		width: 100%;
	}
}

.cat-hero--reverse .cat-hero__title {
	font-size: clamp(36px, 5vw, 64px);
	line-height: 1.05;
	margin-bottom: clamp(14px, 2vh, 20px);
}

.cat-hero--reverse .cat-hero__lead {
	font-size: clamp(13px, 1vw, 15px);
	margin-bottom: clamp(16px, 2vh, 22px);
	max-width: 440px;
}

/* Meta strip - przeniesiona z prawej do LEWEJ gornej (bo text z prawej zajmuje prawa strone) */
.cat-hero--reverse .cat-hero__meta {
	right: auto;
	left: clamp(20px, 4vw, 80px);
}

.cat-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	transform: scale(1.04);
	transition: transform 8s ease;
	z-index: 0;
}

.cat-hero:hover .cat-hero__bg {
	transform: scale(1);
}

.cat-hero__media-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to bottom, rgba(10, 6, 2, 0.48) 0%, rgba(10, 6, 2, 0.48) 100%),
		linear-gradient(to top, rgba(10, 6, 2, 0.6) 0%, rgba(10, 6, 2, 0) 55%);
	pointer-events: none;
	z-index: 1;
}

.cat-hero--no-image .cat-hero__media-overlay {
	background: none;
}

.cat-hero__container {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 80px);
	display: flex;
	align-items: center;
}

.cat-hero__panel {
	position: relative;
	z-index: 2;
	max-width: 760px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.cat-hero__script {
	font-family: 'Allura', cursive;
	font-size: clamp(28px, 3vw, 40px);
	color: #FFFFFF;
	margin-bottom: clamp(16px, 2vh, 24px);
	line-height: 1;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.cat-hero__breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 11px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: clamp(14px, 2vh, 20px);
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
}

.cat-hero__breadcrumb a {
	color: inherit;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.cat-hero__breadcrumb a:hover { opacity: 0.75; }

.cat-hero__breadcrumb span[aria-hidden] { opacity: 0.6; }

.cat-hero__title {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 300;
	font-size: clamp(36px, 4.5vw, 64px);
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: #FFFFFF;
	text-shadow: 0 2px 24px rgba(20, 14, 8, 0.55), 0 1px 6px rgba(20, 14, 8, 0.35);
	/* Hyphens: tylko explicite - w slowach (jak "wyszczuplajaco-ujedrniajace")
	   Pozwala lamac w naturalnych miejscach, blokuje word-break mid-word. */
	hyphens: manual;
	-webkit-hyphens: manual;
	overflow-wrap: normal;
	word-break: normal;
	margin: 0 0 clamp(16px, 2.5vh, 24px);
	text-shadow: 0 6px 32px rgba(0, 0, 0, 0.18);
	word-break: normal;
	overflow-wrap: anywhere;
	hyphens: auto;
	max-width: 100%;
}

.cat-hero__lead {
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: clamp(14px, 1.05vw, 16px);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.94);
	margin: 0 0 clamp(24px, 3.5vh, 36px);
	max-width: 460px;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.18);
}

.cat-hero__cta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 18px 36px;
	background: #FFFFFF;
	color: var(--c-text-on-light, #1A1714);
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 999px;
	width: -moz-fit-content;
	width: fit-content;
	transition: background 0.3s ease, color 0.3s ease, gap 0.3s ease, transform 0.3s ease;
	box-shadow: 0 14px 36px -14px rgba(0, 0, 0, 0.3);
}

.cat-hero__cta:hover {
	background: var(--c-text-on-light, #1A1714);
	color: #FFFFFF;
	gap: 18px;
	transform: translateY(-2px);
}

.cat-hero__price {
	display: inline-block;
	margin-top: clamp(14px, 2vh, 20px);
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 400;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.9);
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
}

/* META STRIP - top right wewnatrz containera */
.cat-hero__meta {
	position: absolute;
	top: 0;
	right: clamp(20px, 4vw, 80px);
	display: flex;
	align-items: center;
	gap: 12px;
	z-index: 3;
}

.cat-hero__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	background: rgba(255, 255, 255, 0.88);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	border-radius: 999px;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: var(--c-text-on-light, #1A1714);
	box-shadow: 0 6px 20px -8px rgba(0, 0, 0, 0.18);
}

.cat-hero__meta-item svg {
	color: var(--c-accent, #C9A96E);
	flex-shrink: 0;
}

@media (max-width: 767px) {
	/* Mobile - wylacz sticky (krótki viewport, sticky nie ma sensu), cat-strip bez curtain */
	.cat-hero-pin {
		height: auto;
	}
	.cat-hero {
		position: relative;
		height: auto;
		min-height: auto;
		/* Wiekszy padding-bottom zeby CTA mial oddech i nastepna sekcja nie ucina */
		padding: clamp(72px, 10vh, 96px) 0 clamp(40px, 6vh, 56px);
	}
	.cat-hero__container {
		flex-direction: column;
		align-items: flex-start;
		padding: 0 22px;
	}
	/* Zloty overlay na mobile - lekki odcien, shadow na dole dla tekstu */
	.cat-hero__media-overlay {
		background:
			linear-gradient(to top, rgba(20, 14, 8, 0.55) 0%, rgba(20, 14, 8, 0) 45%),
			linear-gradient(135deg, rgba(201, 169, 110, 0.22) 0%, rgba(201, 169, 110, 0.12) 50%, rgba(201, 169, 110, 0.18) 100%);
	}
	.cat-hero__panel {
		max-width: 100%;
		justify-content: flex-start;
		align-items: flex-start;
		text-align: left;
	}
	/* Breadcrumby - drobne, monochrome, oddzielone delikatna linia od tytulu */
	.cat-hero__breadcrumb {
		font-size: 9.5px;
		letter-spacing: 0.32em;
		gap: 6px;
		margin-bottom: 22px;
		color: rgba(255, 255, 255, 0.82);
	}
	.cat-hero__breadcrumb span[aria-hidden] {
		opacity: 0.45;
		font-size: 8px;
	}
	/* Tytul - italic, bardziej dramatyczny, dluzsza linia */
	.cat-hero__title {
		font-size: clamp(40px, 11vw, 60px);
		line-height: 1.02;
		letter-spacing: -0.025em;
		margin: 0 0 18px;
	}
	/* Decorative cienka linia pinkowa miedzy tytulem a lead - nadaje editorial touch */
	.cat-hero__title::after {
		content: '';
		display: block;
		width: 48px;
		height: 1px;
		background: rgba(255, 255, 255, 0.55);
		margin: 18px 0 0;
	}
	.cat-hero__lead {
		font-size: 13.5px;
		line-height: 1.55;
		max-width: 100%;
		margin: 0 0 28px;
		color: rgba(255, 255, 255, 0.92);
	}
	/* CTA - kompaktowy, fit-content, z pinkowym gradientem (spojnosc z hero buttonem) */
	.cat-hero__cta {
		width: -moz-fit-content;
		width: fit-content;
		padding: 13px 24px;
		font-size: 10.5px;
		letter-spacing: 0.22em;
		gap: 10px;
		background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 100%);
		color: var(--c-text-on-light, #1A1714);
		border: 1px solid rgba(255, 255, 255, 0.6);
		box-shadow:
			0 10px 24px -8px rgba(0, 0, 0, 0.28),
			0 0 0 1px rgba(255, 255, 255, 0.4) inset;
	}
	.cat-hero__cta:hover {
		background: var(--c-text-on-light, #1A1714);
		color: #FFFFFF;
		transform: translateY(-2px);
	}
	.cat-hero__meta {
		position: static;
		margin: 0 0 20px;
		flex-wrap: wrap;
		order: -1;
		gap: 8px;
	}
	.cat-hero__meta-item {
		padding: 7px 12px;
		font-size: 10.5px;
	}
	/* CAT-STRIP: ZERO curtaina na mobile (czysty stack, nic nie wjezdza na hero/CTA) */
	.cat-strip,
	.cat-strip.cat-strip--others,
	.cat-strip.cat-strip--subcats {
		margin-top: 0;
		border-top-left-radius: 0;
		border-top-right-radius: 0;
		box-shadow: none;
	}

	/* Grid zabiegow na mobile - 1-2 kolumny (PIONOWE karty po update V4) */
	.cat-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}
	.treatment-card {
		border-radius: 14px;
	}
	.treatment-card__body {
		padding: 14px 16px 18px;
		gap: 8px;
	}
	.treatment-card__title {
		font-size: 17px;
		line-height: 1.2;
		padding-right: 0;        /* info button na zdjeciu, body bez padding-right */
		-webkit-line-clamp: 2;
	}
	.treatment-card__desc {
		font-size: 12px;
		line-height: 1.45;
		-webkit-line-clamp: 2;
	}
	.treatment-card__meta-row {
		gap: 8px;
	}
	.treatment-card__time {
		font-size: 10.5px;
	}
	.treatment-card__price {
		font-size: 10.5px;
		padding: 6px 12px;
		letter-spacing: 0.1em;
	}
	.treatment-card__info {
		top: 10px;
		left: 10px;              /* matches base */
		width: 28px;
		height: 28px;
	}
	.treatment-card__info svg { width: 12px; height: 12px; }
	/* Mobile arrow circle - mniejszy */
	.treatment-card__media::before {
		width: 32px;
		height: 32px;
		font-size: 15px;
		top: 10px;
		right: 10px;
	}

	/* Karuzela --others mniejsze karty (zostaje karuzela dla cross-discovery) */
	.cat-strip--others .cat-strip-card {
		width: clamp(180px, 70vw, 240px);
	}

	/* SUBCATS na mobile: COLLAPSIBLE - subtelny chip-button nad gridem zabiegow */
	.cat-strip--subcats {
		padding: 0;
		margin-top: 24px;
		margin-bottom: -8px;
	}
	/* Domyslnie ukryte: header + featured + chips (visible po expand) */
	.cat-strip--subcats .cat-strip__header,
	.cat-strip--subcats .cat-strip__featured,
	.cat-strip--subcats .cat-strip__chips {
		display: none;
	}
	.cat-strip--subcats.is-expanded .cat-strip__featured {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
		padding: 12px 0 0;
		animation: catStripExpand 0.3s ease;
	}
	.cat-strip--subcats.is-expanded .cat-strip__chips {
		display: block;
		margin-top: 12px;
		padding-top: 12px;
		animation: catStripExpand 0.3s ease;
	}
	@keyframes catStripExpand {
		from { opacity: 0; transform: translateY(-8px); }
		to   { opacity: 1; transform: translateY(0); }
	}
	.cat-strip--subcats .cat-strip-card {
		width: 100%;
		flex: initial;
		aspect-ratio: 5 / 2;
		border-radius: 8px;
	}
	.cat-strip--subcats .cat-strip-card__name {
		font-size: 12px;
		padding: 0 8px;
		line-height: 1.15;
	}
	.cat-strip--subcats .cat-strip__arrows {
		display: none;
	}

	/* CTA card (Nie wiesz co wybrac) - na mobile spans 2 kolumny */
	.treatment-card--cta {
		grid-column: 1 / -1;
	}
}

/* Bardzo male telefony - jednak 1 kolumna */
@media (max-width: 420px) {
	.cat-grid {
		grid-template-columns: 1fr;
	}
}

/* ─── CAT-STRIP EXPAND BUTTON (mobile only - premium glass-card z ikona, eyebrow+label, chevronem) ─── */
.cat-strip__expand {
	display: none;
	align-items: center;
	gap: 14px;
	width: 100%;
	max-width: 420px;
	margin: 0 auto;
	padding: 14px 18px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 236, 216, 0.55) 100%);
	color: var(--c-text-on-light, #1A1714);
	border: 1px solid rgba(201, 169, 110, 0.28);
	border-radius: 18px;
	box-shadow:
		0 10px 24px -10px rgba(122, 92, 30, 0.22),
		0 2px 6px -2px rgba(26, 23, 20, 0.05),
		0 0 0 1px rgba(255, 255, 255, 0.7) inset;
	font-family: var(--font-sans, 'Inter', sans-serif);
	cursor: pointer;
	transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
	-webkit-tap-highlight-color: transparent;
	text-align: left;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	position: relative;
	overflow: hidden;
}

/* Ikona w pink-soft kwadracie po lewej */
.cat-strip__expand-icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: linear-gradient(135deg, #D4B880 0%, #C9A96E 100%);
	color: #FFFFFF;
	box-shadow:
		0 6px 14px -4px rgba(122, 92, 30, 0.45),
		0 0 0 1px rgba(255, 255, 255, 0.3) inset;
	transition: transform 0.35s ease;
}

/* Label: 2-line stack (eyebrow + main text) */
.cat-strip__expand-label {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 2px;
	line-height: 1.15;
	min-width: 0;
}
.cat-strip__expand-eyebrow {
	font-size: 9.5px;
	font-weight: 500;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--c-accent, #C9A96E);
}
.cat-strip__expand-text {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 400;
	font-size: 16px;
	letter-spacing: -0.005em;
	color: var(--c-text-on-light, #1A1714);
}

/* Chevron po prawej w jasnym kolnym kolku */
.cat-strip__expand-chevron {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(201, 169, 110, 0.12);
	color: var(--c-accent, #C9A96E);
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease;
}

/* Hover / Active state - pink wash + chevron rotate */
.cat-strip__expand:hover,
.cat-strip__expand:focus-visible {
	border-color: rgba(201, 169, 110, 0.5);
	box-shadow:
		0 16px 32px -10px rgba(122, 92, 30, 0.32),
		0 4px 10px -2px rgba(26, 23, 20, 0.08);
	transform: translateY(-2px);
}
.cat-strip__expand:hover .cat-strip__expand-icon {
	transform: scale(1.05) rotate(-4deg);
}

/* Open state - chevron flip + accent border */
.cat-strip__expand[aria-expanded="true"] {
	background: linear-gradient(135deg, rgba(201, 169, 110, 0.14) 0%, rgba(245, 236, 216, 0.85) 100%);
	border-color: rgba(201, 169, 110, 0.55);
}
.cat-strip__expand[aria-expanded="true"] .cat-strip__expand-chevron {
	transform: rotate(180deg);
	background: var(--c-accent, #C9A96E);
	color: #FFFFFF;
}
.cat-strip__expand[aria-expanded="true"] .cat-strip__expand-icon {
	transform: scale(1.05);
	box-shadow:
		0 8px 18px -4px rgba(122, 92, 30, 0.55),
		0 0 0 1px rgba(255, 255, 255, 0.35) inset;
}

/* Subtelne pulsujące poświata na ikonie - przyciaga uwagę */
.cat-strip__expand-icon::after {
	content: '';
	position: absolute;
	inset: -3px;
	border-radius: 14px;
	background: radial-gradient(circle, rgba(201, 169, 110, 0.4) 0%, transparent 70%);
	opacity: 0;
	z-index: -1;
	animation: catStripIconPulse 2.8s ease-in-out infinite;
}
@keyframes catStripIconPulse {
	0%, 100% { opacity: 0; transform: scale(0.95); }
	50%      { opacity: 0.6; transform: scale(1.15); }
}

@media (max-width: 767px) {
	.cat-strip--subcats .cat-strip__expand {
		display: inline-flex;
	}
	.cat-strip--subcats .cat-strip__container {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		padding: 0 16px;
	}
	.cat-strip--subcats.is-expanded .cat-strip__track {
		width: 100%;
	}
}

/* ─── CROSS-CATEGORY STRIP (poziome prostokaty z napisem na pink overlay + autoplay carousel) ─── */

.cat-strip {
	/* CURTAIN - margin-top -60vh = strip startuje od konca hero (ignoruje 60vh pin reserve).
	   W trakcie scrollu wrappera (120vh) strip wjezdza nad sticky hero (z-index 2 > 1).
	   Po wrapperze hero sie odpina, strip kontynuuje w naturalnym flow. */
	position: relative;
	z-index: 2;
	background: var(--c-bg, #F8F5F0);
	margin-top: -60vh;
	border-top-left-radius: 36px;
	border-top-right-radius: 36px;
	box-shadow: 0 -12px 40px -18px rgba(26, 23, 20, 0.25);
	padding: clamp(56px, 7vh, 80px) 0 clamp(48px, 6.5vh, 72px);
}

/* Usuniete: bottom gradient separator (::after) - tworzyl widoczny rozowy pasek miedzy sekcjami */

.cat-strip__container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 80px);
}

.cat-strip__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: clamp(20px, 3vh, 32px);
	gap: 16px;
}

.cat-strip__head-text {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.cat-strip__label {
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--c-accent, #C9A96E);
}

.cat-strip__heading {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 300;
	font-size: clamp(22px, 2.4vw, 32px);
	line-height: 1.1;
	letter-spacing: -0.015em;
	color: var(--c-text-on-light, #1A1714);
	margin: 0;
}

.cat-strip__arrows {
	display: flex;
	gap: 8px;
}

.cat-strip__arrow {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid var(--c-line-soft, #D1C7C1);
	background: #FFFFFF;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--c-text-on-light, #1A1714);
	transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.cat-strip__arrow:hover {
	background: var(--c-accent, #C9A96E);
	border-color: var(--c-accent, #C9A96E);
	color: #FFFFFF;
}

.cat-strip__track {
	display: flex;
	gap: clamp(12px, 1.4vw, 20px);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding-bottom: 4px;
}

.cat-strip__track::-webkit-scrollbar { display: none; }

/* ─── EDITORIAL CARD --others (Inne uslugi karuzela) ──────
 * IDENTYCZNY styl jak featured subcats z gory strony - pink wash overlay
 * + italic biala nazwa + count "X zabiegow" pod nazwa, BEZ cream panela, BEZ numerkow
 */
.cat-strip--others .cat-strip-card--editorial,
.cat-strip-card--editorial {
	aspect-ratio: 16 / 9 !important;           /* nizsze niz 4:3, ale dalej wysokie */
	flex: 0 0 calc((100% - 3 * clamp(12px, 1.4vw, 20px)) / 4);     /* 4 karty w jednej lini */
	width: auto;
	min-width: 0;
	border-radius: 14px;
	background: #0e0a08;
	overflow: hidden;
	box-shadow: 0 4px 16px -8px rgba(0, 0, 0, 0.3);
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.cat-strip-card--editorial:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 36px -10px rgba(0, 0, 0, 0.5);
}

.cat-strip-card--editorial .cat-strip-card__image {
	position: absolute;
	inset: 0;
	opacity: 0.85;
	mix-blend-mode: normal;
	filter: none;
	background-position: center;
	transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}
.cat-strip-card--editorial:hover .cat-strip-card__image {
	opacity: 0.95;
	transform: scale(1.06);
}

/* OVERLAY: pink wash + dark bottom dla czytelnosci tekstu (jak featured) */
.cat-strip-card--editorial .cat-strip-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(18, 12, 8, 0.88) 0%,
		rgba(18, 12, 8, 0.35) 55%,
		rgba(18, 12, 8, 0.05) 100%
	);
	transition: background 0.4s ease;
	pointer-events: none;
}
.cat-strip-card--editorial:hover .cat-strip-card__overlay {
	background: linear-gradient(
		to top,
		rgba(18, 12, 8, 0.92) 0%,
		rgba(18, 12, 8, 0.42) 55%,
		rgba(18, 12, 8, 0.08) 100%
	);
}

/* NUMER WYLACZONY - bez numerkow 01-07 w rogu (clean look jak featured) */
.cat-strip-card__number {
	display: none;
}

/* BODY: pozycjonowany w dolnej polowie nad pink wash, jak featured subcats */
.cat-strip-card--editorial .cat-strip-card__body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 14px 18px 16px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	background: transparent;
	border-top: none;
}

/* EYEBROW: count "X zabiegow" - biala uppercase nad nazwa */
.cat-strip-card__eyebrow {
	display: inline-flex;
	align-items: center;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 600;
	font-size: 10px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.92);
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
	margin: 0;
}
.cat-strip-card__eyebrow::before {
	display: none;
}

/* NAZWA: italic biala Fraunces na pink overlay (jak featured subcats) */
.cat-strip-card--editorial .cat-strip-card__name {
	position: static;
	inset: auto;
	display: block;
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 400;
	font-size: clamp(20px, 1.8vw, 26px);
	line-height: 1.1;
	letter-spacing: -0.01em;
	color: #FFFFFF;
	text-align: left;
	padding: 0;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4), 0 1px 4px rgba(0, 0, 0, 0.3);
	align-items: flex-start;
	justify-content: flex-start;
}

/* CTA WYLACZONA - hover state nie potrzebuje arrow (clean jak featured) */
.cat-strip-card__cta {
	display: none;
}

/* Tablet (768-1024) - 2-3 karty w jednej lini */
@media (max-width: 1024px) and (min-width: 768px) {
	.cat-strip--others .cat-strip-card--editorial,
	.cat-strip-card--editorial {
		flex: 0 0 calc((100% - 1 * clamp(12px, 1.4vw, 20px)) / 2.3);
	}
}

/* Mobile (<768) - 1.2 karty widoczne, reszta scroll */
@media (max-width: 767px) {
	.cat-strip--others .cat-strip-card--editorial,
	.cat-strip-card--editorial {
		aspect-ratio: 16 / 9 !important;
		flex: 0 0 82%;
		width: auto;
		max-width: 340px;
	}
	.cat-strip-card--editorial .cat-strip-card__body {
		padding: 12px 14px 14px;
	}
	.cat-strip-card--editorial .cat-strip-card__name {
		font-size: 15px;
	}
	.cat-strip-card__eyebrow {
		font-size: 9px;
		letter-spacing: 0.14em;
	}
}

/* WARIANT --others: na dole strony po grid zabiegow - bez curtain, bez separatorow.
   Tlo identyczne jak grid (var(--c-bg)) - sekcja przeplywa wizualnie z grida. */
.cat-strip.cat-strip--others {
	margin-top: 0;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	box-shadow: none;
	/* Solid bg cream - zapobiega prze-bijaniu sie hero pink (sticky pod) przez transparent */
	background: var(--c-bg, #F8F5F0);
	border-top: 0;
	padding-top: clamp(24px, 4vh, 56px);
	position: relative;
	z-index: 3;
}

/* WARIANT --subcats: HYBRID - 4 featured cards + reszta jako chipy */
.cat-strip--subcats .cat-strip__featured {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	overflow: visible;
	padding: 0;
}
.cat-strip--subcats .cat-strip__featured .cat-strip-card {
	flex: 0 0 calc((100% - 28px) / 3);
}
@media (max-width: 1100px) {
	.cat-strip--subcats .cat-strip__featured {
		grid-template-columns: repeat(2, 1fr);
	}
}
.cat-strip--subcats .cat-strip__arrows {
	display: none;
}

/* CHIPY (reszta grup) - text-only, kompaktowe, latwe skanowanie */
.cat-strip__chips {
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid rgba(201, 169, 110, 0.18);
}
.cat-strip__chips-label {
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--c-text-muted, #6B5F53);
	margin: 0 0 12px;
}
.cat-strip__chips-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.cat-strip-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 8px 8px 16px;
	background: #FFFFFF;
	color: var(--c-text-on-light, #1A1714);
	border: 1px solid rgba(201, 169, 110, 0.3);
	border-radius: 999px;
	text-decoration: none;
	transition: all 0.25s ease;
	box-shadow: 0 1px 3px rgba(26, 23, 20, 0.04);
}
.cat-strip-chip:hover,
.cat-strip-chip:focus-visible {
	background: var(--c-accent, #C9A96E);
	color: #FFFFFF;
	border-color: var(--c-accent, #C9A96E);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px -4px rgba(201, 169, 110, 0.4);
}
.cat-strip-chip__name {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 400;
	font-size: 14px;
	line-height: 1;
	letter-spacing: -0.005em;
}
.cat-strip-chip__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding: 0 7px;
	background: var(--c-accent-soft, #F5ECD8);
	color: var(--c-accent, #C9A96E);
	border-radius: 999px;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 700;
	font-size: 10px;
	letter-spacing: 0.04em;
	transition: all 0.25s ease;
}
.cat-strip-chip:hover .cat-strip-chip__count,
.cat-strip-chip:focus-visible .cat-strip-chip__count {
	background: rgba(255, 255, 255, 0.25);
	color: #FFFFFF;
}

/* MINI CARD - jednolity pink tile z nazwa + licznikiem (UX clean, image jako delikatna tekstura) */
.cat-strip-card {
	position: relative;
	display: block;
	width: 100%;
	flex: initial;
	aspect-ratio: 5 / 2;
	overflow: hidden;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--c-accent, #C9A96E) 0%, #A07830 100%);
	text-decoration: none;
	box-shadow: 0 4px 16px -8px rgba(201, 169, 110, 0.3);
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
	isolation: isolate;
}

.cat-strip-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 36px -10px rgba(201, 169, 110, 0.5);
}

/* IMAGE: wycieniowany, jako tekstura (uniform pink tile look mimo roznych zdjec) */
.cat-strip-card__image {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.35;
	mix-blend-mode: luminosity;
	transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}

.cat-strip-card:hover .cat-strip-card__image {
	transform: scale(1.06);
	opacity: 0.55;
}

/* OVERLAY: bottom-to-top gradient dla czytelnosci tekstu */
.cat-strip-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 35%, rgba(26, 23, 20, 0.5) 100%);
	transition: background 0.4s ease;
}

.cat-strip-card:hover .cat-strip-card__overlay {
	background: linear-gradient(180deg, transparent 30%, rgba(26, 23, 20, 0.58) 100%);
}

/* Body - na dolnej polowie, nazwa + licznik (NAZWA MA MIEJSCE!) */
.cat-strip-card__body {
	position: absolute;
	inset: 0;
	z-index: 2;
	padding: 14px 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
}

.cat-strip-card__name {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 400;
	font-size: clamp(18px, 1.5vw, 22px);
	line-height: 1.15;
	color: #FFFFFF;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3);
	text-align: center;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.cat-strip-card__count {
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 600;
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.95);
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

/* ─── GRID ZABIEGOW ────────────────────────────── */

.cat-grid-section {
	position: relative;
	z-index: 2;
	background: var(--c-bg, #F8F5F0);
	padding: clamp(64px, 9vh, 100px) 0 0;
}

.cat-grid-section__container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 80px);
}

/* SECTION HEADER nad gridem zabiegow - wyraznie oddziela od cross-strip */
.cat-grid-header {
	text-align: center;
	margin: 0 0 clamp(36px, 5vh, 56px);
}

.cat-grid-header__eyebrow {
	display: inline-block;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--c-accent, #C9A96E);
	margin-bottom: 12px;
}

.cat-grid-header__title {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 300;
	font-size: clamp(30px, 3.6vw, 48px);
	line-height: 1.1;
	letter-spacing: -0.01em;
	color: var(--c-text-on-light, #1A1714);
	margin: 0;
}

.cat-grid-header__title span {
	color: var(--c-text-muted, #6B5F53);
	font-weight: 300;
}

.cat-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(12px, 1.2vw, 18px);
}

/* ─── TREATMENT CARD - POZIOMY listing (image left, content right) ───
 * 2-col grid, karta pozioma niska. Image left z mocnym pink wash.
 * Prawa: tytul + krotki opis + meta (czas/cena).
 */

.treatment-card {
	position: relative;
	display: flex;
	flex-direction: row;
	min-height: 168px;
	overflow: hidden;
	border-radius: 16px;
	background: #FFFFFF;
	border: 1px solid rgba(201, 169, 110, 0.18);
	box-shadow:
		0 4px 16px -8px rgba(26, 23, 20, 0.08),
		0 1px 3px -1px rgba(26, 23, 20, 0.04);
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, border-color 0.3s ease;
	isolation: isolate;
}

.treatment-card:hover {
	transform: translateY(-4px);
	border-color: rgba(201, 169, 110, 0.45);
	box-shadow:
		0 20px 40px -14px rgba(201, 169, 110, 0.35),
		0 6px 14px -4px rgba(26, 23, 20, 0.1);
}

/* LINK - cala karta klikalna */
.treatment-card__link {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: block;
	text-decoration: none;
	color: inherit;
	border-radius: inherit;
}

/* MEDIA - lewa 38%, pink gradient + image */
.treatment-card__media {
	position: relative;
	flex: 0 0 38%;
	overflow: hidden;
	background: linear-gradient(135deg, var(--c-accent-soft, #F5ECD8) 0%, var(--c-accent, #C9A96E) 100%);
}

.treatment-card__image {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transform: scale(1.04);
	transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.treatment-card:hover .treatment-card__image {
	transform: scale(1.1);
}

/* OVERLAY - mocny pink wash zakrywa slabe stockowe zdjecia,
   na hover lekko sie rozjasnia (revealing photo) - editorial premium look */
.treatment-card__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, transparent 70%, rgba(255, 255, 255, 0.95) 100%),
		linear-gradient(135deg, rgba(201, 169, 110, 0.7) 0%, rgba(160, 120, 48, 0.55) 50%, rgba(201, 169, 110, 0.45) 100%);
	transition: background 0.6s ease;
	pointer-events: none;
}

.treatment-card:hover .treatment-card__overlay {
	background:
		linear-gradient(90deg, transparent 72%, rgba(255, 255, 255, 0.92) 100%),
		linear-gradient(135deg, rgba(201, 169, 110, 0.5) 0%, rgba(160, 120, 48, 0.38) 50%, rgba(201, 169, 110, 0.3) 100%);
}

/* BODY - prawa kolumna, biala, czysta hierarchia */
.treatment-card__body {
	position: relative;
	z-index: 2;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 18px 22px 18px 20px;
	gap: 6px;
	background: #FFFFFF;
	pointer-events: none;
	min-width: 0;
}

.treatment-card__title {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 400;
	font-size: clamp(17px, 1.5vw, 21px);
	line-height: 1.18;
	letter-spacing: -0.015em;
	color: var(--c-text-on-light, #1A1714);
	margin: 0;
	padding-right: 36px;        /* miejsce na info icon */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* KROTKI OPIS - 2 linie max, subtelny */
.treatment-card__desc {
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 13px;
	line-height: 1.5;
	color: var(--c-text-muted, #6B5F53);
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* META row - meta info + price na dole */
.treatment-card__meta-row {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 6px;
}

.treatment-card__time {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 500;
	font-size: 11.5px;
	letter-spacing: 0.02em;
	color: var(--c-text-muted, #6B5F53);
}
.treatment-card__time::before {
	content: '';
	display: inline-block;
	width: 13px;
	height: 13px;
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B5F53' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><polyline points='12 6 12 12 16 14'/></svg>") center / contain no-repeat;
	opacity: 0.7;
}

/* PRICE - pink filled pill - primary visual anchor karty */
.treatment-card__price {
	display: inline-flex;
	align-items: center;
	padding: 5px 12px;
	background: var(--c-accent, #C9A96E);
	border-radius: 999px;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #FFFFFF;
	transition: all 0.3s ease;
	margin-left: auto;            /* przyklej do prawej */
}

.treatment-card:hover .treatment-card__price {
	background: var(--c-text-on-light, #1A1714);
	transform: scale(1.04);
}

/* INFO BUTTON - top-LEFT na zdjeciu (top-right zajmuje arrow circle z V4) */
.treatment-card__info {
	position: absolute;
	top: 14px;
	left: 14px;            /* z right na left - nie koliduje z arrow circle */
	z-index: 4;
	width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.95);
	color: var(--c-accent, #C9A96E);
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	cursor: pointer;
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	transition: all 0.25s ease;
	padding: 0;
	box-shadow: 0 6px 14px -4px rgba(26, 23, 20, 0.18);
}

.treatment-card__info svg { width: 13px; height: 13px; }

.treatment-card__info:hover,
.treatment-card__info:focus-visible {
	background: var(--c-accent, #C9A96E);
	color: #FFFFFF;
	border-color: var(--c-accent, #C9A96E);
	transform: scale(1.1);
}

.treatment-card__info-desc {
	position: absolute;
	left: -99999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* ─── TREATMENT INFO MODAL - popup z opisem zabiegu (info icon trigger) ─── */
.treatment-info-modal[hidden] { display: none; }
.treatment-info-modal {
	position: fixed;
	inset: 0;
	z-index: 10002;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: tInfoFade 0.25s ease;
}
@keyframes tInfoFade { from { opacity: 0; } to { opacity: 1; } }
.treatment-info-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(26, 23, 20, 0.55);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}
.treatment-info-modal__dialog {
	position: relative;
	width: 100%;
	max-width: 540px;
	margin: 20px;
	background: #FFFFFF;
	border-radius: 18px;
	padding: clamp(28px, 4vw, 42px) clamp(24px, 3.5vw, 38px) clamp(24px, 3.5vw, 32px);
	box-shadow: 0 30px 80px -20px rgba(26, 23, 20, 0.45);
	animation: tInfoSlide 0.4s cubic-bezier(0.34, 1.36, 0.64, 1);
}
@keyframes tInfoSlide {
	from { transform: translateY(20px) scale(0.96); opacity: 0; }
	to   { transform: translateY(0)     scale(1);   opacity: 1; }
}
.treatment-info-modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 36px;
	height: 36px;
	background: transparent;
	border: 1px solid #F0E4E6;
	border-radius: 50%;
	color: #6B5F53;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}
.treatment-info-modal__close:hover {
	background: var(--c-accent, #C9A96E);
	color: #FFFFFF;
	border-color: var(--c-accent, #C9A96E);
	transform: rotate(90deg);
}
.treatment-info-modal__eyebrow {
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--c-accent, #C9A96E);
	margin: 0 0 8px;
}
.treatment-info-modal__title {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 400;
	font-size: clamp(24px, 2.6vw, 32px);
	line-height: 1.1;
	letter-spacing: -0.015em;
	color: var(--c-text-on-light, #1A1714);
	margin: 0 0 12px;
	padding-right: 40px;       /* miejsce na close button */
}
.treatment-info-modal__meta {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin: 0 0 18px;
}
.treatment-info-modal__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 12px;
	background: var(--c-accent-soft, #F5ECD8);
	color: var(--c-text-on-light, #1A1714);
	border-radius: 999px;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.05em;
}
.treatment-info-modal__meta-item--price {
	background: var(--c-accent, #C9A96E);
	color: #FFFFFF;
}
.treatment-info-modal__body {
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 14.5px;
	line-height: 1.65;
	color: var(--c-text-on-light, #1A1714);
	margin: 0 0 24px;
}
.treatment-info-modal__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 22px;
	background: var(--c-text-on-light, #1A1714);
	color: #FFFFFF;
	border-radius: 999px;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.25s ease;
}
.treatment-info-modal__cta:hover {
	background: var(--c-accent, #C9A96E);
	transform: translateX(2px);
}
.treatment-info-modal__cta svg { transition: transform 0.25s ease; }
.treatment-info-modal__cta:hover svg { transform: translateX(3px); }

body.treatment-info-open { overflow: hidden; }

@media (max-width: 600px) {
	.treatment-info-modal__dialog {
		margin: 12px;
		padding: 28px 22px 22px;
		border-radius: 14px;
	}
	.treatment-info-modal__title { padding-right: 36px; }
}

/* ─── CTA CARD (konsultacja na koncu grida) - poziomo, kompaktowo ─── */

.treatment-card--cta {
	min-height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--c-text-on-light, #1A1714);
	background: linear-gradient(135deg, #FFF 0%, var(--c-accent-soft, #F5ECD8) 60%, rgba(201, 169, 110, 0.4) 100%);
	border: 1px solid rgba(201, 169, 110, 0.4);
	padding: 16px 20px;
	box-shadow:
		0 6px 20px -8px rgba(201, 169, 110, 0.3),
		inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}
/* SPAN: CTA card pelna szerokosc gridu gdy liczba zabiegow parzysta (alone na nowym rzedzie) */
.treatment-card--cta-span {
	grid-column: 1 / -1;
}
.treatment-card--cta:hover {
	background: linear-gradient(135deg, #FFF 0%, var(--c-accent-soft, #F5ECD8) 50%, rgba(201, 169, 110, 0.55) 100%);
	border-color: var(--c-accent, #C9A96E);
}
@media (max-width: 767px) {
	.treatment-card--cta {
		min-height: 120px;
		padding: 14px;
	}
}

.treatment-card--cta__inner {
	text-align: center;
	color: var(--c-text-on-light, #1A1714);
}
.treatment-card--cta__inner svg {
	color: var(--c-accent, #C9A96E);
	margin-bottom: 16px;
}
.treatment-card--cta__inner h3 {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 400;
	font-size: clamp(20px, 1.8vw, 26px);
	color: var(--c-text-on-light, #1A1714);
	margin: 0 0 10px;
	text-shadow: none;
}
.treatment-card--cta__inner p {
	font-size: 13px;
	color: var(--c-text-muted, #6B5F53);
	line-height: 1.5;
	margin: 0 0 18px;
}
.treatment-card--cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 20px;
	background: var(--c-text-on-light, #1A1714);
	color: #FFFFFF;
	border-radius: 999px;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 600;
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: all 0.25s ease;
}
.treatment-card--cta:hover .treatment-card--cta__btn,
.treatment-card--cta:focus-visible .treatment-card--cta__btn {
	background: var(--c-accent, #C9A96E);
	color: #FFFFFF;             /* explicite - inaczej dziedziczy color z hover parent */
}
.treatment-card--cta:hover .treatment-card--cta__btn span,
.treatment-card--cta:hover .treatment-card--cta__btn {
	color: #FFFFFF;
}

.treatment-card--cta__inner svg {
	color: var(--c-accent, #C9A96E);
	margin-bottom: 16px;
}

.treatment-card--cta__inner h3 {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 400;
	font-size: clamp(20px, 1.8vw, 26px);
	margin: 0 0 12px;
	color: var(--c-text-on-light, #1A1714);
}

.treatment-card--cta__inner p {
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 13px;
	line-height: 1.55;
	color: var(--c-text-muted, #5A5A5A);
	margin: 0 0 20px;
}

.treatment-card--cta__btn {
	display: inline-block;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--c-accent, #C9A96E);
	text-decoration: underline;
	text-underline-offset: 6px;
}

/* ─── EMPTY STATE (gdy kategoria nie ma jeszcze zabiegow) ─── */

.cat-empty {
	text-align: center;
	padding: clamp(60px, 10vh, 120px) clamp(20px, 4vw, 60px);
	color: var(--c-text-on-light, #1A1714);
	background: var(--c-accent-soft, #F5ECD8);
	border-radius: 8px;
	max-width: 720px;
	margin: 0 auto;
}

.cat-empty svg {
	color: var(--c-accent, #C9A96E);
	margin-bottom: 24px;
	opacity: 0.7;
}

.cat-empty__title {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 300;
	font-size: clamp(26px, 3.4vw, 40px);
	line-height: 1.15;
	margin: 0 0 16px;
}

.cat-empty__lead {
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 15px;
	line-height: 1.6;
	color: var(--c-text-muted, #6B5F53);
	margin: 0 auto 32px;
	max-width: 480px;
}

.cat-empty__btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 16px 32px;
	background: var(--c-accent, #C9A96E);
	color: #FFFFFF;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 999px;
	transition: background 0.3s ease, transform 0.3s ease, gap 0.3s ease;
}

.cat-empty__btn:hover {
	background: #A07830;
	transform: translateY(-2px);
	gap: 18px;
}

/* ─── BOTTOM CTA (newsletter + book) ─── */

.cat-bottom {
	position: relative;
	z-index: 2;
	background: var(--c-bg, #F8F5F0);
	margin-top: clamp(80px, 12vh, 140px);
	padding: clamp(64px, 9vh, 120px) 0;
	border-top: 1px solid var(--c-line-soft, #D1C7C1);
	text-align: center;
}

.cat-bottom__container {
	max-width: 720px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 64px);
}

.cat-bottom__title {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 300;
	font-size: clamp(32px, 4vw, 56px);
	line-height: 1.1;
	letter-spacing: -0.01em;
	color: var(--c-text-on-light, #1A1714);
	margin: 0 0 20px;
}

.cat-bottom__lead {
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 15px;
	line-height: 1.65;
	color: var(--c-text-muted, #6B5F53);
	margin: 0 auto 36px;
	max-width: 480px;
}

.cat-bottom__form {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	margin: 0 auto 36px;
	max-width: 420px;
}

.cat-bottom__input {
	width: 100%;
	padding: 14px 0;
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--c-line-soft, #D1C7C1);
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 12px;
	letter-spacing: 0.25em;
	text-align: center;
	color: var(--c-text-on-light, #1A1714);
	transition: border-color 0.3s ease;
}

.cat-bottom__input:focus {
	outline: none;
	border-bottom-color: var(--c-accent, #C9A96E);
}

.cat-bottom__input::placeholder {
	color: var(--c-text-muted, #A8978C);
}

.cat-bottom__submit {
	padding: 16px 36px;
	background: var(--c-text-on-light, #1A1714);
	color: #FFFFFF;
	border: 0;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.3s ease;
}

.cat-bottom__submit:hover {
	background: var(--c-accent, #C9A96E);
}

.cat-bottom__divider {
	display: flex;
	align-items: center;
	gap: 16px;
	margin: 0 0 32px;
}

.cat-bottom__divider::before,
.cat-bottom__divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--c-line-soft, #D1C7C1);
}

.cat-bottom__divider span {
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 10px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--c-text-muted, #6B5F53);
}

.cat-bottom__book {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 18px 36px;
	background: var(--c-accent, #C9A96E);
	color: #FFFFFF;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 999px;
	transition: background 0.3s ease, gap 0.3s ease, transform 0.3s ease;
	box-shadow: 0 12px 32px -12px rgba(201, 169, 110, 0.5);
}

.cat-bottom__book:hover {
	background: #A07830;
	gap: 18px;
	transform: translateY(-2px);
}

/* ─── SEO CONTENT BLOCK (editorial layout: header + stats + 2-kol content z counterami + FAQ) ─── */

.cat-seo {
	position: relative;
	z-index: 2;
	background: #FFFFFF;
	padding: clamp(72px, 10vh, 140px) 0 clamp(64px, 9vh, 120px);
	border-top: 1px solid var(--c-line-soft, #E4E5E6);
	margin-top: clamp(48px, 7vh, 96px);
}

.cat-seo__container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 80px);
}

/* HEADER - centered, eyebrow + H2 + intro + decorative divider */
.cat-seo__header {
	text-align: center;
	max-width: 760px;
	margin: 0 auto clamp(48px, 6.5vh, 72px);
}

.cat-seo__eyebrow {
	display: inline-block;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 600;
	font-size: 11px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--c-text-on-light, #1A1714);
	margin-bottom: 16px;
	padding: 4px 14px;
	background: rgba(255, 255, 255, 0.7);
	border-radius: 999px;
}

.cat-seo__title {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 300;
	font-size: clamp(32px, 4.4vw, 56px);
	line-height: 1.1;
	letter-spacing: -0.015em;
	color: var(--c-text-on-light, #1A1714);
	margin: 0 0 20px;
}

.cat-seo__intro {
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: clamp(15px, 1.15vw, 17px);
	line-height: 1.65;
	color: var(--c-text-muted, #6B5F53);
	margin: 0 auto 28px;
}

.cat-seo__divider {
	display: block;
	width: 48px;
	height: 1px;
	margin: 0 auto;
	background: linear-gradient(to right, transparent, var(--c-accent, #C9A96E), transparent);
}

/* SPLIT SECTION - 2-kol layout (text + image alternating), reverse modifier dla sekcji 2 */
.cat-seo__split {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(32px, 4vh, 56px);
	align-items: center;
	margin-bottom: clamp(56px, 8vh, 96px);
}

.cat-seo__split:last-of-type {
	margin-bottom: 0;
}

/* Mobile (<900px): zawsze TEXT pierwszy, MEDIA drugi (override DOM order dla obu wariantow)
   + mniejsze zdjecie (aspect 4/3 zamiast 4/5, max-width 70%) */
@media (max-width: 899px) {
	.cat-seo__split .cat-seo__split-text  { order: 1; }
	.cat-seo__split .cat-seo__split-media {
		order: 2;
		max-width: 70%;
		margin: 0 auto;
		aspect-ratio: 4 / 3;
	}
}
@media (max-width: 560px) {
	.cat-seo__split .cat-seo__split-media {
		max-width: 85%;
	}
}

@media (min-width: 900px) {
	.cat-seo__split {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: clamp(48px, 5vw, 88px);
	}
	.cat-seo__split--reverse .cat-seo__split-text {
		order: 2;
	}
	.cat-seo__split--reverse .cat-seo__split-media {
		order: 1;
	}
}

/* TEXT side - num eyebrow + H3 + content */
.cat-seo__split-text {
	position: relative;
	display: flex;
	flex-direction: column;
}

/* Numer "01/02" - duzy editorial, prawa gorna strona (jak .usluga-details__col-label) */
.cat-seo__split-num {
	position: absolute;
	top: 0;
	right: 0;
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 300;
	font-size: clamp(56px, 7vw, 88px);
	line-height: 0.85;
	color: var(--c-accent, #C9A96E);
	opacity: 0.45;
	margin: 0;
	letter-spacing: -0.04em;
	pointer-events: none;
}

.cat-seo__split-title {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 300;
	font-size: clamp(26px, 3.4vw, 44px);
	line-height: 1.1;
	letter-spacing: -0.015em;
	color: var(--c-text-on-light, #1A1714);
	margin: 0 0 20px;
	padding-right: 88px;       /* miejsce na num w rogu */
}

.cat-seo__split-content {
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 16px;
	line-height: 1.75;
	color: var(--c-text-on-light, #1A1714);
}

.cat-seo__split-content p { margin: 0 0 16px; }
.cat-seo__split-content p:last-child { margin-bottom: 0; }

.cat-seo__split-content h4 {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-weight: 500;
	font-style: italic;
	font-size: clamp(17px, 1.6vw, 20px);
	margin: 24px 0 10px;
	color: var(--c-text-on-light, #1A1714);
}

.cat-seo__split-content ul,
.cat-seo__split-content ol {
	margin: 0 0 16px;
	padding-left: 20px;
}

.cat-seo__split-content li {
	margin-bottom: 8px;
}

.cat-seo__split-content ul li::marker { color: var(--c-text-on-light, #1A1714); }

.cat-seo__split-content a {
	color: var(--c-accent, #C9A96E);
	text-decoration: underline;
	text-underline-offset: 4px;
	transition: color 0.3s ease;
}

.cat-seo__split-content a:hover { color: #A07830; }

.cat-seo__split-content strong {
	color: var(--c-text-on-light, #1A1714);
	font-weight: 600;
}

/* MEDIA side - image z border-radius, placeholder pinkowy gradient gdy brak */
.cat-seo__split-media {
	width: 100%;
	aspect-ratio: 4 / 5;
	background-size: cover;
	background-position: center;
	background-color: var(--c-accent, #C9A96E);
	border-radius: 12px;
	overflow: hidden;
	box-shadow:
		0 32px 64px -28px rgba(26, 23, 20, 0.32),
		0 16px 32px -12px rgba(26, 23, 20, 0.18),
		0 0 0 1px rgba(255, 255, 255, 0.45);
}

.cat-seo__split-media--placeholder {
	background:
		radial-gradient(ellipse 60% 80% at 30% 20%, rgba(255, 255, 255, 0.35) 0%, transparent 55%),
		radial-gradient(ellipse 80% 60% at 70% 90%, rgba(26, 23, 20, 0.25) 0%, transparent 60%),
		linear-gradient(135deg, var(--c-accent, #C9A96E) 0%, #A07830 60%, #7A5C1E 100%);
	position: relative;
}

.cat-seo__split-media--placeholder::after {
	content: 'PARENDI';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 300;
	font-size: clamp(28px, 3.5vw, 48px);
	color: #FFFFFF;
	letter-spacing: 0.05em;
	text-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
	pointer-events: none;
}

/* FAQ accordion - z FAQPage schema */
.cat-seo__faq {
	margin-top: clamp(48px, 7vh, 80px);
	padding-top: clamp(36px, 5vh, 56px);
	border-top: 1px solid rgba(201, 169, 110, 0.35);
}

.cat-seo__faq-title {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 400;
	font-size: clamp(22px, 2.4vw, 30px);
	text-align: center;
	margin: 0 0 32px;
	color: var(--c-text-on-light, #1A1714);
}

.cat-seo__faq-list {
	margin: 0;
	padding: 0;
}

.cat-seo__faq-item {
	background: #FFFFFF;
	border: 1px solid rgba(209, 199, 193, 0.4);
	border-radius: 8px;
	margin-bottom: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(26, 23, 20, 0.04);
	transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.cat-seo__faq-item:hover {
	box-shadow: 0 6px 18px rgba(26, 23, 20, 0.08);
	transform: translateY(-1px);
}

.cat-seo__faq-item[open] {
	border-color: var(--c-accent, #C9A96E);
	box-shadow: 0 4px 14px rgba(201, 169, 110, 0.18);
}

.cat-seo__faq-q {
	padding: 18px 56px 18px 22px;
	cursor: pointer;
	list-style: none;
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 400;
	font-size: clamp(16px, 1.4vw, 19px);
	color: var(--c-text-on-light, #1A1714);
	position: relative;
	transition: background 0.3s ease;
}

.cat-seo__faq-q::-webkit-details-marker { display: none; }

.cat-seo__faq-q::after {
	content: '+';
	position: absolute;
	right: 22px;
	top: 50%;
	transform: translateY(-50%);
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 300;
	font-size: 26px;
	color: var(--c-accent, #C9A96E);
	transition: transform 0.3s ease;
	line-height: 1;
}

.cat-seo__faq-item[open] .cat-seo__faq-q::after {
	content: '-';
}

.cat-seo__faq-q:hover {
	background: var(--c-accent-soft, #F5ECD8);
}

.cat-seo__faq-a {
	padding: 0 22px 22px;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 14px;
	line-height: 1.7;
	color: var(--c-text-muted, #5A5A5A);
}

.cat-seo__faq-a p { margin: 0 0 12px; }
.cat-seo__faq-a p:last-child { margin-bottom: 0; }

/* ============================================================
   SINGLE ZABIEG (single-usluga.php)
   ============================================================ */

.usluga-single {
	background: var(--c-bg, #F8F5F0);
	color: var(--c-text-on-light, #1A1714);
}

/* ─── HERO SINGLE (split: content left + photo right) ─── */

.usluga-hero {
	padding: clamp(100px, 14vh, 160px) 0 clamp(60px, 9vh, 100px);
	background: linear-gradient(180deg, var(--c-accent-soft, #F5ECD8) 0%, var(--c-bg, #F8F5F0) 100%);
}

.usluga-hero__container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 80px);
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(40px, 6vh, 80px);
	align-items: start;
}

@media (min-width: 900px) {
	.usluga-hero__container {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	}
}

.usluga-hero__content {
	min-width: 0;
}

.usluga-hero__breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 11px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--c-text-muted, #6B5F53);
	margin-bottom: 28px;
}

.usluga-hero__breadcrumb a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

.usluga-hero__breadcrumb a:hover { color: var(--c-accent, #C9A96E); }

.usluga-hero__breadcrumb span[aria-hidden] { opacity: 0.5; }

.usluga-hero__eyebrow {
	display: inline-block;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--c-accent, #C9A96E);
	margin-bottom: 18px;
}

.usluga-hero__title {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 300;
	font-size: clamp(40px, 6vw, 84px);
	line-height: 1.02;
	letter-spacing: -0.02em;
	color: var(--c-text-on-light, #1A1714);
	margin: 0 0 24px;
}

.usluga-hero__lead {
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: clamp(15px, 1.2vw, 18px);
	line-height: 1.65;
	color: var(--c-text-muted, #5A5A5A);
	margin: 0 0 36px;
	max-width: 560px;
}

.usluga-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin: 0 0 36px;
	padding: 24px 0;
	border-top: 1px solid var(--c-line-soft, #D1C7C1);
	border-bottom: 1px solid var(--c-line-soft, #D1C7C1);
}

.usluga-hero__meta-item {
	display: inline-flex;
	align-items: baseline;
	gap: 6px;
	flex-wrap: wrap;
	margin: 0;
	font-family: var(--font-sans, 'Inter', sans-serif);
}

.usluga-hero__price-from,
.usluga-hero__price-sep,
.usluga-hero__price-unit {
	font-size: 13px;
	color: var(--c-text-muted, #6B5F53);
	letter-spacing: 0.02em;
}

.cat-hero .usluga-hero__price-from,
.cat-hero .usluga-hero__price-unit {
	color: rgba(255, 255, 255, 0.85);
}

.usluga-hero__price {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-weight: 500;
	font-size: clamp(20px, 1.8vw, 26px);
	color: var(--c-text-on-light, #1A1714);
	letter-spacing: -0.01em;
}

.usluga-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.usluga-hero__cta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 16px 32px;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 999px;
	transition: background 0.3s ease, color 0.3s ease, gap 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.usluga-hero__cta--primary {
	background: var(--c-btn-gradient, linear-gradient(120deg, #7A5C1E 0%, #C9A96E 100%));
	color: #FFFFFF;
	box-shadow: 0 12px 32px -12px rgba(201, 169, 110, 0.5);
}

.usluga-hero__cta--primary:hover {
	background: linear-gradient(120deg, #5A4210 0%, #A07830 100%);
	transform: translateY(-2px);
	gap: 18px;
}

.usluga-hero__cta--ghost {
	background: transparent;
	color: var(--c-text-on-light, #1A1714);
	border: 1px solid var(--c-text-on-light, #1A1714);
}

.usluga-hero__cta--ghost:hover {
	background: var(--c-text-on-light, #1A1714);
	color: #FFFFFF;
	gap: 18px;
}

/* PHOTO RIGHT */
.usluga-hero__photo {
	margin: 0;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 24px 56px -20px rgba(26, 23, 20, 0.25);
}

.usluga-hero__photo img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 5;
	-o-object-fit: cover;
	object-fit: cover;
}

.usluga-hero__photo-placeholder {
	width: 100%;
	aspect-ratio: 4 / 5;
	background: linear-gradient(135deg, var(--c-accent-soft, #F5ECD8) 0%, var(--c-accent, #C9A96E) 100%);
}

/* ─── CONTENT (opis dlugi WYSIWYG - split layout + CURTAIN wjezdza nad sticky hero jak cat-strip) ─── */

/* CURTAIN - IDENTYCZNE wartosci jak .cat-strip w kategoriach (margin-top -60vh, padding 56-80/48-72).
   Pin-wrap 120vh - hero 60vh = 60vh scrollu, w trakcie ktorego content wjezdza na sticky hero. */
.usluga-content {
	position: relative;
	z-index: 2;
	background: var(--c-bg, #F8F5F0);
	/* Desktop: curtain -550px (hero 700px sticky, zostawia top 150px hero widoczne).
	   Tablet/mobile - override w media query nizej. */
	margin-top: -550px;
	border-top-left-radius: 36px;
	border-top-right-radius: 36px;
	box-shadow: 0 -12px 40px -18px rgba(26, 23, 20, 0.25);
	padding: clamp(80px, 10vh, 120px) 0 clamp(48px, 6.5vh, 72px);
}

/* Tablet (768-1024): mniejszy curtain (hero ma min-height 520px, content peek tylko 40px) */
@media (max-width: 1024px) and (min-width: 768px) {
	.usluga-content {
		margin-top: -48px;
		border-top-left-radius: 28px;
		border-top-right-radius: 28px;
		padding: clamp(48px, 8vh, 80px) 0 clamp(40px, 6vh, 64px);
	}
}

/* Mobile (<768px): ZERO curtain - sekcje normalnie po sobie, bez border-radius peek */
@media (max-width: 767px) {
	.usluga-content {
		margin-top: 0;
		border-top-left-radius: 0;
		border-top-right-radius: 0;
		box-shadow: none;
		padding: clamp(40px, 6vh, 64px) 0 clamp(32px, 5vh, 48px);
	}
}

/* Lead pod H2 w sekcji opisu (przeniesiony z hero) */
.usluga-content__lead {
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: clamp(15px, 1.2vw, 18px);
	line-height: 1.65;
	color: var(--c-text-muted, #6B5F53);
	margin: 14px 0 0;
	font-style: italic;
}

.usluga-content__container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 80px);
}

.usluga-pricing__container,
.usluga-faq__container {
	max-width: 920px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 64px);
}

/* SPLIT - image lewa + text prawa (na desktop), stack pionowo na mobile */
.usluga-content__split {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(32px, 4vh, 56px);
	/* align-items: start - sticky media wymaga zeby element nie byl rozciagany przez align-items: center */
	align-items: start;
}

/* Mobile (<900px): TEXT pierwszy, MEDIA drugi (zamienione kolejnoscia) + mniejsze zdjecie */
@media (max-width: 899px) {
	.usluga-content__split .usluga-content__text  { order: 1; }
	.usluga-content__split .usluga-content__media {
		order: 2;
		max-width: 70%;
		margin: 0 auto;
		aspect-ratio: 4 / 3;          /* szersze ale niskie - mniej zajmuje miejsca */
	}
}
@media (max-width: 560px) {
	.usluga-content__split .usluga-content__media {
		max-width: 85%;
		aspect-ratio: 4 / 3;
	}
}

@media (min-width: 900px) {
	.usluga-content__split {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
		gap: clamp(48px, 5vw, 88px);
	}

	/* STICKY MEDIA - przypina sie podczas scrollu gdy tresc po prawej jest dluzsza.
	   align-self: start = nie rozciagaj do height wiersza grid (sticky vs stretch konflikt).
	   -webkit-sticky = Safari fallback. !important - zabezpieczenie przed nadpisaniem. */
	.usluga-content__split .usluga-content__media {
		position: -webkit-sticky !important;
		position: sticky !important;
		top: calc(var(--floating-nav-height, 76px) + 24px) !important;
		align-self: start !important;
		max-height: calc(100vh - var(--floating-nav-height, 76px) - 48px);
		will-change: transform;
	}
}

.usluga-content__media {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 5;
	background-size: cover;
	background-position: center;
	background-color: var(--c-accent-soft, #F5ECD8);
	border-radius: 12px;
	overflow: hidden;
	box-shadow:
		0 32px 64px -28px rgba(201, 169, 110, 0.45),
		0 16px 32px -12px rgba(26, 23, 20, 0.12),
		0 0 0 1px rgba(201, 169, 110, 0.15);
}

/* Placeholder z bogatym wielowarstwowym gradientem + Allura script + delikatna ramka */
.usluga-content__media--placeholder {
	background:
		radial-gradient(ellipse 60% 80% at 30% 20%, rgba(255, 255, 255, 0.25) 0%, transparent 55%),
		radial-gradient(ellipse 80% 60% at 70% 90%, rgba(160, 120, 48, 0.4) 0%, transparent 60%),
		linear-gradient(135deg, var(--c-accent-soft, #F5ECD8) 0%, var(--c-accent, #C9A96E) 100%);
}

.usluga-content__media--placeholder::before {
	content: 'the art of beauty';
	position: absolute;
	top: clamp(20px, 4%, 36px);
	left: clamp(20px, 4%, 36px);
	font-family: 'Allura', cursive;
	font-size: clamp(22px, 2.4vw, 32px);
	color: rgba(255, 255, 255, 0.8);
	line-height: 1;
	letter-spacing: -0.01em;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.usluga-content__media--placeholder::after {
	content: 'PARENDI';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 300;
	font-size: clamp(36px, 4.5vw, 64px);
	color: #FFFFFF;
	letter-spacing: 0.08em;
	text-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

.usluga-content__text {
	min-width: 0;
}

.usluga-details__container,
.usluga-related__container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 80px);
}

.usluga-content__header,
.usluga-details__header,
.usluga-pricing__header,
.usluga-faq__header,
.usluga-related__header {
	margin: 0 0 clamp(28px, 4vh, 48px);
}

/* Pricing + FAQ headers - centrowane (sekcje centralne, nie split) */
.usluga-pricing__header,
.usluga-faq__header {
	text-align: center;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

.usluga-pricing__header .usluga-pricing__lead {
	margin-left: auto;
	margin-right: auto;
}

.usluga-content__eyebrow,
.usluga-details__eyebrow,
.usluga-pricing__eyebrow,
.usluga-faq__eyebrow,
.usluga-related__eyebrow {
	display: inline-block;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--c-accent, #C9A96E);
	margin-bottom: 12px;
}

.usluga-content__title,
.usluga-details__title,
.usluga-pricing__title,
.usluga-faq__title,
.usluga-related__title {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 300;
	font-size: clamp(30px, 3.6vw, 48px);
	line-height: 1.1;
	letter-spacing: -0.01em;
	color: var(--c-text-on-light, #1A1714);
	margin: 0;
}

.usluga-content__title { margin-bottom: 8px; }

.usluga-content__tagline {
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 14px;
	font-weight: 400;
	color: var(--c-text-muted, #6B5F53);
	margin: 0 0 clamp(20px, 3vh, 32px);
	letter-spacing: 0.01em;
}

.usluga-content__body {
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 16px;
	line-height: 1.75;
	color: var(--c-text-on-light, #1A1714);
}

.usluga-content__body p { margin: 0 0 18px; }
.usluga-content__body p:last-child { margin-bottom: 0; }
.usluga-content__body h1 {
	position: relative;
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 500;
	font-size: clamp(32px, 4vw, 52px);
	line-height: 1.15;
	letter-spacing: -0.015em;
	color: var(--c-text, #1A1714);
	padding-left: clamp(20px, 2.5vw, 32px);
	margin: 8px 0 40px;
}
.usluga-content__body h1::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.18em;
	bottom: 0.18em;
	width: 4px;
	background: var(--c-accent, #C9A96E);
	border-radius: 2px;
}
.usluga-content__body h2 {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 600;
	font-size: clamp(22px, 2.6vw, 32px);
	margin: 40px 0 16px;
	color: var(--c-text-on-light, #1A1714);
}
.usluga-content__body h3 {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 600;
	font-size: clamp(18px, 2vw, 24px);
	margin: 32px 0 12px;
	color: var(--c-text-on-light, #1A1714);
}
.usluga-content__body h4 {
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 600;
	font-size: clamp(14px, 1.4vw, 16px);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin: 24px 0 10px;
	color: var(--c-text-on-light, #1A1714);
}
.usluga-content__body h2 a,
.usluga-content__body h3 a,
.usluga-content__body h4 a {
	color: inherit;
	text-decoration: none;
}
.usluga-content__body ul,
.usluga-content__body ol,
.usluga-seo-extra__body ul,
.usluga-seo-extra__body ol {
	margin: 0 0 18px;
	padding-left: 0;
	list-style: none;
}

.usluga-content__body ul li,
.usluga-seo-extra__body ul li {
	position: relative;
	padding: 6px 0 6px 28px;
	margin-bottom: 4px;
	line-height: 1.6;
}

.usluga-content__body ul li::before,
.usluga-seo-extra__body ul li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 6px;
	font-size: 14px;
	font-weight: 700;
	color: var(--c-accent, #C9A96E);
	line-height: 1.6;
}

.usluga-content__body ol,
.usluga-seo-extra__body ol {
	padding-left: 22px;
	list-style: decimal;
}

.usluga-content__body li { margin-bottom: 4px; }
.usluga-content__body strong { color: var(--c-text-on-light, #1A1714); }

/* ─── DETAILS GRID (wskazania / efekty / przeciwwskazania + zalecana seria) ─── */

.usluga-details {
	position: relative;
	z-index: 2;
	padding: clamp(48px, 7vh, 80px) 0;
	background: var(--c-accent-soft, #F5ECD8);
	text-align: center;
}

.usluga-details__header {
	text-align: center;
}

/* Grid - max-width 1720px (prawie full screen na 1920+), gap mniejszy = wiecej miejsca na content. */
.usluga-details__grid {
	max-width: 1720px;
	margin: 0 auto;
	padding: 0 clamp(16px, 2vw, 32px);
	text-align: left;
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(16px, 1.5vw, 24px);
}

@media (min-width: 768px) {
	.usluga-details__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Karta editorial PARENDI - bez ramki, soft shadow, generous padding pionowy, mniejszy poziomy
   zeby content mial wiecej miejsca. Border-radius wieksze (modern). */
.usluga-details__col {
	position: relative;
	background: #FFFFFF;
	border-radius: 20px;
	padding: clamp(32px, 3vw, 44px) clamp(28px, 2.4vw, 36px);
	border: 0;
	box-shadow:
		0 4px 24px -8px rgba(26, 23, 20, 0.06),
		0 1px 0 rgba(201, 169, 110, 0.12);
	min-width: 0;
	transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.usluga-details__col:hover {
	box-shadow:
		0 16px 40px -12px rgba(201, 169, 110, 0.25),
		0 1px 0 rgba(201, 169, 110, 0.18);
	transform: translateY(-2px);
}

/* Numer "01/02/03" - editorial floating top-right (z drugiej strony niz tytul) */
.usluga-details__col-label {
	position: absolute;
	top: clamp(20px, 2.4vw, 32px);
	right: clamp(24px, 2.4vw, 36px);
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 300;
	font-size: clamp(56px, 7vw, 80px);
	line-height: 0.85;
	color: var(--c-accent, #C9A96E);
	opacity: 0.45;
	margin: 0;
	letter-spacing: -0.04em;
	pointer-events: none;
}

.usluga-details__col-title {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 400;
	font-size: clamp(24px, 2.4vw, 30px);
	line-height: 1.1;
	letter-spacing: -0.01em;
	margin: 0 0 clamp(20px, 2.5vh, 28px);
	padding: clamp(4px, 0.6vh, 8px) 70px clamp(16px, 2vh, 22px) 0;
	border-bottom: 1px solid rgba(201, 169, 110, 0.25);
	color: var(--c-text-on-light, #1A1714);
}

.usluga-details__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Modern editorial: kazdy item z cienka pink linia po lewej + bez kropek + line separator
   pomiedzy itemami. Czysciej i bardziej w stylu magazynu lifestyle. */
.usluga-details__list li {
	position: relative;
	padding: 12px 0 12px 18px;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 15px;
	line-height: 1.55;
	color: var(--c-text-on-light, #1A1714);
	border-bottom: 1px solid rgba(209, 199, 193, 0.35);
	margin: 0;
	transition: padding-left 0.3s ease, color 0.3s ease;
}

.usluga-details__list li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.usluga-details__item-extra { display: none; }
.usluga-details__col.is-open .usluga-details__item-extra { display: list-item; }

.usluga-details__toggle {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 16px;
	padding: 9px 18px;
	background: none;
	border: 1px solid var(--c-accent, #C9A96E);
	border-radius: 100px;
	cursor: pointer;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 12px;
	font-weight: 600;
	color: var(--c-accent, #C9A96E);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: background 0.2s, color 0.2s;
}
.usluga-details__toggle:hover {
	background: var(--c-accent, #C9A96E);
	color: #fff;
}
.usluga-details__toggle span { font-weight: 400; }

.usluga-hero__price-note {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	padding: 12px 16px;
	background: rgba(201, 169, 110, 0.12);
	border: 1px solid rgba(201, 169, 110, 0.3);
	border-radius: 6px;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 13px;
	line-height: 1.5;
	color: rgba(255,255,255,0.9);
	margin-bottom: 12px;
}
.usluga-hero__price-note svg { flex-shrink: 0; margin-top: 2px; opacity: 0.8; }

.usluga-details__list li:first-child {
	padding-top: 0;
}

.usluga-details__list li:first-child::before {
	top: 6px;
}

.usluga-details__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 22px;
	width: 8px;
	height: 1px;
	background: var(--c-accent, #C9A96E);
	transition: width 0.3s ease;
}

.usluga-details__list li:hover {
	color: var(--c-accent, #C9A96E);
	padding-left: 22px;
}

.usluga-details__list li:hover::before {
	width: 14px;
}

.usluga-details__list--accent li::before { background: #C9A961; }
.usluga-details__list--muted li::before { background: var(--c-text-muted, #6B5F53); }

.usluga-details__series {
	margin-top: clamp(32px, 5vh, 56px);
	padding: clamp(24px, 3vw, 36px);
	background: var(--c-text-on-light, #1A1714);
	color: #FFFFFF;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 8px;
}

.usluga-details__series-label {
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 11px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--c-accent, #C9A96E);
}

.usluga-details__series-value {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 400;
	font-size: clamp(20px, 2vw, 26px);
	margin: 0;
}

/* ─── PRICING TABLE (premium look z hover, mobile responsive, MyBenefit note + CTA) ─── */

.usluga-pricing {
	background: var(--c-bg, #F8F5F0);
	padding: clamp(56px, 8vh, 100px) 0;
	position: relative;
	z-index: 2;
}

.usluga-pricing__lead {
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 15px;
	line-height: 1.6;
	color: var(--c-text-muted, #6B5F53);
	margin: 14px 0 0;
}

/* Wrap zapewnia horizontal scroll na mobile + radius dla table */
.usluga-pricing__wrap {
	overflow-x: auto;
	border-radius: 12px;
	background: #FFFFFF;
	box-shadow: 0 12px 40px -18px rgba(26, 23, 20, 0.14);
	border: 1px solid rgba(209, 199, 193, 0.5);
}

.usluga-pricing__table {
	width: 100%;
	border-collapse: collapse;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 14px;
	min-width: 480px;
}

.usluga-pricing__table thead {
	background: var(--c-accent-soft, #F5ECD8);
}

.usluga-pricing__table th {
	padding: 16px 20px;
	font-weight: 500;
	font-size: 10px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--c-text-muted, #6B5F53);
	text-align: left;
}

.usluga-pricing__col-price {
	text-align: right !important;
}

.usluga-pricing__table tbody tr {
	transition: background 0.25s ease;
}

.usluga-pricing__table tbody tr:hover {
	background: rgba(245, 236, 216, 0.4);
}

.usluga-pricing__row-header {
	background: rgba(201, 169, 110, 0.12);
}

.usluga-pricing__row-header:hover {
	background: rgba(201, 169, 110, 0.12) !important;
}

.usluga-pricing__section-heading {
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--c-accent, #C9A96E);
	padding: 10px 20px 8px;
	border-bottom: 1px solid rgba(201, 169, 110, 0.3) !important;
}

/* Pasek oferty specjalnej pod cennikiem */
.usluga-pricing__promo-bar {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 24px 0 28px;
	padding: 18px 28px;
	background: linear-gradient(135deg, #2C1F0E 0%, #3D2B10 40%, #2C1F0E 100%);
	border: 1px solid rgba(201, 169, 110, 0.6);
	border-left: 4px solid #C9A96E;
	border-radius: 10px;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: #F5ECD4;
	box-shadow: 0 4px 20px rgba(44, 31, 14, 0.25);
}

.usluga-pricing__promo-bar-icon {
	font-size: 18px;
	color: #C9A96E;
	flex-shrink: 0;
	filter: drop-shadow(0 0 4px rgba(201, 169, 110, 0.6));
}

.usluga-pricing__table tbody tr:not(:last-child) td {
	border-bottom: 1px solid var(--c-line-soft, #D1C7C1);
}

.usluga-pricing__table td {
	padding: 16px 20px;
	vertical-align: middle;
}

.usluga-pricing__cell-name {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 400;
	font-size: clamp(15px, 1.2vw, 17px);
	color: var(--c-text-on-light, #1A1714);
	line-height: 1.3;
}

.usluga-pricing__cell-variant {
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 13px;
	color: var(--c-text-muted, #6B5F53);
	line-height: 1.4;
}

.usluga-pricing__cell-variant span[aria-hidden] {
	opacity: 0.3;
}

.usluga-pricing__cell-price {
	text-align: right;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 14px;
	color: var(--c-text-muted, #6B5F53);
	white-space: nowrap;
}

.usluga-pricing__cell-price strong {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: normal;
	font-weight: 500;
	font-size: clamp(20px, 1.8vw, 24px);
	color: var(--c-accent, #C9A96E);
	letter-spacing: -0.01em;
	margin-right: 4px;
}

/* Nota o MyBenefit/Sodexo + CTA pod tabelą */
.usluga-pricing__note {
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 13px;
	color: var(--c-text-muted, #6B5F53);
	text-align: center;
	margin: 28px 0 32px;
	line-height: 1.6;
}

.usluga-pricing__note strong {
	color: var(--c-text-on-light, #1A1714);
	font-weight: 500;
}

.usluga-pricing__cta {
	text-align: center;
	margin-top: 28px;
}

.usluga-pricing__btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 16px 36px;
	background: var(--c-btn-gradient, linear-gradient(120deg, #7A5C1E 0%, #C9A96E 100%));
	color: #FFFFFF;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 999px;
	transition: background 0.3s ease, gap 0.3s ease, transform 0.3s ease;
	box-shadow: 0 12px 32px -12px rgba(201, 169, 110, 0.5);
}

.usluga-pricing__btn:hover {
	background: linear-gradient(120deg, #5A4210 0%, #A07830 100%);
	gap: 18px;
	transform: translateY(-2px);
}

/* Mobile - ukryj kolumne wariant, mniejsze paddingi */
@media (max-width: 640px) {
	.usluga-pricing__col-extra,
	.usluga-pricing__cell-variant {
		display: none;
	}
	.usluga-pricing__table {
		min-width: auto;
		font-size: 13px;
	}
	.usluga-pricing__table th,
	.usluga-pricing__table td {
		padding: 14px 14px;
	}
	.usluga-pricing__cell-price strong {
		font-size: 18px;
	}
}

/* ─── FAQ ─── */

.usluga-faq {
	position: relative;
	z-index: 2;
	padding: clamp(48px, 7vh, 80px) 0;
	background: #ffffff;
}

.usluga-faq__list {
	margin: 0;
	padding: 0;
}

.usluga-faq__item {
	background: #FFFFFF;
	border-radius: 8px;
	margin-bottom: 12px;
	border: 1px solid rgba(209, 199, 193, 0.5);
	overflow: hidden;
}

.usluga-faq__question {
	padding: 18px 22px;
	cursor: pointer;
	list-style: none;
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 400;
	font-size: clamp(16px, 1.4vw, 19px);
	color: var(--c-text-on-light, #1A1714);
	position: relative;
	padding-right: 50px;
	transition: background 0.3s ease;
}

.usluga-faq__question::-webkit-details-marker { display: none; }
.usluga-faq__question::marker { display: none; }

.usluga-faq__question::after {
	content: '+';
	position: absolute;
	right: 22px;
	top: 50%;
	transform: translateY(-50%);
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 300;
	font-size: 24px;
	color: var(--c-accent, #C9A96E);
	transition: transform 0.3s ease;
}

.usluga-faq__item[open] .usluga-faq__question::after {
	content: '-';
}

.usluga-faq__question:hover { background: var(--c-accent-soft, #F5ECD8); }

.usluga-faq__answer {
	padding: 0 22px 22px;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 14px;
	line-height: 1.65;
	color: var(--c-text-muted, #5A5A5A);
}

.usluga-faq__answer p { margin: 0 0 12px; }

/* ─── SEO EXTRA (dodatkowa sekcja pod cennikiem: TEXT lewa + IMAGE prawa, odwrotne wzgledem usluga-content) ─── */

.usluga-seo-extra {
	position: relative;
	z-index: 2;
	background: var(--c-accent-soft, #F5ECD8);
	padding: clamp(56px, 8vh, 100px) 0;
}

.usluga-seo-extra__container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 80px);
}

.usluga-seo-extra__split {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(32px, 4vh, 56px);
	align-items: start;
}

/* Mobile (<900px): text first, media second + mniejsze zdjecie (jak w usluga-content) */
@media (max-width: 899px) {
	.usluga-seo-extra__split .usluga-seo-extra__text  { order: 1; }
	.usluga-seo-extra__split .usluga-seo-extra__media {
		order: 2;
		max-width: 70%;
		margin: 0 auto;
		aspect-ratio: 4 / 3;
	}
}
@media (max-width: 560px) {
	.usluga-seo-extra__split .usluga-seo-extra__media {
		max-width: 85%;
		aspect-ratio: 4 / 3;
	}
}

@media (min-width: 900px) {
	.usluga-seo-extra__split {
		grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
		gap: clamp(48px, 5vw, 88px);
	}
}

.usluga-seo-extra__text {
	min-width: 0;
}

.usluga-seo-extra__header {
	margin: 0 0 clamp(24px, 3.5vh, 36px);
}

.usluga-seo-extra__eyebrow {
	display: inline-block;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 600;
	font-size: 11px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--c-text-on-light, #1A1714);
	margin-bottom: 12px;
	padding: 4px 12px;
	background: rgba(255, 255, 255, 0.7);
	border-radius: 999px;
}

.usluga-seo-extra__title {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 300;
	font-size: clamp(30px, 3.6vw, 48px);
	line-height: 1.1;
	letter-spacing: -0.01em;
	color: var(--c-text-on-light, #1A1714);
	margin: 0;
}

.usluga-seo-extra__body {
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 16px;
	line-height: 1.75;
	color: var(--c-text-on-light, #1A1714);
}

.usluga-seo-extra__body p { margin: 0 0 18px; }
.usluga-seo-extra__body p:last-child { margin-bottom: 0; }

.usluga-seo-extra__body h2 {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 600;
	font-size: clamp(22px, 2.6vw, 32px);
	margin: 40px 0 16px;
	color: var(--c-text-on-light, #1A1714);
}

.usluga-seo-extra__body h3 {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 600;
	font-size: clamp(18px, 2vw, 24px);
	margin: 32px 0 12px;
	color: var(--c-text-on-light, #1A1714);
}

.usluga-seo-extra__body h4 {
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 600;
	font-size: clamp(13px, 1.3vw, 15px);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin: 24px 0 10px;
	color: var(--c-text-on-light, #1A1714);
}

.usluga-seo-extra__body h2 a,
.usluga-seo-extra__body h3 a,
.usluga-seo-extra__body h4 a {
	color: inherit;
	text-decoration: none;
}

.usluga-seo-extra__body ul,
.usluga-seo-extra__body ol {
	margin: 0 0 18px;
	padding-left: 22px;
}

.usluga-seo-extra__body li { margin-bottom: 10px; }
.usluga-seo-extra__body ul li::marker { color: var(--c-text-on-light, #1A1714); }

.usluga-seo-extra__body a {
	color: var(--c-accent, #C9A96E);
	text-decoration: underline;
	text-underline-offset: 4px;
	transition: color 0.3s ease;
}

.usluga-seo-extra__body a:hover { color: #A07830; }

.usluga-seo-extra__body strong {
	color: var(--c-text-on-light, #1A1714);
	font-weight: 600;
}

.usluga-seo-extra__body blockquote {
	border-left: 3px solid var(--c-accent, #C9A96E);
	padding: 12px 0 12px 24px;
	margin: 24px 0;
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-size: clamp(17px, 1.6vw, 20px);
	color: var(--c-text-muted, #5A5A5A);
}

/* MEDIA - prawa strona, image lub bogaty pinkowy gradient placeholder.
   STICKY na desktopie - obraz przykleja sie podczas scrolla przez dlugi tekst po lewej. */
.usluga-seo-extra__media {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 5;
	background-size: cover;
	background-position: center;
	background-color: var(--c-accent, #C9A96E);
	border-radius: 12px;
	overflow: hidden;
	box-shadow:
		0 32px 64px -28px rgba(26, 23, 20, 0.32),
		0 16px 32px -12px rgba(26, 23, 20, 0.18),
		0 0 0 1px rgba(255, 255, 255, 0.45);
}

@media (min-width: 900px) {
	.usluga-seo-extra__media {
		position: sticky;
		top: calc(var(--floating-nav-height, 76px) + clamp(20px, 3vh, 40px));
		align-self: start;
		/* Max height = viewport minus nav minus oddech, zeby obraz nigdy nie wykraczal poza ekran */
		max-height: calc(100vh - var(--floating-nav-height, 76px) - clamp(40px, 6vh, 80px));
		aspect-ratio: auto;
		height: min(720px, calc(100vh - var(--floating-nav-height, 76px) - clamp(40px, 6vh, 80px)));
	}
}

.usluga-seo-extra__media--placeholder {
	background:
		radial-gradient(ellipse 60% 80% at 30% 20%, rgba(255, 255, 255, 0.35) 0%, transparent 55%),
		radial-gradient(ellipse 80% 60% at 70% 90%, rgba(26, 23, 20, 0.25) 0%, transparent 60%),
		linear-gradient(135deg, var(--c-accent, #C9A96E) 0%, #A07830 60%, #7A5C1E 100%);
}

.usluga-seo-extra__media--placeholder::before {
	content: 'the art of beauty';
	position: absolute;
	top: clamp(20px, 4%, 36px);
	left: clamp(20px, 4%, 36px);
	font-family: 'Allura', cursive;
	font-size: clamp(22px, 2.4vw, 32px);
	color: rgba(255, 255, 255, 0.8);
	line-height: 1;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.usluga-seo-extra__media--placeholder::after {
	content: 'PARENDI';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 300;
	font-size: clamp(36px, 4.5vw, 64px);
	color: #FFFFFF;
	letter-spacing: 0.08em;
	text-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

/* ─── RELATED (powiazane zabiegi) - karty home-style z image + pink overlay + bialy panel ─── */

.usluga-related {
	position: relative;
	z-index: 2;
	background: var(--c-bg, #F8F5F0);
	padding: clamp(56px, 8vh, 100px) 0;
}

.usluga-related__header {
	text-align: center;
	margin-bottom: clamp(36px, 5vh, 56px);
}

.usluga-related__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: clamp(20px, 2vw, 32px);
}

.related-card {
	display: block;
	text-decoration: none;
}

.related-card__link {
	display: flex;
	flex-direction: column;
	background: #FFFFFF;
	border-radius: 16px;
	overflow: hidden;
	text-decoration: none;
	color: var(--c-text-on-light, #1A1714);
	box-shadow: 0 6px 20px -8px rgba(26, 23, 20, 0.1);
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
}

.related-card__link:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px -14px rgba(201, 169, 110, 0.35);
}

.related-card__photo {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	margin: 0;
	overflow: hidden;
	background: var(--c-accent-soft, #F5ECD8);
}

.related-card__photo img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.related-card__link:hover .related-card__photo img {
	transform: scale(1.06);
}

.related-card__photo::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(201, 169, 110, 0.55) 0%, rgba(245, 236, 216, 0.4) 100%);
	pointer-events: none;
	transition: background 0.4s ease;
}

.related-card__link:hover .related-card__photo::after {
	background: linear-gradient(135deg, rgba(201, 169, 110, 0.4) 0%, rgba(245, 236, 216, 0.25) 100%);
}

.related-card__placeholder {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--c-accent-soft, #F5ECD8) 0%, var(--c-accent, #C9A96E) 100%);
}

.related-card__body {
	padding: clamp(16px, 1.4vw, 22px) clamp(18px, 1.5vw, 24px);
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.related-card__title {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 400;
	font-size: clamp(17px, 1.4vw, 20px);
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: var(--c-text-on-light, #1A1714);
	margin: 0;
}

.related-card__price {
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--c-accent, #C9A96E);
}

/* ─── BOTTOM CTA - PINK EDITORIAL BANNER (PARENDI brand: pink gradient + Allura accent + bialy text) ─── */

.category-cta {
	position: relative;
	z-index: 2;
	background:
		radial-gradient(ellipse 70% 90% at 100% 0%, rgba(245, 236, 216, 0.4) 0%, transparent 65%),
		radial-gradient(ellipse 60% 80% at 0% 100%, rgba(255, 255, 255, 0.18) 0%, transparent 70%),
		linear-gradient(135deg, #C9A96E 0%, #A07830 100%);
	padding: clamp(72px, 11vh, 140px) 0;
	overflow: hidden;
}

/* Allura script accent - dekoracyjny napis "the art of beauty" w bieli (subtle, jak hero kategorii) */
.category-cta__script {
	position: absolute;
	top: clamp(20px, 4vh, 36px);
	right: clamp(-20px, -2vw, -40px);
	font-family: 'Allura', cursive;
	font-size: clamp(60px, 10vw, 140px);
	color: rgba(255, 255, 255, 0.28);
	line-height: 1;
	letter-spacing: -0.02em;
	pointer-events: none;
	white-space: nowrap;
	z-index: 1;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.category-cta__container {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 80px);
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(32px, 5vh, 56px);
	align-items: center;
}

@media (min-width: 900px) {
	.category-cta__container {
		grid-template-columns: minmax(0, 1.4fr) auto;
		gap: clamp(48px, 6vw, 88px);
	}
}

.category-cta__text {
	max-width: 640px;
}

.category-cta__eyebrow {
	display: inline-block;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: #FFFFFF;
	opacity: 0.85;
	margin-bottom: 20px;
}

.category-cta__title {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 300;
	font-size: clamp(36px, 5vw, 72px);
	line-height: 1.02;
	letter-spacing: -0.02em;
	color: #FFFFFF;
	margin: 0 0 24px;
	text-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.category-cta__title em {
	font-style: italic;
	color: #FFFFFF;
	font-weight: 300;
	border-bottom: 2px solid rgba(255, 255, 255, 0.5);
	padding-bottom: 2px;
}

.category-cta__divider {
	display: block;
	width: 56px;
	height: 1px;
	background: linear-gradient(to right, rgba(255, 255, 255, 0.7), transparent);
	margin: 0 0 24px;
}

.category-cta__lead {
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: clamp(14px, 1.05vw, 16px);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.92);
	margin: 0;
	max-width: 560px;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}

.category-cta__lead strong {
	color: #FFFFFF;
	font-weight: 600;
}

.category-cta__actions {
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-width: 240px;
}

@media (max-width: 899px) {
	.category-cta__actions {
		min-width: auto;
	}
}

.category-cta__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 18px 36px;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 999px;
	transition: background 0.3s ease, color 0.3s ease, gap 0.3s ease, transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.category-cta__button--primary {
	background: #FFFFFF;
	color: var(--c-text-on-light, #1A1714);
	box-shadow: 0 14px 36px -14px rgba(0, 0, 0, 0.3);
}

.category-cta__button--primary:hover {
	background: var(--c-text-on-light, #1A1714);
	color: #FFFFFF;
	transform: translateY(-2px);
	gap: 18px;
}

.category-cta__button--ghost {
	background: transparent;
	color: #FFFFFF;
	border: 1px solid rgba(255, 255, 255, 0.55);
}

.category-cta__button--ghost svg {
	color: #FFFFFF;
	flex-shrink: 0;
}

.category-cta__button--ghost:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: #FFFFFF;
	gap: 16px;
}

/* ============================================================
   USLUGA HERO SPLIT - lewa grafika z tytulem + prawa rozowe tlo z info i CTA
   ============================================================ */

.usluga-hero-split {
	position: relative;
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	min-height: 640px;
	background: var(--c-bg-rose, #F5ECD8);
	overflow: hidden;
}

/* ─── LEFT: pudrowy gradient jak hero kategorii ─── */

.usluga-hero-split__visual {
	position: relative;
	background: linear-gradient(
		135deg,
		#F5ECD8 0%,
		#F5C8D6 45%,
		#C9A96E 100%
	);
	display: flex;
	align-items: flex-end;
	min-height: 480px;
	overflow: hidden;
}

.usluga-hero-split__visual-overlay {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 80% 20%, rgba(255,255,255,0.55) 0%, transparent 50%),
		radial-gradient(circle at 10% 90%, rgba(201,169,110,0.35) 0%, transparent 60%);
	pointer-events: none;
	z-index: 1;
}

.usluga-hero-split__visual-content {
	position: relative;
	z-index: 2;
	color: var(--c-text, #1A1714);
	padding: clamp(40px, 6vw, 80px) clamp(28px, 5vw, 72px);
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: clamp(12px, 1.4vw, 20px);
}

.usluga-hero-split__index {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-sans);
	font-size: var(--fs-label, 11px);
	letter-spacing: var(--ls-label-wide, 0.4em);
	text-transform: uppercase;
	color: var(--c-text-muted, #6B5F53);
}

.usluga-hero-split__index-num {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 18px;
	letter-spacing: 0;
	color: var(--c-accent, #C9A96E);
}

.usluga-hero-split__index-sep {
	opacity: 0.55;
}

.usluga-hero-split__category {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: max-content;
	font-family: var(--font-sans);
	font-size: var(--fs-label, 11px);
	letter-spacing: var(--ls-label, 0.2em);
	text-transform: uppercase;
	color: var(--c-text-muted, #6B5F53);
	text-decoration: none;
	transition: color 0.25s ease;
}

.usluga-hero-split__category:hover { color: var(--c-accent, #C9A96E); }

.usluga-hero-split__title {
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 400;
	font-size: clamp(44px, 6.5vw, 96px);
	line-height: var(--lh-display, 0.95);
	letter-spacing: -0.015em;
	color: var(--c-text, #1A1714);
	margin: 0;
	max-width: 14ch;
}

.usluga-hero-split__tagline {
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 300;
	font-size: clamp(18px, 1.7vw, 24px);
	line-height: 1.4;
	color: var(--c-text-muted, #6B5F53);
	margin: 4px 0 0;
	max-width: 32ch;
}

.usluga-hero-split__sparkle {
	position: absolute;
	color: #FFFFFF;
	opacity: 0.85;
	pointer-events: none;
	filter: drop-shadow(0 0 8px rgba(255,255,255,0.6));
	animation: parendiSparkle 4s ease-in-out infinite;
}

.usluga-hero-split__sparkle--top {
	top: clamp(28px, 4vw, 56px);
	right: clamp(28px, 4vw, 64px);
	animation-delay: 0.3s;
}

.usluga-hero-split__sparkle--bot {
	bottom: clamp(80px, 10vw, 120px);
	right: clamp(60px, 8vw, 120px);
	animation-delay: 1.6s;
	opacity: 0.7;
}

@keyframes parendiSparkle {
	0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.85; }
	50%      { transform: scale(1.18) rotate(20deg); opacity: 1; }
}

/* ─── RIGHT: rozowe tlo z info + CTA ─── */

.usluga-hero-split__info {
	position: relative;
	background: var(--c-bg-rose, #F5ECD8);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(48px, 6vw, 96px) clamp(28px, 5vw, 72px);
	overflow: hidden;
}

.usluga-hero-split__info::before,
.usluga-hero-split__info::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	background: radial-gradient(circle at center, rgba(255,255,255,0.55) 0%, transparent 70%);
}

.usluga-hero-split__info::before {
	top: -20%;
	right: -10%;
	width: 50%;
	aspect-ratio: 1;
	filter: blur(40px);
}

.usluga-hero-split__info::after {
	bottom: -15%;
	left: -10%;
	width: 40%;
	aspect-ratio: 1;
	background: radial-gradient(circle at center, rgba(201,169,110,0.35) 0%, transparent 70%);
	filter: blur(50px);
}

.usluga-hero-split__info-inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 460px;
	display: flex;
	flex-direction: column;
	gap: clamp(20px, 2.2vw, 28px);
}

.usluga-hero-split__ornament {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 4px;
}

.usluga-hero-split__ornament-line {
	display: block;
	height: 1px;
	flex: 0 0 48px;
	background: var(--c-accent, #C9A96E);
	opacity: 0.6;
}

.usluga-hero-split__ornament-script {
	font-family: var(--font-script, 'Allura', cursive);
	font-size: 26px;
	color: var(--c-accent, #C9A96E);
	line-height: 1;
}

/* Info components - override poprzednich klas zeby zadzialaly na rozowym tle */
.usluga-hero-split__info .usluga-hero__price-block {
	background: transparent;
	padding: 0;
	border: 0;
	margin: 0;
}

.usluga-hero-split__info .usluga-hero__price-row {
	display: flex;
	align-items: baseline;
	gap: 14px;
	flex-wrap: wrap;
}

.usluga-hero-split__info .usluga-hero__price-main {
	display: flex;
	align-items: baseline;
	gap: 6px;
	font-family: var(--font-serif);
	color: var(--c-text, #1A1714);
}

.usluga-hero-split__info .usluga-hero__price-from {
	font-size: 14px;
	font-style: italic;
	color: rgba(255, 255, 255, 0.85);
}

.usluga-hero-split__info .usluga-hero__price-main strong {
	font-size: clamp(56px, 6vw, 84px);
	font-weight: 400;
	font-style: italic;
	color: var(--c-accent, #C9A96E);
	line-height: 1;
	letter-spacing: -0.02em;
}

.usluga-hero-split__info .usluga-hero__price-unit {
	font-size: 18px;
	font-style: italic;
	color: rgba(255, 255, 255, 0.85);
}

.usluga-hero-split__info .usluga-hero__price-old {
	font-size: 16px;
	color: var(--c-text-muted, #6B5F53);
	text-decoration: line-through;
	text-decoration-color: var(--c-accent, #C9A96E);
}

.usluga-hero-split__info .usluga-hero__omnibus {
	display: block;
	font-size: 11px;
	color: var(--c-text-muted, #6B5F53);
	letter-spacing: 0.04em;
	margin-top: 8px;
}

.usluga-hero-split__info .usluga-hero__status {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 16px;
	background: rgba(255,255,255,0.65);
	border-radius: 100px;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	font-family: var(--font-sans);
	font-size: 13px;
	color: var(--c-text, #1A1714);
	width: max-content;
	max-width: 100%;
}

.usluga-hero-split__info .usluga-hero__status-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #4CAF50;
	box-shadow: 0 0 0 4px rgba(76,175,80,0.18);
	animation: parendiPulse 2s ease-in-out infinite;
}

@keyframes parendiPulse {
	0%, 100% { box-shadow: 0 0 0 4px rgba(76,175,80,0.18); }
	50%      { box-shadow: 0 0 0 8px rgba(76,175,80,0.05); }
}

.usluga-hero-split__info .usluga-hero__info-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.usluga-hero-split__info .usluga-hero__info-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	background: rgba(255,255,255,0.55);
	border-radius: 14px;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.usluga-hero-split__info .usluga-hero__info-item svg {
	flex-shrink: 0;
	color: var(--c-accent, #C9A96E);
}

.usluga-hero-split__info .usluga-hero__info-label {
	display: block;
	font-size: 10px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--c-text-muted, #6B5F53);
	margin-bottom: 2px;
}

.usluga-hero-split__info .usluga-hero__info-value {
	display: block;
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 16px;
	color: var(--c-text, #1A1714);
	line-height: 1.2;
}

/* CTA - duzy zaokraglony przycisk */
.usluga-hero-split__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 18px 32px;
	background: var(--c-btn-gradient, linear-gradient(120deg, #7A5C1E 0%, #C9A96E 100%));
	color: #fff;
	border-radius: 100px;
	font-family: var(--font-sans);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	text-decoration: none;
	box-shadow: 0 12px 32px rgba(201, 169, 110, 0.35);
	transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.usluga-hero-split__cta:hover {
	transform: translateY(-2px);
	background: linear-gradient(120deg, #5A4210 0%, #A07830 100%);
	box-shadow: 0 18px 40px rgba(201, 169, 110, 0.45);
}

.usluga-hero-split__cta-arrow {
	display: inline-block;
	transition: transform 0.3s ease;
}

.usluga-hero-split__cta:hover .usluga-hero-split__cta-arrow {
	transform: translateX(4px);
}

.usluga-hero-split__info .usluga-hero__microcopy {
	display: block;
	text-align: center;
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 13px;
	color: var(--c-text-muted, #6B5F53);
	margin-top: -4px;
}

/* ─── Responsive (mobile: stack pionowo) ─── */
@media (max-width: 900px) {
	.usluga-hero-split {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.usluga-hero-split__visual {
		min-height: 420px;
	}

	.usluga-hero-split__title {
		font-size: clamp(40px, 11vw, 60px);
	}

	.usluga-hero-split__info-inner {
		max-width: 100%;
	}

	.usluga-hero-split__sparkle--bot {
		display: none;
	}
}

@media (max-width: 600px) {
	.usluga-hero-split__info .usluga-hero__info-grid {
		grid-template-columns: 1fr;
	}

	.usluga-hero-split__cta {
		width: 100%;
	}
}

/* ============================================================
   SUB-KATEGORIE: kafelki na archive parent term
   ============================================================ */

.cat-subcategories {
	position: relative;
	z-index: 2;
	background: var(--c-bg, #F8F5F0);
	padding: clamp(56px, 8vh, 88px) 0 clamp(40px, 6vh, 64px);
}

.cat-subcategories__container {
	max-width: 1560px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 64px);
}

.cat-subcategories__header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto clamp(32px, 5vh, 48px);
}

.cat-subcategories__eyebrow {
	display: inline-block;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--c-accent, #C9A96E);
	margin-bottom: 12px;
}

.cat-subcategories__title {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-weight: 300;
	font-size: clamp(28px, 3.6vw, 48px);
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: var(--c-text-on-light, #1A1714);
	margin: 0;
}

.cat-subcategories__title em {
	font-style: italic;
	color: var(--c-accent, #C9A96E);
}

.cat-subcategories__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(14px, 1.8vw, 24px);
}

@media (min-width: 720px) {
	.cat-subcategories__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 1100px) {
	.cat-subcategories__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* KARTA SUB-KATEGORII - obraz z pink overlay + biały italic napis centered (cat-strip-card style) */
.cat-subcategory-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 10px;
	text-decoration: none;
	color: var(--c-text-on-light, #1A1714);
}

.cat-subcategory-card__media {
	position: relative;
	width: 100%;
	aspect-ratio: 5 / 4;
	background-color: var(--c-accent-soft, #F5ECD8);
	background-size: cover;
	background-position: center;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 6px 18px -10px rgba(26, 23, 20, 0.18);
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.cat-subcategory-card:hover .cat-subcategory-card__media {
	transform: translateY(-4px);
	box-shadow: 0 20px 36px -14px rgba(201, 169, 110, 0.4);
}

.cat-subcategory-card--no-image .cat-subcategory-card__media {
	background:
		radial-gradient(ellipse 60% 80% at 30% 20%, rgba(255, 255, 255, 0.32) 0%, transparent 55%),
		linear-gradient(135deg, var(--c-accent, #C9A96E) 0%, #A07830 100%);
}

.cat-subcategory-card__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, transparent 40%, rgba(26, 23, 20, 0.4) 100%),
		linear-gradient(135deg, rgba(201, 169, 110, 0.55) 0%, rgba(245, 236, 216, 0.3) 100%);
	transition: background 0.4s ease;
	pointer-events: none;
}

.cat-subcategory-card:hover .cat-subcategory-card__overlay {
	background:
		linear-gradient(180deg, transparent 35%, rgba(26, 23, 20, 0.5) 100%),
		linear-gradient(135deg, rgba(201, 169, 110, 0.42) 0%, rgba(245, 236, 216, 0.2) 100%);
}

.cat-subcategory-card__name {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px 22px;
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 400;
	font-size: clamp(16px, 1.5vw, 22px);
	line-height: 1.2;
	letter-spacing: -0.005em;
	color: #FFFFFF;
	text-align: center;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4), 0 1px 4px rgba(0, 0, 0, 0.3);
	pointer-events: none;
}

.cat-subcategory-card__count {
	display: block;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 500;
	font-size: 10px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--c-accent, #C9A96E);
	text-align: center;
}

/* ============================================================
   KARUZELA SIBLINGS - inne zabiegi z sub-kategorii (poziomy scroll snap)
   ============================================================ */

.usluga-siblings {
	position: relative;
	z-index: 2;
	background: var(--c-bg, #F8F5F0);
	padding: clamp(64px, 9vh, 100px) 0 clamp(56px, 8vh, 80px);
	border-top: 1px solid var(--c-line-soft, #D1C7C1);
}

.usluga-siblings__container {
	max-width: 1560px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 64px);
}

.usluga-siblings__header {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: clamp(28px, 4vh, 40px);
	padding-bottom: clamp(18px, 2.5vh, 24px);
	border-bottom: 1px solid var(--c-line-soft, #D1C7C1);
}

.usluga-siblings__header-text {
	max-width: 640px;
}

.usluga-siblings__eyebrow {
	display: inline-block;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--c-accent, #C9A96E);
	margin-bottom: 10px;
}

.usluga-siblings__title {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-weight: 300;
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: var(--c-text-on-light, #1A1714);
	margin: 0;
}

.usluga-siblings__title em {
	font-style: italic;
	color: var(--c-accent, #C9A96E);
}

.usluga-siblings__nav {
	display: flex;
	align-items: center;
	gap: 10px;
}

.usluga-siblings__arrow {
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #FFFFFF;
	border: 1px solid var(--c-line-soft, #D1C7C1);
	border-radius: 50%;
	color: var(--c-text-on-light, #1A1714);
	cursor: pointer;
	transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

.usluga-siblings__arrow:hover {
	background: var(--c-accent, #C9A96E);
	border-color: var(--c-accent, #C9A96E);
	color: #FFFFFF;
}

.usluga-siblings__arrow:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.usluga-siblings__all {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 18px;
	background: transparent;
	border: 1px solid var(--c-text-on-light, #1A1714);
	border-radius: 999px;
	color: var(--c-text-on-light, #1A1714);
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	text-decoration: none;
	transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, gap 0.3s ease;
	margin-left: 8px;
}

.usluga-siblings__all:hover {
	background: var(--c-text-on-light, #1A1714);
	color: #FFFFFF;
	gap: 10px;
}

/* TRACK - horizontal scroll-snap carousel z PRECYZYJNA matematyka (--cards-visible).
   Karta = calc((100% - (N-1) * gap) / N) - dokladnie N kart mieści się w viewport,
   ZERO ucinania. Strzalki nawigacji scrolluja o jedna karte. Responsywne N:
   - desktop ≥1280: 5 kart
   - tablet 900-1280: 4 karty
   - tablet 600-900: 3 karty
   - mobile 480-600: 2 karty
   - <480px: 1 karta */
.usluga-siblings__track {
	--cards-visible: 5;
	--card-gap: clamp(14px, 1.8vw, 22px);
	display: flex;
	gap: var(--card-gap);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding-bottom: 24px;
	margin-bottom: -24px;
}
.usluga-siblings__track::-webkit-scrollbar { display: none; }

@media (max-width: 1280px) {
	.usluga-siblings__track { --cards-visible: 4; }
}
@media (max-width: 900px) {
	.usluga-siblings__track { --cards-visible: 3; }
}
@media (max-width: 600px) {
	.usluga-siblings__track { --cards-visible: 2; }
}
@media (max-width: 480px) {
	.usluga-siblings__track { --cards-visible: 1; }
}

.usluga-siblings__track::-webkit-scrollbar { display: none; }

/* KARTA SIBLING - flex-basis = (100% - (N-1)*gap) / N, dokladnie N w viewport */
.usluga-sibling-card {
	flex: 0 0 calc((100% - (var(--cards-visible) - 1) * var(--card-gap)) / var(--cards-visible));
	min-width: 0;
	scroll-snap-align: start;
	background: #FFFFFF;
	border-radius: 14px;
	overflow: hidden;
	text-decoration: none;
	color: var(--c-text-on-light, #1A1714);
	box-shadow: 0 4px 16px -8px rgba(26, 23, 20, 0.1);
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.usluga-sibling-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 36px -14px rgba(201, 169, 110, 0.4);
}

.usluga-sibling-card__media {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	background-color: var(--c-accent-soft, #F5ECD8);
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.usluga-sibling-card--no-image .usluga-sibling-card__media {
	background:
		radial-gradient(ellipse 60% 80% at 30% 20%, rgba(255, 255, 255, 0.32) 0%, transparent 55%),
		linear-gradient(135deg, var(--c-accent, #C9A96E) 0%, #A07830 100%);
}

.usluga-sibling-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(201, 169, 110, 0.15) 0%, rgba(201, 169, 110, 0) 60%);
	transition: background 0.4s ease;
	pointer-events: none;
}

.usluga-sibling-card:hover .usluga-sibling-card__overlay {
	background: linear-gradient(135deg, rgba(201, 169, 110, 0.28) 0%, rgba(201, 169, 110, 0.05) 70%);
}

.usluga-sibling-card__body {
	padding: 16px 20px 20px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.usluga-sibling-card__title {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.25;
	letter-spacing: -0.005em;
	color: var(--c-text-on-light, #1A1714);
	margin: 0;
	transition: color 0.3s ease;
}

.usluga-sibling-card:hover .usluga-sibling-card__title {
	color: var(--c-accent, #C9A96E);
}

.usluga-sibling-card__price {
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--c-accent, #C9A96E);
}

/* ════════════════════════════════════════════════════════════════
   ARCHIVE /zabiegi/ - grid duzych kart kategorii + SEO content
   ════════════════════════════════════════════════════════════════ */

.zabiegi-archive {
	background: var(--c-bg, #F8F5F0);
	color: var(--c-text-on-light, #1A1714);
}

/* Hero archive ma cat-hero (juz styled) - tylko lead override szerokosc */
.zabiegi-archive .cat-hero__lead {
	max-width: 560px;
}

/* Sekcja grid kategorii - reuse cat-grid-section--curtain dla curtain effect */
.zabiegi-cats-section .cat-grid-section__container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 80px);
}

.zabiegi-cats__lead {
	max-width: 640px;
	margin: 16px auto 0;
	color: var(--c-text-muted, #6B5F53);
	font-size: clamp(14px, 1.05vw, 16px);
	line-height: 1.65;
	text-align: center;
}

/* GRID kategorii - 2/3/4 kol responsywnie */
/* Grid 2-col na desktop dla kart POZIOMYCH (jak .treatment-card grid).
   Horizontal cards potrzebuja szerokosci - max 2 kolumny zeby body mialo miejsce. */
.zabiegi-cats-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(14px, 1.4vw, 20px);
	margin-top: clamp(40px, 5vh, 64px);
}

@media (min-width: 900px) {
	.zabiegi-cats-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* DUZA KARTA KATEGORII - UNIWERSALNY POZIOMY BOX (jak .treatment-card)
 * Image lewa 38% z pink wash, prawa: count chip + nazwa italic + lead + arrow CTA.
 */
.zabiegi-cat-card {
	position: relative;
	display: flex;
	flex-direction: row;
	min-height: 220px;
	background: #FFFFFF;
	border-radius: 16px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	border: 1px solid rgba(201, 169, 110, 0.18);
	box-shadow:
		0 4px 16px -8px rgba(26, 23, 20, 0.08),
		0 1px 3px -1px rgba(26, 23, 20, 0.04);
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, border-color 0.3s ease;
	isolation: isolate;
}

.zabiegi-cat-card:hover {
	transform: translateY(-4px);
	border-color: rgba(201, 169, 110, 0.45);
	box-shadow:
		0 20px 40px -14px rgba(201, 169, 110, 0.35),
		0 6px 14px -4px rgba(26, 23, 20, 0.1);
}

/* MEDIA - lewa 38%, pink gradient + image */
.zabiegi-cat-card__media {
	position: relative;
	flex: 0 0 38%;
	background-size: cover;
	background-position: center center;
	background-color: var(--c-accent-soft, #F5ECD8);
	overflow: hidden;
	transform: scale(1.04);
	transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.zabiegi-cat-card:hover .zabiegi-cat-card__media {
	transform: scale(1.1);
}

/* OVERLAY - mocny pink wash + white fade do body (matches treatment-card) */
.zabiegi-cat-card__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, transparent 70%, rgba(255, 255, 255, 0.95) 100%),
		linear-gradient(135deg, rgba(201, 169, 110, 0.7) 0%, rgba(160, 120, 48, 0.55) 50%, rgba(201, 169, 110, 0.45) 100%);
	transition: background 0.6s ease;
	pointer-events: none;
}

.zabiegi-cat-card:hover .zabiegi-cat-card__overlay {
	background:
		linear-gradient(90deg, transparent 72%, rgba(255, 255, 255, 0.92) 100%),
		linear-gradient(135deg, rgba(201, 169, 110, 0.5) 0%, rgba(160, 120, 48, 0.38) 50%, rgba(201, 169, 110, 0.3) 100%);
}

.zabiegi-cat-card--no-image .zabiegi-cat-card__media {
	background: linear-gradient(135deg, var(--c-accent-soft, #F5ECD8) 0%, var(--c-accent, #C9A96E) 100%);
}

/* BODY - prawa kolumna, biala, padding spacing */
.zabiegi-cat-card__body {
	position: relative;
	z-index: 2;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(20px, 2.2vw, 28px) clamp(22px, 2.4vw, 30px);
	gap: 10px;
	background: #FFFFFF;
	min-width: 0;
}

/* COUNT chip pink soft po lewej (eyebrow style) */
.zabiegi-cat-card__count {
	display: inline-block;
	align-self: flex-start;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--c-accent, #C9A96E);
}

/* NAZWA italic Fraunces */
.zabiegi-cat-card__name {
	margin: 0;
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 400;
	font-size: clamp(20px, 1.8vw, 26px);
	line-height: 1.15;
	letter-spacing: -0.015em;
	color: var(--c-text-on-light, #1A1714);
}

/* LEAD - 3 linie clamp, muted */
.zabiegi-cat-card__lead {
	margin: 0;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 13.5px;
	line-height: 1.55;
	color: var(--c-text-muted, #6B5F53);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* ARROW CTA "ZOBACZ KATEGORIĘ →" */
.zabiegi-cat-card__arrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 4px;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--c-accent, #C9A96E);
	transition: gap 0.3s ease;
	align-self: flex-start;
}

.zabiegi-cat-card:hover .zabiegi-cat-card__arrow {
	gap: 14px;
}

/* SEO content section - 3 kolumny editorial */
.zabiegi-seo {
	padding: clamp(80px, 12vh, 140px) 0;
	background: var(--c-bg-alt, #FAFAFA);
}

.zabiegi-seo__container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 80px);
}

.zabiegi-seo__header {
	text-align: center;
	margin-bottom: clamp(48px, 6vh, 80px);
}

.zabiegi-seo__eyebrow {
	display: block;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--c-accent, #C9A96E);
	margin-bottom: 12px;
}

.zabiegi-seo__title {
	margin: 0;
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 300;
	font-size: clamp(32px, 4vw, 56px);
	line-height: 1.1;
	letter-spacing: -0.015em;
	color: var(--c-text-on-light, #1A1714);
}

.zabiegi-seo__divider {
	display: block;
	width: 64px;
	height: 1px;
	background: var(--c-accent, #C9A96E);
	margin: 24px auto 0;
}

.zabiegi-seo__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(32px, 4vw, 56px);
}

@media (min-width: 900px) {
	.zabiegi-seo__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.zabiegi-seo__col-title {
	margin: 0 0 12px;
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 400;
	font-size: clamp(20px, 1.8vw, 26px);
	line-height: 1.2;
	color: var(--c-text-on-light, #1A1714);
}

.zabiegi-seo__col p {
	margin: 0;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 15px;
	line-height: 1.7;
	color: var(--c-text-muted, #6B5F53);
}

/* ─── Mobile (≤767px) - cat-grid 1 KOLUMNA, karty PIONOWE V4 ────────────
   Cascade fix: base .cat-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) }
   z linii ~1840 jest PO media query z linii 1110, wiec base wygrywa kaskadowo.
   Te overrides MUSZA byc na koncu pliku z !important, zeby wymusic 1 kolumne na mobile. */
@media (max-width: 767px) {
	.cat-grid {
		grid-template-columns: 1fr !important;
		gap: 14px;
	}
	/* Karta PIONOWA - reszta stylow dziedziczona z base V4 */
	.treatment-card {
		border-radius: 14px;
	}
	.treatment-card__body {
		padding: 14px 16px 18px;
		gap: 8px;
	}
	.treatment-card__title {
		font-size: 17px;
		line-height: 1.2;
		padding-right: 0;
		-webkit-line-clamp: 2;
	}
	.treatment-card__desc {
		font-size: 12px;
		line-height: 1.45;
		-webkit-line-clamp: 2;
	}
	.treatment-card__meta-row {
		gap: 10px;
		flex-wrap: wrap;
	}
	.treatment-card__time {
		font-size: 11px;
	}
	.treatment-card__price {
		font-size: 10.5px;
		padding: 6px 12px;
		letter-spacing: 0.1em;
	}
	.treatment-card__info {
		top: 10px;
		left: 10px;
		width: 28px;
		height: 28px;
	}
	.treatment-card__info svg { width: 12px; height: 12px; }
	.treatment-card__media::before {
		width: 32px;
		height: 32px;
		font-size: 15px;
		top: 10px;
		right: 10px;
	}
}

/* ─── Mobile: schowaj featured + chips podkategorii (cascade fix) ───────────
   Base .cat-strip--subcats .cat-strip__featured { display: grid } z linii 1543
   jest PO mobile @media block w linii 1093, wiec base "display: grid" wygrywa
   i karty sie poakzuja domyslnie. Te overrides z !important wymuszaja ukrycie
   az do kliku w expand. */
@media (max-width: 767px) {
	.cat-strip--subcats .cat-strip__header,
	.cat-strip--subcats .cat-strip__featured,
	.cat-strip--subcats .cat-strip__chips {
		display: none !important;
	}
	.cat-strip--subcats.is-expanded .cat-strip__featured {
		display: grid !important;
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
		padding: 14px 0 0;
		animation: catStripExpand 0.35s cubic-bezier(0.22, 1, 0.36, 1);
	}
	.cat-strip--subcats.is-expanded .cat-strip__chips {
		display: block !important;
		margin-top: 14px;
		padding-top: 14px;
		animation: catStripExpand 0.35s cubic-bezier(0.22, 1, 0.36, 1);
	}
	.cat-strip--subcats.is-expanded .cat-strip__header {
		display: block !important;
		margin-top: 4px;
		animation: catStripExpand 0.35s cubic-bezier(0.22, 1, 0.36, 1);
	}

	/* Zmniejsz padding-top sekcji "KATALOG ZABIEGÓW" - przycisk filter ma juz odstep */
	.cat-grid-section {
		padding-top: clamp(20px, 3vh, 32px) !important;
	}
	.cat-grid-header {
		margin-bottom: clamp(20px, 3vh, 28px);
	}
}

/* ════════════════════════════════════════════════════════════════════════════
   PARENDI SIBLING + RELATED CARDS V4 - pionowe wersje treatment-card
   ────────────────────────────────────────────────────────────────────────
   Te same elementy co treatment-card na archive kategorii (image z pink wash,
   tytul italic, opis krotki, meta-row z czasem + pink chip ceny, info arrow)
   tylko PIONOWE - image NA GORZE (aspect 4:5), content STACK pod spodem.
   Spojny styl z reszta site (matches .treatment-card vibe).
   ════════════════════════════════════════════════════════════════════════════ */

/* Wrapper - wspolny styl dla obu typow */
.usluga-sibling-card,
.related-card__link {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #FFFFFF;
	border-radius: 20px;
	overflow: hidden;
	text-decoration: none;
	color: var(--c-text-on-light, #1A1714);
	border: 1px solid rgba(201, 169, 110, 0.2);
	box-shadow:
		0 6px 18px -10px rgba(122, 92, 30, 0.16),
		0 1px 3px rgba(26, 23, 20, 0.04);
	transition:
		transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.5s ease,
		border-color 0.4s ease;
	isolation: isolate;
}

.usluga-sibling-card:hover,
.related-card__link:hover {
	transform: translateY(-6px);
	border-color: rgba(201, 169, 110, 0.55);
	box-shadow:
		0 28px 54px -16px rgba(122, 92, 30, 0.4),
		0 8px 20px -4px rgba(201, 169, 110, 0.28);
}

/* ─── Media (image) z PARENDI signature pink wash - mniejsza ramka 16:10 ─── */
.usluga-sibling-card__media,
.related-card__photo {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 10;             /* z 4/5 (tall portrait) na 16/10 (kompaktowy landscape) */
	margin: 0;
	overflow: hidden;
	background: var(--c-accent-soft, #F5ECD8);
}

.usluga-sibling-card__media {
	background-size: cover;
	background-position: center;
	transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.usluga-sibling-card:hover .usluga-sibling-card__media {
	transform: scale(1.06);
}

.related-card__photo img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.related-card__link:hover .related-card__photo img {
	transform: scale(1.06);
}

/* Ukryj stary inline overlay span (legacy) */
.usluga-sibling-card__overlay {
	display: none !important;
}

/* PARENDI pink wash overlay - MOCNY rozowy 3-stop gradient (signature brand look,
   ten sam jak hero kategorii / fryzjerstwo). Zdjecie pod spodem widoczne jako
   subtelna tekstura, dominuje brand pink. */
.usluga-sibling-card__media::after,
.related-card__photo::after {
	content: '' !important;
	position: absolute !important;
	inset: 0 !important;
	background:
		linear-gradient(135deg, rgba(201, 169, 110, 0.78) 0%, rgba(201, 169, 110, 0.68) 50%, rgba(160, 120, 48, 0.82) 100%),
		radial-gradient(ellipse 60% 50% at 0% 100%, rgba(122, 92, 30, 0.4) 0%, transparent 60%),
		radial-gradient(ellipse 40% 60% at 100% 0%, rgba(255, 255, 255, 0.22) 0%, transparent 55%) !important;
	pointer-events: none !important;
	transition: opacity 0.5s ease !important;
	opacity: 1 !important;
}

.usluga-sibling-card:hover .usluga-sibling-card__media::after,
.related-card__link:hover .related-card__photo::after {
	opacity: 0.78 !important;     /* lekko rozjasnia zeby zdjecie przebijalo na hover */
}

/* Floating arrow circle - top right, ZAWSZE widoczny (lepszy UX mobile),
   hover dostaje pink fill + scale */
.usluga-sibling-card__media::before {
	content: '→';
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 3;
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	color: var(--c-accent, #C9A96E);
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 17px;
	font-weight: 500;
	box-shadow:
		0 8px 18px -4px rgba(26, 23, 20, 0.22),
		0 0 0 1px rgba(255, 255, 255, 0.5) inset;
	transition: background 0.3s ease, color 0.3s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
	pointer-events: none;
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
}

.usluga-sibling-card:hover .usluga-sibling-card__media::before {
	background: var(--c-accent, #C9A96E);
	color: #FFFFFF;
	transform: translateX(2px) scale(1.08);
}

/* Floating arrow circle dla related-card */
.related-card__link::before {
	content: '→';
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 3;
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	color: var(--c-accent, #C9A96E);
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 17px;
	font-weight: 500;
	box-shadow:
		0 8px 18px -4px rgba(26, 23, 20, 0.22),
		0 0 0 1px rgba(255, 255, 255, 0.5) inset;
	transition: background 0.3s ease, color 0.3s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
	pointer-events: none;
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
}

.related-card__link:hover::before {
	background: var(--c-accent, #C9A96E);
	color: #FFFFFF;
	transform: translateX(2px) scale(1.08);
}

/* ─── Body - editorial padding, stack: title → desc → meta-row (time + price) ─── */
.usluga-sibling-card__body,
.related-card__body {
	padding: 18px 20px 22px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: stretch;
	background: #FFFFFF;
	flex: 1;
}

.usluga-sibling-card__title,
.related-card__title {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 400;
	font-size: 19px;
	line-height: 1.18;
	letter-spacing: -0.012em;
	color: var(--c-text-on-light, #1A1714);
	margin: 0;
	transition: color 0.3s ease;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.usluga-sibling-card:hover .usluga-sibling-card__title,
.related-card__link:hover .related-card__title {
	color: var(--c-accent, #C9A96E);
}

/* Krotki opis pod tytulem - 2 linie clamp, muted text */
.usluga-sibling-card__desc,
.related-card__desc {
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 400;
	font-size: 12.5px;
	line-height: 1.5;
	color: var(--c-text-muted, #6B5F53);
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* META row - czas po lewej, cena chip po prawej (jak w treatment-card) */
.usluga-sibling-card__meta-row,
.related-card__meta-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: auto;          /* push do dolu karty (flex column body z flex:1) */
	padding-top: 6px;
}

.usluga-sibling-card__time,
.related-card__time {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 11.5px;
	font-weight: 500;
	color: #8a7e72;
}
.usluga-sibling-card__time svg,
.related-card__time svg {
	color: var(--c-accent, #C9A96E);
	flex-shrink: 0;
}

/* Premium price chip - PELNY pink gradient (jak CTA hero) z biala obwodka i pink glow */
.usluga-sibling-card__price,
.related-card__price {
	display: inline-flex;
	align-items: center;
	padding: 7px 14px;
	background: linear-gradient(135deg, #D4B880 0%, #C9A96E 50%, #A07830 100%);
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 600;
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #FFFFFF;
	white-space: nowrap;
	box-shadow:
		0 6px 14px -4px rgba(122, 92, 30, 0.4),
		0 0 0 1px rgba(255, 255, 255, 0.25) inset,
		0 1px 0 rgba(255, 255, 255, 0.4) inset;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.usluga-sibling-card:hover .usluga-sibling-card__price,
.related-card__link:hover .related-card__price {
	transform: translateY(-1px) scale(1.03);
	box-shadow:
		0 10px 22px -4px rgba(122, 92, 30, 0.55),
		0 0 0 1px rgba(255, 255, 255, 0.4) inset,
		0 1px 0 rgba(255, 255, 255, 0.55) inset;
}

/* ─── Mobile: kompaktowe wymiary + 1-2 column grid dla related ─── */
@media (max-width: 767px) {
	.usluga-sibling-card {
		width: clamp(220px, 75vw, 280px);
		border-radius: 14px;
	}
	.usluga-sibling-card__media,
	.related-card__photo {
		aspect-ratio: 3 / 2;
	}
	.usluga-sibling-card__body,
	.related-card__body {
		padding: 14px 16px 18px;
		gap: 8px;
	}
	.usluga-sibling-card__title,
	.related-card__title {
		font-size: 15.5px;
	}
	.usluga-sibling-card__media::before,
	.related-card__link::before {
		width: 32px;
		height: 32px;
		top: 10px;
		right: 10px;
		font-size: 14px;
		/* Na mobile arrow pill widoczny zawsze (no hover) */
		opacity: 0.95;
		transform: none;
	}
	.usluga-related__grid {
		grid-template-columns: 1fr 1fr !important;
		gap: 14px !important;
	}
}

@media (max-width: 480px) {
	.usluga-related__grid {
		grid-template-columns: 1fr !important;
	}
}

/* ════════════════════════════════════════════════════════════════════════════
   FLOATING BOOKING CTA - desktop only, prawy dolny rog
   ────────────────────────────────────────────────────────────────────────
   Pojawia sie po >400px scrollu (JS dodaje .is-visible).
   Pulsujaca poswiata wokol icon + slide-up entrance + hover micro-interactions.
   Hidden na mobile (klient ma juz .usluga-floating-pricing na dole).
   ════════════════════════════════════════════════════════════════════════════ */

.parendi-cta-fab {
	position: fixed;
	bottom: 32px;
	right: 32px;
	z-index: 9998;
	display: none;                /* base: hidden, JS toggluje display: inline-flex po scrollu */
	align-items: center;
	gap: 14px;
	padding: 14px 22px 14px 16px;
	background: linear-gradient(135deg, #D4B880 0%, #C9A96E 45%, #A07830 100%);
	color: #FFFFFF;
	text-decoration: none;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.45);
	font-family: var(--font-sans, 'Inter', sans-serif);
	box-shadow:
		0 18px 44px -10px rgba(122, 92, 30, 0.55),
		0 8px 20px -4px rgba(201, 169, 110, 0.45),
		0 0 0 1px rgba(255, 255, 255, 0.25) inset,
		0 1px 0 rgba(255, 255, 255, 0.4) inset;
	transform: translateY(20px) scale(0.92);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.4s ease,
		visibility 0.4s ease,
		gap 0.3s ease,
		box-shadow 0.3s ease;
	overflow: visible;
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
}

/* JS dodaje .is-visible po scrollu >400px */
.parendi-cta-fab.is-visible {
	display: inline-flex;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0) scale(1);
}

.parendi-cta-fab:hover {
	gap: 18px;
	transform: translateY(-4px) scale(1.02);
	box-shadow:
		0 24px 56px -10px rgba(122, 92, 30, 0.65),
		0 10px 24px -4px rgba(201, 169, 110, 0.5),
		0 0 0 1px rgba(255, 255, 255, 0.4) inset,
		0 1px 0 rgba(255, 255, 255, 0.55) inset;
}

/* PULSE - pulsujaca poswiata wokol iconu (przyciaga uwage) */
.parendi-cta-fab__pulse {
	position: absolute;
	top: 8px;
	left: 8px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 70%);
	pointer-events: none;
	animation: parendiCtaPulse 2.6s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes parendiCtaPulse {
	0%   { transform: scale(0.75); opacity: 0; }
	50%  { transform: scale(1.4);  opacity: 0.7; }
	100% { transform: scale(1.85); opacity: 0; }
}

/* Ikona kalendarza w bialym kwadracie po lewej */
.parendi-cta-fab__icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	color: #FFFFFF;
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.3) inset,
		0 4px 10px -2px rgba(122, 92, 30, 0.3) inset;
	position: relative;
	z-index: 1;
}

/* Tekst - 2 line stack (label + sub) */
.parendi-cta-fab__text {
	display: flex;
	flex-direction: column;
	gap: 1px;
	line-height: 1.1;
	max-width: 240px;
	min-width: 0;
}

.parendi-cta-fab__label {
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #FFFFFF;
}

.parendi-cta-fab__sub {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 400;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.85);
	letter-spacing: 0;
	text-transform: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 220px;
}

/* Strzalka po prawej */
.parendi-cta-fab__arrow {
	flex-shrink: 0;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.95);
	transition: transform 0.3s ease;
}

.parendi-cta-fab:hover .parendi-cta-fab__arrow {
	transform: translateX(3px);
}

/* Ukryty na mobile - klient ma .usluga-floating-pricing */
@media (max-width: 767px) {
	.parendi-cta-fab {
		display: none !important;
	}
}

/* Reduced motion - bez pulsu i bez scale animations */
@media (prefers-reduced-motion: reduce) {
	.parendi-cta-fab__pulse {
		animation: none;
		opacity: 0;
	}
	.parendi-cta-fab,
	.parendi-cta-fab.is-visible,
	.parendi-cta-fab:hover {
		transition: opacity 0.2s ease;
		transform: none;
	}
}

/* ════════════════════════════════════════════════════════════════════════════
   ZABIEGI ARCHIVE - BOTTOM SECTIONS (after CTA banner)
   1. Long-form SEO content (eyebrow + H1 + 2-col copy)
   2. FAQ accordion (FAQPage schema for AEO/Featured Snippets)
   ════════════════════════════════════════════════════════════════════════════ */

/* ─── 1. LONGFORM SEO content section ─── */
.zabiegi-longform {
	background: var(--c-bg, #F8F5F0);
	padding: clamp(64px, 9vh, 120px) 0 clamp(48px, 7vh, 80px);
	border-top: 1px solid rgba(201, 169, 110, 0.18);
}

.zabiegi-longform__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 64px);
}

.zabiegi-longform__header {
	text-align: center;
	margin: 0 0 clamp(40px, 6vh, 64px);
	max-width: 880px;
	margin-left: auto;
	margin-right: auto;
}

.zabiegi-longform__eyebrow {
	display: inline-block;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.34em;
	text-transform: uppercase;
	color: var(--c-accent, #C9A96E);
	margin: 0 0 16px;
}

.zabiegi-longform__title {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 300;
	font-size: clamp(32px, 4.2vw, 56px);
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: var(--c-text-on-light, #1A1714);
	margin: 0 0 24px;
}

.zabiegi-longform__title em {
	font-style: italic;
	color: var(--c-accent, #C9A96E);
}

.zabiegi-longform__divider {
	display: block;
	width: 60px;
	height: 1px;
	background: var(--c-accent, #C9A96E);
	margin: 0 auto;
	opacity: 0.6;
}

.zabiegi-longform__cols {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(20px, 3vw, 40px);
	max-width: 1100px;
	margin: 0 auto;
}

@media (min-width: 768px) {
	.zabiegi-longform__cols {
		grid-template-columns: 1fr 1fr;
	}
}

.zabiegi-longform__col p {
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 15px;
	line-height: 1.75;
	color: var(--c-text-muted, #6B5F53);
	margin: 0 0 18px;
}

.zabiegi-longform__col p:last-child {
	margin-bottom: 0;
}

.zabiegi-longform__col strong {
	color: var(--c-text-on-light, #1A1714);
	font-weight: 600;
}

.zabiegi-longform__col a {
	color: var(--c-accent, #C9A96E);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
	transition: color 0.25s ease;
}

.zabiegi-longform__col a:hover {
	color: #A07830;
}

/* ─── 2. FAQ accordion section ─── */
.zabiegi-faq {
	background: #FFFFFF;
	padding: clamp(56px, 8vh, 100px) 0 clamp(64px, 9vh, 120px);
}

.zabiegi-faq__container {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 48px);
}

.zabiegi-faq__header {
	text-align: center;
	margin: 0 0 clamp(36px, 5vh, 56px);
}

.zabiegi-faq__eyebrow {
	display: inline-block;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--c-accent, #C9A96E);
	margin: 0 0 10px;
}

.zabiegi-faq__title {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 300;
	font-size: clamp(28px, 3.6vw, 44px);
	line-height: 1.1;
	letter-spacing: -0.015em;
	color: var(--c-text-on-light, #1A1714);
	margin: 0;
}

.zabiegi-faq__list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.zabiegi-faq__item {
	border: 1px solid rgba(201, 169, 110, 0.24);
	border-radius: 14px;
	overflow: hidden;
	background: #FFFFFF;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.zabiegi-faq__item[open] {
	border-color: rgba(201, 169, 110, 0.5);
	box-shadow: 0 8px 22px -12px rgba(122, 92, 30, 0.22);
}

.zabiegi-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 22px;
	cursor: pointer;
	background: linear-gradient(135deg, rgba(245, 236, 216, 0.45) 0%, #FFFFFF 100%);
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-weight: 400;
	font-size: clamp(15px, 1.3vw, 18px);
	line-height: 1.3;
	color: var(--c-text-on-light, #1A1714);
	list-style: none;
	transition: background 0.3s ease;
}

.zabiegi-faq__question::-webkit-details-marker { display: none; }

.zabiegi-faq__question:hover {
	background: linear-gradient(135deg, rgba(245, 236, 216, 0.75) 0%, rgba(245, 236, 216, 0.3) 100%);
}

.zabiegi-faq__item[open] .zabiegi-faq__question {
	background: linear-gradient(135deg, rgba(201, 169, 110, 0.14) 0%, rgba(245, 236, 216, 0.7) 100%);
	border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.zabiegi-faq__q-text {
	flex: 1;
	min-width: 0;
}

.zabiegi-faq__q-icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(201, 169, 110, 0.14);
	color: var(--c-accent, #C9A96E);
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease;
}

.zabiegi-faq__item[open] .zabiegi-faq__q-icon {
	transform: rotate(180deg);
	background: var(--c-accent, #C9A96E);
	color: #FFFFFF;
}

.zabiegi-faq__answer {
	padding: 16px 22px 22px;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: 14.5px;
	line-height: 1.7;
	color: var(--c-text-muted, #6B5F53);
}

/* Mobile compact */
@media (max-width: 640px) {
	.zabiegi-faq__question {
		padding: 14px 18px;
		font-size: 15px;
	}
	.zabiegi-faq__answer {
		padding: 14px 18px 18px;
		font-size: 13.5px;
	}
}


/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE BOTTOM BAR + CENNIK DRAWER — single-usluga.php
   Tylko <768px. Desktop: ukryte.
   ═══════════════════════════════════════════════════════════════════════════ */

/* Ukryj stary floating pill + back-fab na mobile i tablecie — zastąpione przez usluga-mob-bar */
@media (max-width: 1024px) {
	.usluga-floating-pricing {
		display: none !important;
	}
	.single-usluga .parendi-back-fab {
		display: none !important;
	}
	/* Ukryj cenę i telefon z hero cta-corner na mobile - przeniesione do bottom bar */
	.cat-hero__cta-corner .usluga-hero__price-block,
	.cat-hero__cta-corner .cat-hero__cta,
	.cat-hero__cta-corner .usluga-hero__microcopy {
		display: none;
	}
}

/* ── Bottom bar ────────────────────────────────────────────────────────────── */
.usluga-mob-bar {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9990;
	padding: .75rem 1rem calc(.75rem + env(safe-area-inset-bottom, 0px));
	background: #fff;
	border-top: 1px solid rgba(201, 169, 110, .18);
	box-shadow: 0 -8px 28px -8px rgba(26, 23, 20, .12);
	gap: .6rem;
	align-items: center;
}

@media (max-width: 1024px) {
	.usluga-mob-bar { display: flex; }
	/* Daj oddech dolnej sekcji strony żeby bar nie przykrywał contentu */
	article.usluga-single { padding-bottom: 80px; }
}

.usluga-mob-bar__back {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	flex-shrink: 0;
	border-radius: 50%;
	background: var(--c-cream, #f5ecd8);
	color: var(--c-accent, #c9a96e);
	text-decoration: none;
	border: 1.5px solid rgba(201, 169, 110, .3);
	transition: background .18s, color .18s;
	-webkit-tap-highlight-color: transparent;
}

.usluga-mob-bar__back:active {
	background: var(--c-accent, #c9a96e);
	color: #fff;
}

.usluga-mob-bar__price-btn {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: .5rem;
	padding: .75rem 1.25rem;
	background: linear-gradient(135deg, #d4b880 0%, #c9a96e 50%, #a07830 100%);
	color: #fff;
	border: none;
	border-radius: 40px;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	box-shadow: 0 8px 20px -6px rgba(122, 92, 30, .45);
	transition: transform .18s, box-shadow .18s;
}

.usluga-mob-bar__price-btn:active {
	transform: scale(.97);
}

.usluga-mob-bar__label {
	white-space: nowrap;
}

.usluga-mob-bar__from {
	font-size: .72rem;
	font-weight: 500;
	opacity: .88;
	white-space: nowrap;
	background: rgba(255, 255, 255, .18);
	border-radius: 20px;
	padding: .2em .7em;
}

.usluga-mob-bar__call {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	border-radius: 50%;
	background: var(--c-cream, #f5ecd8);
	color: var(--c-accent, #c9a96e);
	text-decoration: none;
	border: 1.5px solid rgba(201, 169, 110, .3);
	transition: background .18s, color .18s;
	-webkit-tap-highlight-color: transparent;
}

.usluga-mob-bar__call:active {
	background: var(--c-accent, #c9a96e);
	color: #fff;
}

/* ── Cennik drawer (bottom sheet) ──────────────────────────────────────────── */
.usluga-cena-backdrop {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(26, 23, 20, .5);
	z-index: 9991;
}

.usluga-cena-backdrop.is-visible { display: block; }

.usluga-cena-sheet {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9992;
	background: #fff;
	border-radius: 20px 20px 0 0;
	box-shadow: 0 -16px 48px -12px rgba(26, 23, 20, .22);
	transform: translateY(105%);
	transition: transform .36s cubic-bezier(.4, 0, .2, 1);
	max-height: 85dvh;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	/* Tylko na mobile */
}

@media (min-width: 1025px) {
	.usluga-cena-sheet,
	.usluga-cena-backdrop,
	.usluga-mob-bar { display: none !important; }
}

.usluga-cena-sheet.is-open {
	transform: translateY(0);
}

/* Drag handle */
.usluga-cena-sheet::before {
	content: '';
	display: block;
	width: 36px;
	height: 4px;
	background: rgba(26, 23, 20, .14);
	border-radius: 2px;
	margin: .75rem auto .25rem;
	flex-shrink: 0;
}

/* Head */
.usluga-cena-sheet__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: .75rem;
	padding: .5rem 1.25rem 1rem;
	border-bottom: 1px solid rgba(201, 169, 110, .15);
	flex-shrink: 0;
}

.usluga-cena-sheet__head-text {
	display: flex;
	flex-direction: column;
	gap: .2rem;
	min-width: 0;
}

.usluga-cena-sheet__eyebrow {
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: .65rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--c-accent, #c9a96e);
}

.usluga-cena-sheet__name {
	font-family: var(--font-serif, 'Fraunces', serif);
	font-style: italic;
	font-size: 1rem;
	font-weight: 400;
	color: var(--c-dark, #1a1714);
	line-height: 1.2;
}

.usluga-cena-sheet__close {
	background: var(--c-cream, #f5ecd8);
	border: none;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--c-muted, #9e8c7a);
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	margin-top: .1rem;
}

/* Body */
.usluga-cena-sheet__body {
	overflow-y: auto;
	flex: 1;
	padding: .5rem 1.25rem 1rem;
	overscroll-behavior: contain;
}

/* Tabela wierszy cennika */
.usluga-cena-sheet__table {
	display: flex;
	flex-direction: column;
}

.usluga-cena-sheet__row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	padding: .85rem 0;
	border-bottom: 1px solid rgba(201, 169, 110, .12);
}

.usluga-cena-sheet__row:last-child { border-bottom: none; }

.usluga-cena-sheet__section-header {
	padding: .7rem 0 .4rem;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-weight: 700;
	font-size: 10px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--c-accent, #C9A96E);
	border-bottom: 1px solid rgba(201, 169, 110, 0.3);
	margin-bottom: .2rem;
}

.usluga-cena-sheet__promo-bar {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 16px 0 0;
	padding: 14px 20px;
	background: linear-gradient(135deg, #2C1F0E 0%, #3D2B10 40%, #2C1F0E 100%);
	border: 1px solid rgba(201, 169, 110, 0.6);
	border-left: 4px solid #C9A96E;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 700;
	color: #F5ECD4;
	box-shadow: 0 4px 16px rgba(44, 31, 14, 0.25);
}

.usluga-cena-sheet__row-left {
	display: flex;
	flex-direction: column;
	gap: .2rem;
	min-width: 0;
}

.usluga-cena-sheet__row-name {
	font-size: .88rem;
	color: var(--c-dark, #1a1714);
	line-height: 1.3;
}

.usluga-cena-sheet__row-note {
	font-size: .74rem;
	color: var(--c-muted, #9e8c7a);
}

.usluga-cena-sheet__row-right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: .15rem;
	flex-shrink: 0;
}

.usluga-cena-sheet__row-price {
	font-size: 1rem;
	font-weight: 700;
	color: var(--c-dark, #1a1714);
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
}

.usluga-cena-sheet__row-pkg {
	font-size: .7rem;
	color: var(--c-accent, #c9a96e);
	white-space: nowrap;
}

/* Prosta cena (gdy brak szczegółowego cennika) */
.usluga-cena-sheet__simple {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.25rem 0;
	border-bottom: 1px solid rgba(201, 169, 110, .12);
}

.usluga-cena-sheet__simple-label {
	font-size: .85rem;
	color: var(--c-text, #3d3028);
}

.usluga-cena-sheet__simple-price {
	font-size: 1rem;
	color: var(--c-dark, #1a1714);
}

.usluga-cena-sheet__simple-price strong {
	font-size: 1.3rem;
	font-weight: 700;
}

.usluga-cena-sheet__simple-price small {
	font-size: .75rem;
	color: var(--c-muted, #9e8c7a);
	display: block;
	text-align: right;
}

.usluga-cena-sheet__note {
	font-size: .74rem;
	color: var(--c-muted, #9e8c7a);
	margin: .75rem 0 0;
	line-height: 1.5;
}

/* Footer */
.usluga-cena-sheet__footer {
	padding: .75rem 1.25rem calc(.75rem + env(safe-area-inset-bottom, 0px));
	border-top: 1px solid rgba(201, 169, 110, .15);
	display: flex;
	flex-direction: column;
	gap: .6rem;
	flex-shrink: 0;
}

.usluga-cena-sheet__book {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .6rem;
	padding: .9rem 1.5rem;
	background: linear-gradient(135deg, #d4b880 0%, #c9a96e 50%, #a07830 100%);
	color: #fff;
	text-decoration: none;
	border-radius: 40px;
	font-family: var(--font-sans, 'Inter', sans-serif);
	font-size: .82rem;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	box-shadow: 0 8px 20px -6px rgba(122, 92, 30, .4);
}

.usluga-cena-sheet__full {
	text-align: center;
	font-size: .75rem;
	color: var(--c-muted, #9e8c7a);
	text-decoration: underline;
	text-underline-offset: 3px;
}
