/* Native booking wizard — RWD, touch targets */
.therapy-native-booking {
	--tbn-lav-100: #faf7fc;
	--tbn-lav-200: #f0e8f8;
	--tbn-lav-300: #e4d4f4;
	--tbn-lav-400: #c4a8dc;
	--tbn-lav-600: #6b4d8a;
	--tbn-lav-800: #3d2a5c;
	--tbn-lav-muted: #7a7388;

	max-width: 48rem;
	margin: 0 auto;
	font-size: 1rem;
	line-height: 1.45;
}

.therapy-native-booking__steps {
	position: relative;
	overflow: hidden;
	min-height: 6rem;
}

.therapy-native-booking__heading {
	font-size: 1.25rem;
	margin: 0 0 1rem;
}

.therapy-native-booking__fieldset {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	border: 1px solid #c5d5d8;
	border-radius: 12px;
	padding: 0.75rem 1rem 0.25rem;
	margin: 1rem 0;
}

.therapy-native-booking__legend {
	font-weight: 600;
	padding: 0 0.35rem;
}

.therapy-native-booking__radio {
	margin: 0.5rem 0;
}

.therapy-native-booking__radio label {
	cursor: pointer;
}

.therapy-native-booking__blik-logo {
	display: block;
	max-width: 140px;
	height: auto;
}

.therapy-native-booking__blik-logo--inline {
	display: inline-block;
	max-width: 64px;
	vertical-align: middle;
	margin: 0 0.2rem 0 0.15rem;
	border-radius: 4px;
}

.therapy-native-booking__blik-option {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	flex-wrap: wrap;
}

.therapy-native-booking__radio--blik {
	padding-left: 0.35rem;
	border-left: 3px solid #E60012;
}

.therapy-native-booking__paygrid {
	display: grid;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	--tbn-paygap: 0.65rem;
	gap: var(--tbn-paygap);
	/* minmax(0,1fr) + gap — równy podział na całą szerokość fieldsetu (nie połowa formularza) */
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 0.75rem 0 0.5rem;
}

.therapy-native-booking__paytile {
	position: relative;
	display: block;
	min-width: 0;
	border: 1px solid #c5d5d8;
	border-radius: 12px;
	background: #fff;
	padding: 0.75rem 0.85rem;
	cursor: pointer;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
	transition: box-shadow 120ms ease, transform 120ms ease, border-color 120ms ease;
	min-height: 104px;
	text-align: center;
}

.therapy-native-booking__paytile:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 14px rgba(15, 61, 71, 0.10);
	border-color: #8ebcc6;
}

.therapy-native-booking__paytile input[type="radio"] {
	position: absolute;
	inset: 0;
	opacity: 0;
	pointer-events: none;
}

.therapy-native-booking__paytile-body {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	align-items: center;
}

.therapy-native-booking__payicon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: #f4f7f8;
	border: 1px solid #d8e4e7;
	font-size: 20px;
	line-height: 1;
	flex: 0 0 auto;
}

.therapy-native-booking__paytitle {
	font-weight: 700;
	color: #0d2b33;
	line-height: 1.25;
	font-size: 0.92rem;
	white-space: normal;
	word-break: break-word;
}

.therapy-native-booking__paytile.is-active,
.therapy-native-booking__paytile:has(input[type="radio"]:checked) {
	border-color: #1a6b7c;
	box-shadow: 0 0 0 2px rgba(26, 107, 124, 0.22);
}

.therapy-native-booking__paytile--blik .therapy-native-booking__payicon {
	background: #fff5f5;
	border-color: #f4c3c3;
}

.therapy-native-booking__mc {
	position: relative;
	width: 34px;
	height: 22px;
	display: inline-block;
}

.therapy-native-booking__mc-a,
.therapy-native-booking__mc-b {
	position: absolute;
	top: 2px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	opacity: 0.95;
}

.therapy-native-booking__mc-a {
	left: 3px;
	background: #ea001b;
}

.therapy-native-booking__mc-b {
	right: 3px;
	background: #f79e1b;
}

.therapy-native-booking__blik-num {
	font-size: 1.15rem;
	letter-spacing: 0.03em;
}

.therapy-native-booking__blik-success p {
	margin: 0.65rem 0;
}

