/*
 * jc-buchungen – Buchungs-Wizard (Frontend).
 * Restrained: getönte Neutrale + ein Akzent (Rosenholz, inline gesetzt).
 * Erbt Theme-Typografie (font-family: inherit), strukturelles CSS mit jc-Präfix.
 * Akzent-Tokens (--jc-accent/-strong, --jc-tint) kommen per Inline-Style.
 */

.jc-wizard {
	--jc-bg: #ffffff;
	--jc-surface: #faf8f8;
	--jc-ink: #2b2228;
	--jc-body: #4a4248;
	--jc-muted: #6c636a;
	--jc-line: #e7dee1;
	--jc-err: #b3261e;
	--jc-err-bg: #fbeceb;
	--jc-radius: 14px;
	--jc-radius-sm: 10px;
	--jc-pad: 18px;
	--jc-ease: cubic-bezier(0.22, 1, 0.36, 1);
	--jc-focus: 0 0 0 3px color-mix(in srgb, var(--jc-accent, #a85d6e) 30%, transparent);

	font-family: inherit;
	color: var(--jc-body);
	line-height: 1.5;
	max-width: 1600px;
	margin-inline: auto;
	-webkit-text-size-adjust: 100%;
}

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

/* Fokus-Ring nur auf wirklich bedienbaren Elementen – nicht auf
 * programmatisch fokussierten Überschriften/Panels (sonst „Kasten" um den Titel). */
.jc-wizard a:focus-visible,
.jc-wizard button:focus-visible,
.jc-wizard input:focus-visible,
.jc-wizard select:focus-visible,
.jc-wizard textarea:focus-visible,
.jc-wizard [tabindex="0"]:focus-visible {
	outline: none;
	box-shadow: var(--jc-focus);
	border-radius: 6px;
}
.jc-wizard .jc-panel__title:focus,
.jc-wizard .jc-intro:focus,
.jc-wizard .jc-panel:focus { outline: none; box-shadow: none; }

/* ── Stepper ── */
.jc-steps {
	display: flex;
	gap: 6px;
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	counter-reset: none;
}
.jc-step {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.2px;
	color: var(--jc-muted);
	text-align: center;
	position: relative;
}
.jc-step span {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--jc-surface);
	border: 1.5px solid var(--jc-line);
	color: var(--jc-muted);
	font-size: 13px;
	transition: background 0.2s var(--jc-ease), color 0.2s var(--jc-ease), border-color 0.2s var(--jc-ease);
}
.jc-step::before {
	content: "";
	position: absolute;
	top: 15px;
	right: calc(50% + 18px);
	width: calc(100% - 36px);
	height: 1.5px;
	background: var(--jc-line);
}
.jc-step:first-child::before { display: none; }
.jc-step.is-active span { background: var(--jc-accent); border-color: var(--jc-accent); color: #fff; }
.jc-step.is-active { color: var(--jc-ink); }
.jc-step.is-done span { background: var(--jc-tint); border-color: var(--jc-accent); color: var(--jc-accent-strong); }

/* ── Panels ──
 * Sichtbarkeit über eigene display-Regel (nicht nur das hidden-Attribut):
 * Divi/Themes setzen display auf section/div und schlagen sonst [hidden].
 * Daher mit Wrapper-Spezifität + !important. Nur das aktive Panel ist sichtbar. */
.jc-wizard .jc-panel { display: none !important; }
.jc-wizard .jc-panel.is-active { display: block !important; animation: jc-fade 0.28s var(--jc-ease); }
.jc-wizard [hidden] { display: none !important; }
.jc-panel:focus { outline: none; }
@keyframes jc-fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.jc-panel__title { font-size: 1.25rem; color: var(--jc-ink); margin: 0 0 16px; text-wrap: balance; }
.jc-intro { font-size: 1.02rem; color: var(--jc-body); margin: 0 0 20px; max-width: 60ch; }
.jc-empty { color: var(--jc-muted); padding: 18px 0; }
.jc-loading { color: var(--jc-muted); padding: 24px 0; text-align: center; }

/* ── Filter-Chips ── */
.jc-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 18px; }
.jc-chip {
	border: 1.5px solid var(--jc-line);
	background: var(--jc-bg);
	color: var(--jc-body);
	padding: 7px 16px;
	border-radius: 999px;
	font-size: 0.92rem;
	cursor: pointer;
	transition: background 0.18s var(--jc-ease), border-color 0.18s var(--jc-ease), color 0.18s var(--jc-ease);
}
.jc-chip:hover { border-color: var(--jc-accent); }
.jc-chip.is-active { background: var(--jc-accent); border-color: var(--jc-accent); color: #fff; }

/* ── Behandlungs-Karten ── */
/* Behandlungs-Auswahl: responsiv 1 → 4 Spalten, zentriert begrenzt (nutzt breite Screens aus). */
.jc-behandlungen { display: grid; grid-template-columns: 1fr; gap: 12px; max-width: 1500px; margin-inline: auto; }
.jc-chips { max-width: 1500px; margin-inline: auto; }
@media (min-width: 560px)  { .jc-behandlungen { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .jc-behandlungen { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1240px) { .jc-behandlungen { grid-template-columns: repeat(4, 1fr); } }

/* Jeder Schritt wird als eine zentrierte Spalte begrenzt – so wandern Überschrift,
   Hinweis, Inhalt und Buttons GEMEINSAM in die Mitte (keine „links klebende"
   Überschrift neben breiten Karten). Unter .jc-wizard gescopt, damit Theme-/Divi-
   Regeln die Breite nicht überschreiben. Nur die Behandlungs-Auswahl bleibt breit. */
.jc-wizard .jc-steps,
.jc-wizard .jc-nav { max-width: 760px; margin-inline: auto; }
.jc-wizard .jc-panel { max-width: 760px; margin-inline: auto; }
.jc-wizard .jc-panel[data-panel="1"] { max-width: 1500px; } /* Behandlungs-Auswahl: bis 4 Spalten */
.jc-wizard .jc-panel[data-panel="2"] { max-width: 960px; }  /* Kosmetikerinnen-Raster */
.jc-wizard .jc-panel[data-panel="z"] { max-width: 600px; }  /* Zusatzoptionen: kompakte Liste */
/* Storno-Seite: Inhalte liegen direkt in .jc-wizard (ohne Panels) → einzeln zentrieren. */
.jc-wizard .jc-summary,
.jc-wizard .jc-reschedule,
.jc-wizard .jc-storno-box,
.jc-wizard .jc-cal,
.jc-wizard .jc-zeiten,
.jc-wizard .jc-done { max-width: 600px; margin-inline: auto; }
.jc-beh {
	display: flex;
	flex-direction: column;
	gap: 6px;
	text-align: left;
	width: 100%;
	background: var(--jc-bg);
	border: 1.5px solid var(--jc-line);
	border-radius: var(--jc-radius);
	padding: var(--jc-pad);
	cursor: pointer;
	transition: border-color 0.18s var(--jc-ease), box-shadow 0.18s var(--jc-ease), transform 0.18s var(--jc-ease);
}
.jc-beh:hover { border-color: var(--jc-accent); box-shadow: 0 6px 22px -14px rgba(0,0,0,0.35); }
.jc-beh.is-sel { border-color: var(--jc-accent); background: var(--jc-tint); }
.jc-beh__head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.jc-beh__name { font-weight: 600; color: var(--jc-ink); font-size: 1.05rem; }
.jc-beh__preis { font-weight: 700; color: var(--jc-accent-strong); white-space: nowrap; }
.jc-beh__meta { font-size: 0.86rem; color: var(--jc-muted); }
/* Beschreibung: zunächst auf 3 Zeilen gekürzt, beim Hover/Auswahl smooth ausklappen. */
.jc-beh__desc {
	font-size: 0.9rem;
	color: var(--jc-body);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	max-height: 4.2em;
	transition: max-height 0.34s var(--jc-ease);
}
.jc-beh:hover .jc-beh__desc,
.jc-beh:focus-visible .jc-beh__desc,
.jc-beh.is-sel .jc-beh__desc {
	-webkit-line-clamp: 40;
	max-height: 60em;
}
@media (hover: none) {
	.jc-beh__desc { -webkit-line-clamp: 40; max-height: 60em; }
}

/* ── Personen ── */
.jc-personen {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	gap: 16px;
	align-items: start; /* Karten nur so hoch wie ihr Inhalt – kein Strecken */
}
.jc-person {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	background: var(--jc-bg);
	border: 1.5px solid var(--jc-line);
	border-radius: var(--jc-radius);
	padding: 22px 16px 20px;
	cursor: pointer;
	text-align: center;
	transition: transform 0.2s var(--jc-ease), border-color 0.18s var(--jc-ease), box-shadow 0.18s var(--jc-ease), background 0.18s var(--jc-ease);
}
.jc-person:hover { border-color: var(--jc-accent); box-shadow: 0 10px 30px -16px rgba(0,0,0,0.45); }
.jc-person.is-sel { border-color: var(--jc-accent); background: var(--jc-tint); }
.jc-ava-wrap { position: relative; }
.jc-ava {
	display: grid;
	place-items: center;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background-size: cover;
	background-position: center;
	background-color: var(--jc-tint);
	color: var(--jc-accent-strong);
	font-size: 42px;
	font-weight: 600;
}
.jc-ava--any { background: var(--jc-tint); color: var(--jc-accent); font-size: 40px; }
.jc-rabatt-badge {
	position: absolute;
	right: 2px;
	bottom: 2px;
	background: var(--jc-accent);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	padding: 6px 10px;
	border-radius: 999px;
	border: 3px solid var(--jc-bg);
}
.jc-person__name { font-weight: 600; font-size: 1.05rem; color: var(--jc-ink); }

/* Rabatt-Hinweis standardmäßig eingeklappt – Karten bleiben gleich hoch. */
.jc-person__note {
	font-size: 0.85rem;
	color: var(--jc-muted);
	line-height: 1.45;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	margin-top: 0;
	transition: max-height 0.3s var(--jc-ease), opacity 0.22s var(--jc-ease), margin-top 0.3s var(--jc-ease);
}

/* Aufklappen bei Auswahl und Tastatur-Fokus (geräteunabhängig). */
.jc-person.is-sel .jc-person__note,
.jc-person:focus-visible .jc-person__note {
	max-height: 240px;
	opacity: 1;
	margin-top: 4px;
}

/* Geräte mit Hover (Desktop): Karte vergrößern + Hinweis beim Überfahren zeigen. */
@media (hover: hover) {
	.jc-person:hover { transform: scale(1.04); z-index: 2; position: relative; }
	.jc-person:hover .jc-person__note { max-height: 240px; opacity: 1; margin-top: 4px; }
}

/* Touch-Geräte ohne Hover: Hinweis dauerhaft sichtbar. */
@media (hover: none) {
	.jc-person__note { max-height: 240px; opacity: 1; margin-top: 4px; }
}

/* ── Kalender ── */
.jc-cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.jc-cal__title { font-weight: 600; color: var(--jc-ink); font-size: 1.05rem; }
.jc-cal__nav {
	width: 40px; height: 40px;
	border: 1.5px solid var(--jc-line);
	background: var(--jc-bg);
	border-radius: 50%;
	font-size: 20px; line-height: 1;
	color: var(--jc-accent-strong);
	cursor: pointer;
	transition: border-color 0.18s var(--jc-ease), background 0.18s var(--jc-ease);
}
.jc-cal__nav:hover:not([disabled]) { border-color: var(--jc-accent); background: var(--jc-tint); }
.jc-cal__nav[disabled] { opacity: 0.35; cursor: default; }
.jc-cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.jc-cal__wd { text-align: center; font-size: 0.78rem; font-weight: 600; color: var(--jc-muted); padding-bottom: 4px; }
.jc-cal__cell {
	aspect-ratio: 1 / 1;
	display: grid;
	place-items: center;
	border: 0;
	border-radius: var(--jc-radius-sm);
	font-size: 0.95rem;
	background: transparent;
}
.jc-cal__cell--blank { background: transparent; }
.jc-cal__cell--off { color: #bcb2b6; }
.jc-cal__cell--free {
	background: var(--jc-tint);
	color: var(--jc-accent-strong);
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s var(--jc-ease), color 0.15s var(--jc-ease), transform 0.15s var(--jc-ease);
}
.jc-cal__cell--free:hover { background: var(--jc-accent); color: #fff; transform: translateY(-1px); }

/* ── Zusatzoptionen ── */
.jc-zusatz-hint { color: var(--jc-muted); margin: 0 0 16px; }
.jc-zusatz-list { display: flex; flex-direction: column; gap: 10px; }
.jc-zusatz-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	border: 1.5px solid var(--jc-line);
	border-radius: var(--jc-radius);
	padding: 14px 16px;
	cursor: pointer;
	transition: border-color 0.18s var(--jc-ease), background 0.18s var(--jc-ease);
}
.jc-zusatz-item:hover { border-color: var(--jc-accent); }
.jc-zusatz-item:has(input:checked) { border-color: var(--jc-accent); background: var(--jc-tint); }
.jc-zusatz-item input { margin-top: 3px; width: 18px; height: 18px; flex: 0 0 auto; accent-color: var(--jc-accent); }
.jc-zusatz-item__body { flex: 1 1 auto; display: flex; flex-direction: column; gap: 2px; }
.jc-zusatz-item__name { font-weight: 600; color: var(--jc-ink); }
.jc-zusatz-item__desc { font-size: 0.9rem; color: var(--jc-muted); }
.jc-zusatz-item__meta { font-weight: 600; color: var(--jc-accent-strong); white-space: nowrap; }
.jc-zusatz-req { margin: 12px 0 0; font-size: 0.9rem; color: var(--jc-accent-strong); }

/* ── Uhrzeiten ── */
.jc-zeiten__tag { font-weight: 600; color: var(--jc-ink); margin: 0 0 14px; }
.jc-zeiten__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: 8px; }
.jc-zeit {
	min-height: 48px;
	border: 1.5px solid var(--jc-line);
	background: var(--jc-bg);
	border-radius: var(--jc-radius-sm);
	color: var(--jc-ink);
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: border-color 0.15s var(--jc-ease), background 0.15s var(--jc-ease), color 0.15s var(--jc-ease);
}
.jc-zeit:hover { border-color: var(--jc-accent); background: var(--jc-tint); }

/* ── Termin verschieben (Storno-Seite) ── */
.jc-reschedule { margin-top: 10px; }
.jc-reschedule .jc-zeiten { margin-top: 14px; }

/* ── Zusammenfassung + Formular ── */
.jc-summary { background: var(--jc-surface); border: 1px solid var(--jc-line); border-radius: var(--jc-radius); padding: 18px 20px; margin-bottom: 22px; }
.jc-summary__list { margin: 0; }
.jc-summary__row { display: flex; justify-content: space-between; gap: 16px; padding: 7px 0; border-bottom: 1px solid var(--jc-line); }
.jc-summary__row:last-child { border-bottom: 0; }
.jc-summary__row dt { color: var(--jc-muted); margin: 0; }
.jc-summary__row dd { margin: 0; color: var(--jc-ink); text-align: right; }
.jc-summary__rab { display: inline-block; font-size: 0.82rem; color: var(--jc-accent-strong); background: var(--jc-tint); padding: 2px 8px; border-radius: 999px; }

.jc-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px; }
.jc-field { display: flex; flex-direction: column; gap: 5px; }
.jc-field--full { grid-column: 1 / -1; }
.jc-field label { font-size: 0.88rem; font-weight: 600; color: var(--jc-ink); }
.jc-field input,
.jc-field textarea {
	width: 100%;
	min-height: 46px;
	padding: 11px 13px;
	border: 1.5px solid var(--jc-line);
	border-radius: var(--jc-radius-sm);
	background: var(--jc-bg);
	color: var(--jc-ink);
	font-family: inherit;
	font-size: 1rem;
}
.jc-field textarea { min-height: auto; }
.jc-field input:focus,
.jc-field textarea:focus { outline: none; border-color: var(--jc-accent); box-shadow: var(--jc-focus); }
.jc-field.has-error input,
.jc-field.has-error textarea { border-color: var(--jc-err); }
.jc-field input::placeholder { color: #8a8086; }

@media (max-width: 520px) { .jc-form { grid-template-columns: 1fr; } }

.jc-check {
	grid-column: 1 / -1;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.92rem;
	color: var(--jc-body);
	line-height: 1.45;
	cursor: pointer;
}
.jc-check input { margin-top: 3px; width: 18px; height: 18px; flex: 0 0 auto; accent-color: var(--jc-accent); }
.jc-check a { color: var(--jc-accent-strong); }

.jc-error { grid-column: 1 / -1; color: var(--jc-err); font-size: 0.85rem; min-height: 0; }
.jc-error:empty { display: none; }
.jc-error--global { background: var(--jc-err-bg); padding: 10px 14px; border-radius: var(--jc-radius-sm); margin-top: 6px; }
.jc-error--global:empty { display: none; }

/* Honeypot */
.jc-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Storno-Warnbox (< Frist) */
.jc-warnbox { display: flex; gap: 12px; align-items: flex-start; background: var(--jc-err-bg); border: 1.5px solid #e7a9a4; color: #842029; border-radius: var(--jc-radius); padding: 14px 16px; margin: 0 0 18px; font-size: 0.95rem; line-height: 1.5; }
.jc-warnbox__icon { flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%; background: var(--jc-err); color: #fff; display: grid; place-items: center; font-weight: 700; }

/* ── Bestätigung ── */
.jc-done { text-align: center; padding: 30px 16px; }
.jc-done__mark {
	width: 64px; height: 64px;
	margin: 0 auto 18px;
	display: grid; place-items: center;
	border-radius: 50%;
	background: var(--jc-tint);
	color: var(--jc-accent-strong);
	font-size: 30px;
}
.jc-done__msg { font-size: 1.1rem; color: var(--jc-ink); max-width: 42ch; margin: 0 auto; }

/* ── Navigation ── */
.jc-nav { display: flex; gap: 12px; margin-top: 26px; }
.jc-btn {
	min-height: 50px;
	padding: 0 26px;
	border-radius: var(--jc-radius-sm);
	font-size: 1rem;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	border: 1.5px solid transparent;
	transition: background 0.18s var(--jc-ease), border-color 0.18s var(--jc-ease), opacity 0.18s var(--jc-ease);
}
.jc-btn--primary { background: var(--jc-accent-strong); color: #fff; margin-left: auto; }
.jc-btn--primary:hover { background: var(--jc-accent); }
.jc-btn--primary[disabled] { opacity: 0.5; cursor: default; }
.jc-btn--primary.is-busy { opacity: 0.7; cursor: progress; }
.jc-btn--ghost { background: var(--jc-bg); border-color: var(--jc-line); color: var(--jc-body); }
.jc-btn--ghost:hover { border-color: var(--jc-accent); }

/* ── Mobile-Feinschliff ── */
@media (max-width: 440px) {
	.jc-step { font-size: 0; }
	.jc-step span { font-size: 13px; }
	.jc-step.is-active { font-size: 0; }
}

/* ─────────────────────────────────────────────────────────────
 *  Anzeige-Shortcodes [jc_team] / [jc_behandlungen]
 * ───────────────────────────────────────────────────────────── */
.jc-display {
	--jc-bg: #ffffff;
	--jc-surface: #faf8f8;
	--jc-ink: #2b2228;
	--jc-body: #4a4248;
	--jc-muted: #6c636a;
	--jc-line: #e7dee1;
	--jc-radius: 14px;
	font-family: inherit;
	color: var(--jc-body);
	line-height: 1.5;
}

/* Team */
.jc-team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 22px; max-width: 1300px; margin-inline: auto; }
.jc-team-card { text-align: center; }
.jc-team-card__ava-wrap { position: relative; display: inline-block; margin-bottom: 12px; }
.jc-team-card__ava {
	display: grid; place-items: center;
	width: 140px; height: 140px;
	border-radius: 50%;
	background-size: cover; background-position: center;
	background-color: var(--jc-tint, #f6eef0);
	color: var(--jc-accent-strong, #834a59);
	font-size: 44px; font-weight: 600;
	margin: 0 auto;
}
.jc-team-card__name { font-size: 1.2rem; color: var(--jc-ink); margin: 0 0 6px; }
.jc-team-card__rab { font-size: 0.88rem; color: var(--jc-accent-strong, #834a59); margin: 0 0 8px; }
.jc-team-card__info { font-size: 0.95rem; color: var(--jc-body); text-align: left; }
.jc-team-card__info p { margin: 0 0 0.6em; }

/* Behandlungs-Liste */
.jc-liste { max-width: 920px; margin-inline: auto; }
.jc-liste__kat { font-size: 1.3rem; color: var(--jc-ink); margin: 28px 0 10px; padding-bottom: 8px; border-bottom: 2px solid var(--jc-tint, #f6eef0); }
.jc-liste__kat:first-child { margin-top: 0; }
.jc-liste__item { padding: 16px 0; border-bottom: 1px solid var(--jc-line); }
.jc-liste__item:hover { cursor: default; }
.jc-liste__head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.jc-liste__name { font-weight: 600; font-size: 1.08rem; color: var(--jc-ink); }
.jc-liste__meta { font-size: 0.9rem; color: var(--jc-muted); white-space: nowrap; }
.jc-liste__preis { color: var(--jc-accent-strong, #834a59); font-weight: 700; }
/* Beschreibung: gekürzt mit weichem Verlauf, beim Hover smooth voll ausklappen. */
.jc-liste__desc {
	font-size: 0.95rem;
	color: var(--jc-body);
	margin-top: 4px;
	overflow: hidden;
	max-height: 4.6em;
	-webkit-mask-image: linear-gradient(to bottom, #000 65%, transparent 100%);
	mask-image: linear-gradient(to bottom, #000 65%, transparent 100%);
	transition: max-height 0.36s var(--jc-ease);
}
.jc-liste__item:hover .jc-liste__desc,
.jc-liste__item:focus-within .jc-liste__desc {
	max-height: 80em;
	-webkit-mask-image: none;
	mask-image: none;
}
@media (hover: none) {
	.jc-liste__desc { max-height: 80em; -webkit-mask-image: none; mask-image: none; }
}
.jc-liste__desc p { margin: 0 0 0.5em; }
.jc-liste__desc p:last-child { margin-bottom: 0; }
.jc-liste__btn {
	display: inline-block;
	margin-top: 10px;
	background: var(--jc-accent-strong, #834a59);
	color: #fff;
	padding: 8px 18px;
	border-radius: 10px;
	font-size: 0.92rem;
	font-weight: 600;
	text-decoration: none;
}
.jc-liste__btn:hover { background: var(--jc-accent, #a85d6e); color: #fff; }

/* ─────────────────────────────────────────────────────────────
 *  Personal-Portal ([jc_mein_profil] / [jc_meine_termine])
 * ───────────────────────────────────────────────────────────── */
.jc-profil__h { font-size: 1.1rem; color: var(--jc-ink); margin: 22px 0 10px; }
.jc-profil .description { color: var(--jc-muted); font-size: 0.9rem; margin: 0 0 10px; }
.jc-profil .jc-az-grid { width: 100%; border-collapse: collapse; }
.jc-profil .jc-az-grid th,
.jc-profil .jc-az-grid td { padding: 8px 6px; vertical-align: top; border-bottom: 1px solid var(--jc-line); text-align: left; }
.jc-profil .jc-az-day__label { font-weight: 600; color: var(--jc-ink); white-space: nowrap; }
.jc-profil .jc-az-rows { display: flex; flex-direction: column; gap: 6px; margin-bottom: 6px; }
.jc-profil .jc-az-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.jc-profil .jc-az-row input[type="time"],
.jc-profil .jc-sperre-row input { min-height: 44px; border: 1.5px solid var(--jc-line); border-radius: 8px; padding: 6px 8px; font-family: inherit; font-size: 1rem; }
.jc-profil .jc-az-add,
.jc-profil .jc-sperre-add { background: none; border: 0; color: var(--jc-accent-strong); font-weight: 600; cursor: pointer; padding: 4px 0; }
.jc-profil .jc-az-remove,
.jc-profil .jc-sperre-remove { background: none; border: 0; color: #b3261e; font-size: 20px; line-height: 1; cursor: pointer; }
.jc-profil .jc-sperren-rows { display: flex; flex-direction: column; gap: 12px; margin-bottom: 10px; }
.jc-profil .jc-sperre-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; padding: 12px; background: var(--jc-surface); border: 1px solid var(--jc-line); border-radius: var(--jc-radius); }
.jc-profil .jc-sperre-field { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.jc-profil .jc-sperre-field > span { font-weight: 600; }
.jc-profil .jc-sperre-grund { flex: 1 1 160px; }
.jc-profil .jc-sperre-ganztags { display: flex; align-items: center; gap: 4px; white-space: nowrap; }
.jc-profil-msg { margin-top: 10px; font-weight: 600; }
.jc-profil-msg.is-ok { color: #2e7d52; }
.jc-profil-msg.is-err { color: var(--jc-err); }

.jc-mt-list { list-style: none; margin: 0; padding: 0; }
.jc-mt-item { display: flex; flex-direction: column; gap: 2px; padding: 12px 0; border-bottom: 1px solid var(--jc-line); }
.jc-mt-when { font-weight: 700; color: var(--jc-ink); }
.jc-mt-beh { color: var(--jc-body); }
.jc-mt-kunde { font-size: 0.9rem; color: var(--jc-muted); }

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
	.jc-panel { animation: none; }
	.jc-wizard *,
	.jc-wizard *::before,
	.jc-wizard *::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
	}
	.jc-cal__cell--free:hover { transform: none; }
}
