/* =========================================================================
   Pati Booking — randevu sihirbazı
   Renk/tipografi değerleri temanın main.css tokenlarından gelir; tema yoksa
   yedek değerler devreye girer. Böylece booking sitenin doğal parçası olur.
   ========================================================================= */

.pb {
	--pb-orange:    var(--orange, #f7841f);
	--pb-orange-d:  var(--orange-dark, #e26f0c);
	--pb-orange-sf: var(--orange-soft, #fdece0);
	--pb-ink:       var(--ink, #2c2c2c);
	--pb-ink-soft:  var(--ink-soft, #3d3a38);
	--pb-muted:     var(--muted, #6b7280);
	--pb-card:      var(--card, #fff);
	--pb-border:    var(--border, #f0eae3);
	--pb-cream:     var(--cream, #fdf8f3);
	--pb-cream-2:   var(--cream-2, #fff7ef);
	--pb-green:     var(--green-dark, #5e9c33);
	--pb-sage-sf:   var(--sage-soft, #e7efdc);
	--pb-radius:    var(--radius, 16px);
	--pb-radius-sm: var(--radius-sm, 10px);
	--pb-shadow:    var(--shadow-md, 0 10px 30px rgba(44, 44, 44, .07));
	--pb-shadow-sm: var(--shadow-sm, 0 4px 14px rgba(44, 44, 44, .05));
	--pb-shadow-xs: var(--shadow-xs, 0 1px 3px rgba(44, 44, 44, .04));
	--pb-head:      var(--font-head, "Poppins", "Segoe UI", system-ui, sans-serif);
	--pb-body:      var(--font-body, "Inter", "Segoe UI", system-ui, sans-serif);
	--pb-ring:      0 0 0 3px rgba(247, 132, 31, .18);

	max-width: 940px;
	margin-inline: auto;
	font-family: var(--pb-body);
	color: var(--pb-ink);
}

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

/* .pb-btn display:inline-flex, [hidden] varsayilanini eziyordu. */
.pb [hidden] { display: none !important; }

/* Tutarlı odak halkası — temanın :focus-visible dili. */
.pb :focus-visible {
	outline: 2px solid var(--pb-orange);
	outline-offset: 3px;
	border-radius: 8px;
}

/* -------------------------------------------------------------------------
   Adım göstergesi
   ---------------------------------------------------------------------- */
.pb-steps {
	display: flex;
	gap: 4px;
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
}

.pb-step {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	position: relative;
	color: var(--pb-muted);
	font-size: 12.5px;
	text-align: center;
}

/* Adımları birleştiren çizgi */
.pb-step::before {
	content: "";
	position: absolute;
	top: 17px;
	left: -50%;
	width: 100%;
	height: 3px;
	border-radius: 3px;
	/* Çizgi soldan sağa dolar: sert renk atlaması yerine akışkan ilerleme. */
	background-image: linear-gradient(90deg, var(--pb-orange) 0 50%, var(--pb-border) 50% 100%);
	background-size: 200% 100%;
	background-position: 100% 0;
	transition: background-position .45s cubic-bezier(.3, .8, .3, 1);
}
.pb-step:first-child::before { display: none; }
.pb-step.is-done::before,
.pb-step.is-active::before { background-position: 0 0; }

.pb-step__n {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px; height: 36px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--pb-border);
	color: var(--pb-muted);
	font-family: var(--pb-head);
	font-size: 13.5px;
	font-weight: 600;
	transition: background-color .25s ease, border-color .25s ease, color .25s ease,
	            transform .3s cubic-bezier(.2, 1.3, .4, 1), box-shadow .25s ease;
}

.pb-step__l {
	font-family: var(--pb-head);
	line-height: 1.3;
	transition: color .25s ease;
}

/* Tamamlanan adım: rakam yerine tik */
.pb-step.is-done .pb-step__n {
	background: var(--pb-sage-sf);
	border-color: var(--pb-sage-sf);
	color: var(--pb-green);
	font-size: 0;
}
.pb-step.is-done .pb-step__n::after {
	content: "✓";
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
}

/* Aktif adım: dolu turuncu + hafif halka */
.pb-step.is-active .pb-step__n {
	background: var(--pb-orange);
	border-color: var(--pb-orange);
	color: #fff;
	transform: scale(1.06);
	box-shadow: 0 6px 14px rgba(247, 132, 31, .3);
}
.pb-step.is-active .pb-step__l { color: var(--pb-ink); font-weight: 600; }

/* -------------------------------------------------------------------------
   Panel ve adım geçişleri
   ---------------------------------------------------------------------- */
.pb-panel {
	background: var(--pb-card);
	border: 1px solid var(--pb-border);
	border-radius: var(--pb-radius);
	box-shadow: var(--pb-shadow);
	padding: 28px 26px 20px;
}

.pb-pane { display: none; }
.pb-pane.is-active { display: block; animation: pb-in .32s cubic-bezier(.22, .8, .3, 1) both; }

/* İleri giderken sağdan, geri dönerken soldan kayarak gelir. */
[data-pb-dir="fwd"] .pb-pane.is-active { animation-name: pb-in-fwd; }
[data-pb-dir="back"] .pb-pane.is-active { animation-name: pb-in-back; }

@keyframes pb-in {
	from { opacity: 0; transform: translateY(10px); }
	to   { opacity: 1; transform: none; }
}
@keyframes pb-in-fwd {
	from { opacity: 0; transform: translate3d(26px, 0, 0); }
	to   { opacity: 1; transform: none; }
}
@keyframes pb-in-back {
	from { opacity: 0; transform: translate3d(-26px, 0, 0); }
	to   { opacity: 1; transform: none; }
}

/* Panel yüksekliği adımlar arasında yumuşak değişsin (sert zıplama olmasın). */
.pb-panel { transition: height .32s cubic-bezier(.22, .8, .3, 1); }
.pb-panel.is-measuring { overflow: hidden; }

.pb-pane__title {
	margin: 0 0 20px;
	font-family: var(--pb-head);
	font-size: 21px;
	font-weight: 600;
	letter-spacing: -.01em;
	color: var(--pb-ink);
	line-height: 1.3;
}

/* -------------------------------------------------------------------------
   Seçim kartları (hizmet + personel)
   Anasayfadaki hizmet kartı dili: renkli daire içinde ikon, başlık, meta.
   ---------------------------------------------------------------------- */
.pb-grid { display: grid; gap: 14px; }
.pb-grid--services { grid-template-columns: repeat(3, 1fr); }
.pb-grid--staff    { grid-template-columns: repeat(3, 1fr); }

.pb-card-opt {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 20px 14px 18px;
	background: var(--pb-card);
	border: 1px solid var(--pb-border);
	border-radius: 14px;
	box-shadow: var(--pb-shadow-xs);
	cursor: pointer;
	text-align: center;
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.pb-card-opt:hover {
	transform: translateY(-4px);
	border-color: #f6ddc6;
	box-shadow: var(--pb-shadow);
}
.pb-card-opt.is-selected {
	border-color: var(--pb-orange);
	background: var(--pb-cream-2);
	box-shadow: 0 10px 24px rgba(247, 132, 31, .16);
}

/* Seçili karta tik rozeti */
.pb-card-opt.is-selected::after {
	content: "✓";
	position: absolute;
	top: 10px; right: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px; height: 22px;
	border-radius: 50%;
	background: var(--pb-orange);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}

.pb-card-opt__img,
.pb-card-opt__ph {
	width: 76px; height: 76px;
	border-radius: 50%;
	flex: none;
}
.pb-card-opt__img { object-fit: cover; background: var(--pb-cream); }

.pb-card-opt__ph {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--pb-orange-sf);
	color: var(--pb-orange);
	font-family: var(--pb-head);
	font-size: 24px;
	font-weight: 700;
}

.pb-card-opt__name {
	font-family: var(--pb-head);
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1.35;
	color: var(--pb-ink);
}

.pb-card-opt__meta {
	display: inline-block;
	padding: 2px 10px;
	border-radius: 999px;
	background: var(--pb-cream);
	color: var(--pb-muted);
	font-size: 12px;
	line-height: 1.6;
}
.pb-card-opt.is-selected .pb-card-opt__meta { background: #fff; }

.pb-card-opt__price {
	font-family: var(--pb-head);
	font-size: 16px;
	font-weight: 700;
	color: var(--pb-green);
}
.pb-card-opt.is-selected .pb-card-opt__price { color: var(--pb-orange); }

/* -------------------------------------------------------------------------
   Tarih ve saat
   ---------------------------------------------------------------------- */
.pb-datetime {
	display: grid;
	grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
	gap: 22px;
	align-items: start;
}

/* --- Takvim --- */
.pb-cal {
	padding: 16px 16px 14px;
	background: var(--pb-cream);
	border: 1px solid var(--pb-border);
	border-radius: var(--pb-radius);
}

.pb-cal__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: 14px;
	font-family: var(--pb-head);
	font-size: 15.5px;
	font-weight: 600;
}

.pb-cal__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px; height: 34px;
	padding: 0;
	border: 1px solid var(--pb-border);
	border-radius: 50%;
	background: #fff;
	color: var(--pb-ink);
	font-size: 19px;
	line-height: 1;
	cursor: pointer;
	transition: border-color .18s ease, color .18s ease, transform .18s ease;
}
.pb-cal__nav:hover:not(:disabled) {
	border-color: var(--pb-orange);
	color: var(--pb-orange);
	transform: translateY(-1px);
}
.pb-cal__nav:disabled { opacity: .3; cursor: not-allowed; }

.pb-cal__weekdays,
.pb-cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }

.pb-cal__weekdays {
	margin-bottom: 6px;
	font-family: var(--pb-head);
	font-size: 10.5px;
	font-weight: 600;
	color: var(--pb-muted);
	text-align: center;
	text-transform: uppercase;
	letter-spacing: .06em;
}

.pb-day {
	position: relative;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 1px solid transparent;
	border-radius: 11px;
	background: #fff;
	color: var(--pb-ink);
	font-family: var(--pb-head);
	font-size: 13.5px;
	font-weight: 500;
	cursor: pointer;
	transition: background-color .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}
.pb-day:hover:not(:disabled) {
	border-color: var(--pb-orange);
	color: var(--pb-orange);
	transform: translateY(-1px);
}

/* Müsait gün: altında küçük nokta */
.pb-day--free::after {
	content: "";
	position: absolute;
	bottom: 5px; left: 50%;
	width: 4px; height: 4px;
	margin-left: -2px;
	border-radius: 50%;
	background: var(--pb-orange);
	opacity: .55;
	transition: background-color .16s ease, opacity .16s ease;
}

.pb-day:disabled {
	background: transparent;
	color: #cbc5bf;
	cursor: not-allowed;
}
.pb-day.is-empty { background: transparent; border: 0; cursor: default; }

.pb-day.is-selected {
	background: var(--pb-orange);
	border-color: var(--pb-orange);
	color: #fff;
	font-weight: 600;
	box-shadow: 0 6px 14px rgba(247, 132, 31, .3);
}
.pb-day.is-selected::after { background: #fff; opacity: .9; }

/* --- Saat slotları --- */
.pb-slots { min-height: 220px; }

.pb-slots__label {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 12px;
	font-family: var(--pb-head);
	font-size: 13.5px;
	font-weight: 600;
	color: var(--pb-ink);
}
.pb-slots__label::before {
	content: "";
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--pb-orange);
	flex: none;
}

.pb-slots__list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
	gap: 9px;
	max-height: 300px;
	overflow-y: auto;
	padding: 2px;
	scrollbar-width: thin;
}

.pb-slot {
	min-height: 44px;
	padding: 10px 6px;
	border: 1px solid var(--pb-border);
	border-radius: 11px;
	background: #fff;
	font-family: var(--pb-head);
	font-size: 14px;
	font-weight: 500;
	color: var(--pb-ink);
	cursor: pointer;
	transition: background-color .16s ease, border-color .16s ease, color .16s ease, transform .16s ease, box-shadow .16s ease;
}
.pb-slot:hover {
	border-color: var(--pb-orange);
	color: var(--pb-orange);
	background: var(--pb-cream-2);
	transform: translateY(-2px);
}
.pb-slot.is-selected {
	background: var(--pb-orange);
	border-color: var(--pb-orange);
	color: #fff;
	font-weight: 600;
	box-shadow: 0 8px 18px rgba(247, 132, 31, .28);
}

/* Slot iskeletleri (yükleniyor) */
.pb-slot-skeleton {
	min-height: 44px;
	border-radius: 11px;
	background: linear-gradient(100deg, #f4efea 30%, #fbf8f5 50%, #f4efea 70%);
	background-size: 220% 100%;
	animation: pb-shimmer 1.15s ease-in-out infinite;
}

/* Boş / hata hâli */
.pb-empty {
	grid-column: 1 / -1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 26px 18px;
	background: var(--pb-cream);
	border: 1px dashed #e6ded5;
	border-radius: var(--pb-radius);
	text-align: center;
}
.pb-empty__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px; height: 42px;
	border-radius: 50%;
	background: #fff;
	color: var(--pb-orange);
	font-size: 20px;
	line-height: 1;
}
.pb-empty__text {
	font-size: 13.5px;
	line-height: 1.6;
	color: var(--pb-muted);
	max-width: 280px;
}

/* -------------------------------------------------------------------------
   Form
   ---------------------------------------------------------------------- */
.pb-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pb-field { display: flex; flex-direction: column; gap: 7px; }
.pb-field--wide { grid-column: 1 / -1; }

.pb-field > span {
	font-family: var(--pb-head);
	font-size: 13px;
	font-weight: 600;
	color: var(--pb-ink);
}

.pb-field input,
.pb-field textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--pb-border);
	border-radius: 12px;
	background: var(--pb-cream);
	font-family: var(--pb-body);
	font-size: 14.5px;
	color: var(--pb-ink);
	transition: border-color .16s ease, background-color .16s ease, box-shadow .16s ease;
}
.pb-field textarea { resize: vertical; min-height: 84px; }

.pb-field input::placeholder,
.pb-field textarea::placeholder { color: #b3aca6; }

.pb-field input:hover,
.pb-field textarea:hover { border-color: #e6dbd0; }

.pb-field input:focus,
.pb-field textarea:focus {
	outline: none;
	background: #fff;
	border-color: var(--pb-orange);
	box-shadow: var(--pb-ring);
}

/* Doğrulama hâlleri */
.pb-field.has-error input,
.pb-field.has-error textarea {
	border-color: #dc2626;
	background: #fef5f5;
}
.pb-field.has-error input:focus,
.pb-field.has-error textarea:focus { box-shadow: 0 0 0 3px rgba(220, 38, 38, .14); }

.pb-err {
	display: none;
	align-items: center;
	gap: 5px;
	color: #dc2626;
	font-size: 12px;
	font-style: normal;
	line-height: 1.4;
}
.pb-field.has-error .pb-err { display: flex; }
.pb-err::before { content: "!"; display: inline-flex; align-items: center; justify-content: center;
	width: 14px; height: 14px; border-radius: 50%; background: #dc2626; color: #fff;
	font-size: 10px; font-weight: 700; flex: none; }

/* bot tuzağı — ekran dışında */
.pb-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* -------------------------------------------------------------------------
   Özet
   ---------------------------------------------------------------------- */
.pb-summary {
	border: 1px solid var(--pb-border);
	border-radius: var(--pb-radius);
	overflow: hidden;
	background: #fff;
}
.pb-summary__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 13px 18px;
	font-size: 14px;
}
.pb-summary__row + .pb-summary__row { border-top: 1px solid var(--pb-border); }
.pb-summary__row span { color: var(--pb-muted); }
.pb-summary__row strong {
	font-family: var(--pb-head);
	font-weight: 600;
	text-align: right;
	color: var(--pb-ink);
}
.pb-summary__row--total {
	background: var(--pb-cream-2);
	border-top: 1px solid #f3ddc6 !important;
}
.pb-summary__row--total span { color: var(--pb-ink); font-weight: 500; }
.pb-summary__row--total strong { font-size: 20px; color: var(--pb-orange); }

.pb-note-pay {
	display: flex;
	gap: 9px;
	margin: 16px 0 0;
	padding: 12px 15px;
	background: var(--pb-cream);
	border-radius: 12px;
	font-size: 13px;
	color: var(--pb-muted);
	line-height: 1.6;
}
.pb-note-pay::before { content: "🔒"; flex: none; font-size: 14px; line-height: 1.4; }
.pb-note-pay:empty { display: none; }

/* -------------------------------------------------------------------------
   Uyarı kutusu
   ---------------------------------------------------------------------- */
.pb-alert {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-top: 18px;
	padding: 13px 16px;
	border-radius: 12px;
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #991b1b;
	font-size: 13.5px;
	line-height: 1.55;
	animation: pb-in .25s ease both;
}
.pb-alert::before {
	content: "!";
	display: flex; align-items: center; justify-content: center;
	width: 18px; height: 18px;
	border-radius: 50%;
	background: #dc2626;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	flex: none;
	margin-top: 1px;
}

/* -------------------------------------------------------------------------
   Butonlar — anasayfadaki .btn diliyle aynı
   ---------------------------------------------------------------------- */
.pb-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 24px;
	padding-top: 18px;
	border-top: 1px solid var(--pb-border);
}
.pb-actions__spacer { flex: 1; }

.pb-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 46px;
	padding: 0 26px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-family: var(--pb-head);
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
	cursor: pointer;
	transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.pb-btn--primary {
	background: var(--pb-orange);
	color: #fff;
	box-shadow: 0 8px 18px rgba(247, 132, 31, .28);
}
/*
 * color, hover/focus/active hâllerinde de AÇIKÇA verilir.
 * Buton bir <a> olarak render edildiğinde temanın genel "a:hover { color }"
 * kuralı (özgüllük 0-1-1) tek sınıflı .pb-btn--primary'yi (0-1-0) eziyor ve
 * yazı arka planla aynı renge dönüp okunamaz hâle geliyordu.
 */
.pb-btn--primary:hover:not(:disabled),
.pb-btn--primary:focus,
.pb-btn--primary:active,
.pb-btn--primary:visited {
	color: #fff;
}

.pb-btn--primary:hover:not(:disabled) {
	background: var(--pb-orange-d);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(247, 132, 31, .34);
}
.pb-btn--primary:disabled { opacity: .42; cursor: not-allowed; box-shadow: none; }

.pb-btn--ghost {
	background: #fff;
	border-color: #e4e9de;
	color: var(--pb-ink);
	box-shadow: var(--pb-shadow-xs);
}
/* Aynı gerekçeyle ghost butonun yazı rengi de her hâlde sabitlenir. */
.pb-btn--ghost:hover,
.pb-btn--ghost:focus,
.pb-btn--ghost:active,
.pb-btn--ghost:visited { color: var(--pb-ink); }

.pb-btn--ghost:hover {
	border-color: var(--pb-orange);
	color: var(--pb-ink);
	transform: translateY(-2px);
}

.pb-spinner {
	width: 15px; height: 15px;
	border: 2px solid rgba(255, 255, 255, .45);
	border-top-color: #fff;
	border-radius: 50%;
	animation: pb-spin .7s linear infinite;
	flex: none;
}
@keyframes pb-spin { to { transform: rotate(360deg); } }

/* -------------------------------------------------------------------------
   İskelet yükleme (kart ızgaraları)
   ---------------------------------------------------------------------- */
.pb-skeleton {
	height: 168px;
	border-radius: 14px;
	background: linear-gradient(100deg, #f6f2ee 30%, #fbf8f5 50%, #f6f2ee 70%);
	background-size: 220% 100%;
	animation: pb-shimmer 1.15s ease-in-out infinite;
}
@keyframes pb-shimmer { to { background-position: -120% 0; } }

/* -------------------------------------------------------------------------
   Sonuç / başarı ekranı
   ---------------------------------------------------------------------- */
.pb-result {
	text-align: center;
	background:
		radial-gradient(120% 80% at 50% 0%, var(--pb-cream-2) 0%, #fff 62%);
}
.pb-result__icon {
	width: 68px; height: 68px;
	margin: 6px auto 16px;
	display: flex; align-items: center; justify-content: center;
	border-radius: 50%;
	animation: pb-pop .45s cubic-bezier(.2, 1.2, .4, 1) both;
}
.pb-result__icon svg { width: 32px; height: 32px; }
.pb-result.is-ok   .pb-result__icon { background: var(--pb-sage-sf); color: var(--pb-green); }
.pb-result.is-wait .pb-result__icon { background: var(--pb-orange-sf); color: var(--pb-orange); }

@keyframes pb-pop {
	from { opacity: 0; transform: scale(.7); }
	to   { opacity: 1; transform: none; }
}

.pb-result__title {
	margin: 0 0 8px;
	font-family: var(--pb-head);
	font-size: 23px;
	font-weight: 600;
	letter-spacing: -.01em;
}
.pb-result__text {
	margin: 0 auto 22px;
	max-width: 420px;
	color: var(--pb-muted);
	font-size: 14.5px;
	line-height: 1.65;
}
.pb-result .pb-summary { text-align: left; margin-bottom: 22px; }
.pb-result__actions { margin: 0; }

/* -------------------------------------------------------------------------
   Responsive
   ---------------------------------------------------------------------- */
@media (max-width: 860px) {
	.pb-grid--services,
	.pb-grid--staff { grid-template-columns: repeat(2, 1fr); }
	.pb-datetime { grid-template-columns: 1fr; gap: 20px; }
	.pb-slots { min-height: 0; }
	.pb-slots__list { max-height: none; }
}

@media (max-width: 600px) {
	.pb-panel { padding: 20px 15px 15px; border-radius: 14px; }
	.pb-pane__title { font-size: 17.5px; margin-bottom: 16px; }

	/* Adım göstergesi: yalnızca daireler */
	.pb-steps { gap: 2px; margin-bottom: 16px; }
	.pb-step__l { display: none; }
	.pb-step::before { top: 15px; height: 2px; }
	.pb-step__n { width: 32px; height: 32px; font-size: 12.5px; }
	.pb-step.is-done .pb-step__n::after { font-size: 14px; }

	/* Kartlar tam genişlik — ızgara alanlarıyla, isim uzunluğundan bağımsız */
	.pb-grid--services,
	.pb-grid--staff { grid-template-columns: 1fr; gap: 10px; }

	.pb-card-opt {
		display: grid;
		grid-template-columns: 52px minmax(0, 1fr) auto;
		grid-template-areas:
			'img name  price'
			'img meta  price';
		align-items: center;
		column-gap: 14px;
		row-gap: 4px;
		padding: 12px 14px;
		text-align: left;
		min-height: 76px;
	}

	.pb-card-opt__img,
	.pb-card-opt__ph { grid-area: img; width: 52px; height: 52px; }
	.pb-card-opt__ph { font-size: 19px; }
	.pb-card-opt__name  { grid-area: name; font-size: 14.5px; }
	.pb-card-opt__meta  { grid-area: meta; justify-self: start; }
	.pb-card-opt__price { grid-area: price; font-size: 15.5px; }

	/* Personel kartında fiyat yok — iki sütun yeter */
	.pb-grid--staff .pb-card-opt {
		grid-template-columns: 52px minmax(0, 1fr);
		grid-template-areas:
			'img name'
			'img meta';
	}

	/* Seçim tiki görsel köşesine — fiyatla çakışmasın */
	.pb-card-opt.is-selected::after {
		top: 10px;
		left: 46px;
		right: auto;
		width: 20px; height: 20px;
		font-size: 11px;
		box-shadow: 0 0 0 2px #fff;
	}

	/* Takvim: daha büyük hücreler */
	.pb-cal { padding: 13px 12px 11px; }
	.pb-cal__grid, .pb-cal__weekdays { gap: 4px; }
	.pb-day { border-radius: 10px; font-size: 14px; }

	/* Saatler: parmakla basılabilir */
	.pb-slots__list { grid-template-columns: repeat(3, 1fr); gap: 8px; }
	.pb-slot { min-height: 48px; font-size: 14.5px; }

	.pb-form { grid-template-columns: 1fr; gap: 13px; }

	.pb-summary__row { padding: 12px 14px; font-size: 13.5px; }
	.pb-summary__row--total strong { font-size: 18px; }

	/* İleri/geri: net ve tam genişlik */
	.pb-actions { gap: 8px; margin-top: 20px; }
	.pb-actions__spacer { display: none; }
	.pb-btn { flex: 1 1 0; padding: 0 14px; font-size: 14.5px; }
	.pb-btn--ghost { flex: 0 1 auto; padding: 0 18px; }

	.pb-result__title { font-size: 20px; }
	.pb-result__icon { width: 60px; height: 60px; }
}

@media (max-width: 380px) {
	.pb-slots__list { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
	.pb-pane, .pb-pane.is-active, .pb-skeleton, .pb-slot-skeleton, .pb-spinner,
	.pb-result__icon, .pb-alert { animation: none; }
	.pb-panel { transition: none; }
	.pb *, .pb *::before, .pb *::after { transition-duration: .01ms !important; }
}