.therapy-native-booking__transfer-dl {
	margin: 0.75rem 0 0;
	padding: 0.75rem 1rem;
	background: #f6f7f7;
	border-radius: 8px;
	border: 1px solid #dcdcde;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.35rem 1rem;
	font-size: 0.95rem;
}

.therapy-native-booking__transfer-dl dt {
	margin: 0;
	font-weight: 600;
	color: #1d2327;
}

.therapy-native-booking__transfer-dl dd {
	margin: 0;
	word-break: break-word;
}

/* ── Animacje paneli ── */
@keyframes tbn-panel-in {
	from {
		opacity: 0;
		transform: translateY(22px) scale(0.98);
		filter: blur(1px);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
		filter: blur(0);
	}
}

@keyframes tbn-panel-back-in {
	from {
		opacity: 0;
		transform: translateY(-16px) scale(0.98);
		filter: blur(1px);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
		filter: blur(0);
	}
}

.therapy-native-booking__panel--hidden {
	display: none !important;
}

.therapy-native-booking__panel--anim-in {
	will-change: opacity, transform, filter;
	animation: tbn-panel-in 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.therapy-native-booking__panel--anim-back {
	will-change: opacity, transform, filter;
	animation: tbn-panel-back-in 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (prefers-reduced-motion: reduce) {
	.therapy-native-booking__panel--anim-in,
	.therapy-native-booking__panel--anim-back {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

.therapy-native-booking__times {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.therapy-native-booking__services {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 0.75rem;
	margin-bottom: 1rem;
	align-items: stretch;
}

/* Kalendarz — widok miesiąca (pn–nd) */
.therapy-native-booking__cal-host {
	margin-bottom: 1.25rem;
}

.therapy-native-booking__cal-loading {
	margin: 0;
	color: #345;
}

.therapy-native-booking__cal-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	margin-bottom: 0.65rem;
}

.therapy-native-booking__cal-title {
	flex: 1;
	text-align: center;
	font-size: 1.05rem;
	font-weight: 700;
	text-transform: capitalize;
	color: #0d2b33;
	letter-spacing: 0.02em;
}

.therapy-native-booking__cal-nav-btn {
	min-width: 44px;
	min-height: 44px;
	padding: 0;
	border: none;
	border-radius: 10px;
	background: #e8f1f3;
	color: #1a6b7c;
	font-size: 1.35rem;
	line-height: 1;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
}

.therapy-native-booking__cal-nav-btn:hover {
	background: #d5e8ec;
}

.therapy-native-booking__cal-nav-btn:focus-visible {
	outline: 3px solid #1a6b7c;
	outline-offset: 2px;
}

.therapy-native-booking__cal-weekdays {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 2px;
	margin-bottom: 6px;
}

.therapy-native-booking__cal-wd {
	text-align: center;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #5a7a82;
	padding: 0.2rem 0;
}

.therapy-native-booking__cal-grid {
	display: flex;
	flex-direction: column;
	gap: 4px;
	border: 1px solid #c5d5d8;
	border-radius: 12px;
	padding: 8px;
	background: #fafcfd;
}

.therapy-native-booking__cal-row {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 4px;
}

.therapy-native-booking__cal-cell--pad {
	min-height: 40px;
	pointer-events: none;
}

.therapy-native-booking__cal-day {
	box-sizing: border-box;
	min-height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	font: inherit;
	font-weight: 600;
	font-size: 0.95rem;
	border: 2px solid transparent;
	background: #fff;
	color: #123;
	cursor: pointer;
	transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}

.therapy-native-booking__cal-day:hover:not(.therapy-native-booking__cal-day--muted) {
	background: #e3f2f5;
	border-color: #8ebcc6;
}

.therapy-native-booking__cal-day.is-today:not(.is-selected) {
	border-color: #1a6b7c;
	box-shadow: inset 0 0 0 1px rgba(26, 107, 124, 0.35);
}

.therapy-native-booking__cal-day.is-selected {
	background: #1a6b7c;
	color: #fff;
	border-color: #134f5c;
}

.therapy-native-booking__cal-day--muted {
	background: #f0f4f5;
	color: #9aa8ad;
	cursor: default;
	font-weight: 500;
}

.therapy-native-booking__cal-msg {
	margin: 0.75rem 0 0;
	font-size: 0.9rem;
	color: #5a6d73;
}

.therapy-native-booking__chip {
	min-height: 48px;
	min-width: 48px;
	padding: 0.5rem 0.85rem;
	border-radius: 10px;
	border: 2px solid #1a6b7c;
	background: #fff;
	cursor: pointer;
	font: inherit;
}

.therapy-native-booking__chip.is-selected,
.therapy-native-booking__card.is-selected {
	background: #1a6b7c;
	color: #fff;
	border-color: #134f5c;
}

/* ── Pasek nawigacji (Wróć) ── */
.therapy-native-booking__nav {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

.therapy-native-booking__nav-back {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.3rem 0.65rem 0.3rem 0.45rem;
	border: 1.5px solid #c5d5d8;
	border-radius: 8px;
	background: transparent;
	color: #1a6b7c;
	font: inherit;
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.14s ease, border-color 0.14s ease, color 0.14s ease;
	line-height: 1.3;
}

.therapy-native-booking__nav-back::before {
	content: '←';
	font-size: 1.05em;
	line-height: 1;
}

.therapy-native-booking__nav-back:hover {
	background: #e8f1f3;
	border-color: #8ebcc6;
}

.therapy-native-booking__nav-back:focus-visible {
	outline: 3px solid #1a6b7c;
	outline-offset: 2px;
}

/* ── Karty zabiegów ── */
.therapy-native-booking__card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	border: 2px solid #c5d5d8;
	border-radius: 14px;
	padding: 1rem 2.25rem 1rem 1.1rem;
	cursor: pointer;
	min-height: 4.5rem;
	background: #fff;
	transition:
		border-color 0.16s ease,
		box-shadow 0.16s ease,
		transform 0.14s ease,
		background 0.16s ease;
}

.therapy-native-booking__card-title {
	display: block;
	font-size: 1.02rem;
	line-height: 1.35;
	color: #111;
}

.therapy-native-booking__card-meta {
	display: block;
	font-size: 0.88rem;
	color: #111;
	font-weight: 500;
}

.therapy-native-booking__card:hover {
	border-color: #1a6b7c;
	box-shadow: 0 4px 16px rgba(26, 107, 124, 0.12);
	transform: translateY(-2px);
}

.therapy-native-booking__card:active {
	transform: translateY(0) scale(0.99);
}

.therapy-native-booking__card:focus-visible {
	outline: 3px solid #1a6b7c;
	outline-offset: 2px;
}

/* Ozdoba wskazująca "kliknij" */
.therapy-native-booking__card::after {
	content: '→';
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	color: #8ebcc6;
	font-size: 1.1rem;
	transition: color 0.14s ease, transform 0.14s ease;
}

.therapy-native-booking__card:hover::after {
	color: #1a6b7c;
	transform: translateY(-50%) translateX(3px);
}

.therapy-native-booking__card.is-selected::after {
	content: '✓';
	color: #fff;
}

.therapy-native-booking__card.is-selected .therapy-native-booking__card-title,
.therapy-native-booking__card.is-selected .therapy-native-booking__card-meta {
	color: #fff;
}

.therapy-native-booking__btn {
	min-height: 48px;
	padding: 0.6rem 1.2rem;
	margin: 0.35rem 0.35rem 0.35rem 0;
	border-radius: 10px;
	border: none;
	font: inherit;
	cursor: pointer;
}

.therapy-native-booking__btn:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.therapy-native-booking__btn--primary {
	background: #1a6b7c;
	color: #fff;
}

.therapy-native-booking__btn--secondary {
	background: #e8f1f3;
	color: #123;
}

.therapy-native-booking__input {
	width: 100%;
	max-width: 100%;
	min-height: 44px;
	padding: 0.5rem 0.65rem;
	border: 1px solid #9bb;
	border-radius: 8px;
	font: inherit;
	box-sizing: border-box;
}

/* Kafelki płatności to też <label> — bez „etykiety nad polem” */
.therapy-native-booking__form label:not(.therapy-native-booking__paytile) {
	display: block;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.therapy-native-booking__form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem 1rem;
	align-items: start;
}

.therapy-native-booking__form > p {
	margin: 0;
}

/* Elementy „pełnej szerokości” w 2-kolumnowym układzie */
.therapy-native-booking__form > p.therapy-native-booking__form-row--full,
.therapy-native-booking__form > p.therapy-native-booking__err,
.therapy-native-booking__form > .therapy-native-booking__fieldset {
	grid-column: 1 / -1;
	width: 100%;
	min-width: 0;
}

.therapy-native-booking__dpay-direct {
	margin-top: 0.8rem;
	padding-top: 0.8rem;
	border-top: 1px solid #d7e2e5;
}

.therapy-native-booking__dpay-direct-title {
	margin: 0 0 0.6rem;
	font-weight: 700;
}

.therapy-native-booking__dpay-direct-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	gap: 0.45rem;
}

.therapy-native-booking__dpay-channel {
	border: 1px solid #c5d5d8;
	border-radius: 10px;
	background: #fff;
	cursor: pointer;
	padding: 0.45rem 0.5rem;
	min-height: 54px;
}

.therapy-native-booking__dpay-channel.is-selected {
	border-color: #1a6b7c;
	box-shadow: 0 0 0 2px rgba(26, 107, 124, 0.22);
}

.therapy-native-booking__dpay-channel-body {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	justify-content: center;
}

.therapy-native-booking__dpay-channel img {
	max-height: 22px;
	max-width: 64px;
	width: auto;
}

.therapy-native-booking__dpay-direct-info {
	margin: 0.55rem 0 0;
	font-size: 0.88rem;
	color: #445f66;
}

.therapy-native-booking__dpay-tos {
	display: flex;
	gap: 0.5rem;
	align-items: flex-start;
	margin-top: 0.65rem;
	font-weight: 500;
}

.therapy-native-booking__form > button[type="submit"] {
	grid-column: 1 / -1;
	justify-self: start;
}

@media (max-width: 720px) {
	.therapy-native-booking__form {
		grid-template-columns: 1fr;
		gap: 0.7rem;
	}
	.therapy-native-booking__form > button[type="submit"] {
		justify-self: stretch;
	}
}

label[for='tbn-notes'] {
	font-size: 0.92rem;
	line-height: 1.35;
}

.therapy-native-booking__err {
	color: #b00020;
	font-weight: 600;
}

.therapy-native-booking__global-notice {
	margin: 0 0 1rem;
	padding: 0.85rem 1rem;
	border-radius: 10px;
	background: #fdecef;
	border: 1px solid #f3c1c9;
	color: #7a1220;
	font-weight: 600;
	font-size: 0.95rem;
	line-height: 1.4;
}

.therapy-native-booking__global-notice[hidden] {
	display: none;
}

/* --- Strona /potwierdzenie/ (powrót z DPAY) --- */
.therapy-booking-status {
	max-width: 640px;
	margin: 2rem auto;
	padding: 1.5rem 1.75rem;
	border-radius: 14px;
	background: #fafafa;
	border: 1px solid #e4e4e4;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
	font-size: 1rem;
	line-height: 1.5;
	color: #2b2b2b;
}

.therapy-booking-status__title {
	margin: 0 0 0.75rem;
	font-size: 1.35rem;
	font-weight: 700;
}

.therapy-booking-status__p {
	margin: 0 0 0.6rem;
}

.therapy-booking-status__meta {
	margin: 1rem 0 0;
	padding: 0.85rem 1rem;
	border-radius: 10px;
	background: #fff;
	border: 1px solid #ececec;
	list-style: none;
	font-size: 0.95rem;
}

.therapy-booking-status__meta li {
	margin: 0;
	padding: 0.15rem 0;
}

.therapy-booking-status--ok {
	background: #eafaf0;
	border-color: #bfe6cf;
}

.therapy-booking-status--ok .therapy-booking-status__title {
	color: #14532d;
}

.therapy-booking-status--warn {
	background: #fdecef;
	border-color: #f3c1c9;
}

.therapy-booking-status--warn .therapy-booking-status__title {
	color: #7a1220;
}

.therapy-booking-status--info {
	background: #eef4fb;
	border-color: #cbdcee;
}

.therapy-booking-status--info .therapy-booking-status__title {
	color: #1f4571;
}

/* --- Siatka terminów (paginacja ~4 tyg., lawendowy UI) --- */
.therapy-native-booking__slot-intro {
	margin: 0 0 1rem;
	font-size: 0.92rem;
	line-height: 1.45;
	color: var(--tbn-lav-muted);
}

.therapy-native-booking__slot-pager {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem 0.75rem;
	margin: 0 0 0.85rem;
}

.therapy-native-booking__slot-pager-label {
	flex: 1 1 12rem;
	text-align: center;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--tbn-lav-800);
	line-height: 1.35;
}

.therapy-native-booking__slot-pager-meta {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--tbn-lav-muted);
	white-space: nowrap;
}

.therapy-native-booking__slot-pager-btn {
	font: inherit;
	padding: 0.45rem 0.85rem;
	border-radius: 10px;
	border: 1px solid var(--tbn-lav-400);
	background: #fff;
	color: var(--tbn-lav-800);
	cursor: pointer;
	transition: background 120ms ease, border-color 120ms ease;
}

.therapy-native-booking__slot-pager-btn:hover:not(:disabled) {
	background: var(--tbn-lav-100);
	border-color: var(--tbn-lav-600);
}

.therapy-native-booking__slot-pager-btn:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.therapy-native-booking__slot-pager--single {
	justify-content: center;
}

.therapy-native-booking__slot-pager--single .therapy-native-booking__slot-pager-label {
	flex: none;
	text-align: center;
	max-width: 100%;
}

.therapy-native-booking__slot-grid-host {
	min-height: 4rem;
}

.therapy-native-booking__grid-loading {
	margin: 0;
	color: var(--tbn-lav-muted);
	font-size: 0.95rem;
}

.therapy-native-booking__grid-msg {
	margin: 0.75rem 0 0;
	font-size: 0.88rem;
	color: var(--tbn-lav-muted);
	text-align: center;
}

.therapy-native-booking__slot-grid {
	display: grid;
	gap: 0.9rem;
}

.therapy-native-booking__slot-week {
	padding: 0.65rem 0.35rem 0.85rem;
	background: var(--tbn-lav-100);
	border-radius: 14px;
	border: 1px solid var(--tbn-lav-300);
	box-shadow: 0 6px 24px rgba(61, 42, 92, 0.07);
}

.therapy-native-booking__slot-week-title {
	margin: 0 0 0.6rem;
	padding: 0 0.2rem;
	font-size: 0.95rem;
	color: var(--tbn-lav-800);
	font-weight: 700;
}

.therapy-native-booking__slot-week--flat {
	padding: 0.65rem 0.45rem 0.85rem;
}

.therapy-native-booking__slot-grid-cols {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 0.4rem 0.35rem;
}

.therapy-native-booking__slot-grid-cols--flat {
	grid-template-columns: repeat(auto-fill, minmax(108px, 1fr));
	gap: 0.55rem 0.45rem;
}

.therapy-native-booking__slot-grid-cols--week6 {
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 0.4rem 0.35rem;
}

.therapy-native-booking__slot-col--out-range {
	visibility: hidden;
	min-height: 0;
	pointer-events: none;
}

.therapy-native-booking__slot-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 0;
}

.therapy-native-booking__slot-col-head {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-bottom: 0.5rem;
	gap: 0.1rem;
}

.therapy-native-booking__slot-col-dow {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--tbn-lav-800);
	text-transform: capitalize;
}

.therapy-native-booking__slot-col-dm {
	font-size: 0.74rem;
	color: var(--tbn-lav-muted);
	font-weight: 500;
}

.therapy-native-booking__slot-col-times {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.38rem;
	width: 100%;
}

.therapy-native-booking__slot-pill {
	box-sizing: border-box;
	width: 100%;
	padding: 0.42rem 0.35rem;
	border: none;
	border-radius: 10px;
	background: var(--tbn-lav-200);
	color: var(--tbn-lav-800);
	font: inherit;
	font-size: 0.78rem;
	font-weight: 700;
	cursor: pointer;
	min-height: 40px;
	transition: background 0.12s ease, color 0.12s ease, box-shadow 0.12s ease;
}

.therapy-native-booking__slot-pill:hover {
	background: var(--tbn-lav-300);
}

.therapy-native-booking__slot-pill.is-selected {
	background: var(--tbn-lav-600);
	color: #fff;
	box-shadow: 0 2px 8px rgba(107, 77, 138, 0.35);
}

.therapy-native-booking__slot-pill:focus-visible {
	outline: 2px solid var(--tbn-lav-600);
	outline-offset: 2px;
}

.therapy-native-booking__slot-dash {
	display: block;
	text-align: center;
	color: #c8c0d4;
	font-size: 1.1rem;
	line-height: 2;
	user-select: none;
}

@media (max-width: 900px) {
	.therapy-native-booking__slot-grid-cols {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
	.therapy-native-booking__slot-grid-cols--week6 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.therapy-native-booking__paygrid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.therapy-native-booking__paytile {
		min-height: 96px;
	}
}

@media (max-width: 520px) {
	.therapy-native-booking__slot-grid-cols {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.3rem 0.25rem;
	}
	.therapy-native-booking__slot-grid-cols--week6 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.therapy-native-booking__paygrid {
		grid-template-columns: 1fr;
	}
	.therapy-native-booking__slot-pill {
		font-size: 0.72rem;
		min-height: 38px;
		padding: 0.35rem 0.2rem;
	}
	.therapy-native-booking__slot-col-dow {
		font-size: 0.72rem;
	}
}

/* Bezpiecznik: ukryj domyślnie BLIK (kanał 1) i „Przelew tradycyjny" (kanał 94) z cache. */
.therapy-native-booking__dpay-channel[data-channel-id="1"],
.therapy-native-booking__dpay-channel[data-channel-id="94"] {
	display: none !important;
}

/* Portfele cyfrowe (Google Pay / Apple Pay) — siatka nad listą banków DPAY. */
.therapy-native-booking__wallets {
	grid-column: 1 / -1;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	padding: 0.85rem 1rem 1rem;
	margin: 0 0 0.5rem;
	border: 1px solid rgba(26, 107, 124, 0.18);
	border-radius: 14px;
	background: linear-gradient(180deg, #f8fcfd, #ffffff);
}
.therapy-native-booking__wallets-legend {
	font-weight: 600;
	font-size: 0.85rem;
	color: #1a6b7c;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.therapy-native-booking__wallet-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 48px;
	padding: 0.55rem 1.1rem;
	border-radius: 999px;
	border: 0;
	font: inherit;
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	transition: transform 0.05s ease, box-shadow 0.15s ease, background 0.15s ease;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.therapy-native-booking__wallet-btn:active {
	transform: translateY(1px);
}
/* Host dla Google Pay jest <div> — usuwamy własne tło/padding, żeby nie konfliktować z brandowanym przyciskiem createButton. */
.therapy-native-booking__wallet-btn--gpay {
	padding: 0;
	min-height: 0;
	background: transparent;
	box-shadow: none;
}
.therapy-native-booking__wallet-btn--gpay > .gpay-button,
.therapy-native-booking__wallet-btn--gpay > button {
	width: 100%;
	min-height: 48px;
}
.therapy-native-booking__wallet-btn--apay {
	background: #000;
	color: #fff;
}
.therapy-native-booking__wallet-btn--apay:hover {
	background: #1f1f1f;
}
.therapy-native-booking__wallet-btn-ico {
	font-weight: 700;
	letter-spacing: 0.02em;
}
/* Zapasowy przycisk GPay gdy SDK jeszcze nie wczytane lub urządzenie niepewne — wygląda jak brandowany, do czasu zamiany. */
.therapy-native-booking__wallet-btn-fallback {
	width: 100%;
	min-height: 48px;
	border-radius: 999px;
	border: 0;
	background: #000;
	color: #fff;
	font: inherit;
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
}
.therapy-native-booking__wallets-or {
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #6c7e84;
	text-align: center;
	position: relative;
	margin: 0.3rem 0 -0.2rem;
}
.therapy-native-booking__wallets-or::before,
.therapy-native-booking__wallets-or::after {
	content: '';
	display: inline-block;
	width: 22%;
	height: 1px;
	background: rgba(26, 107, 124, 0.18);
	vertical-align: middle;
	margin: 0 0.5rem;
}
