/* Firenight Core – Formulare & Suche im Theme-Look */

.fnc-form { max-width: 720px; display: flex; flex-direction: column; gap: 18px; }
.fnc-form--filter { margin-bottom: 26px; }

.fnc-feld { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.fnc-feld label, .fnc-label { font-weight: 700; font-size: 13.5px; color: var(--text, #f5f5f7); }

.fnc-form input[type="text"],
.fnc-form input[type="number"],
.fnc-form select,
.fnc-form textarea {
	background: var(--bg-soft, #121216);
	border: 1px solid var(--line, #26262e);
	border-radius: 12px;
	color: var(--text, #f5f5f7);
	padding: 11px 14px;
	font: inherit;
}
.fnc-form input:focus, .fnc-form select:focus, .fnc-form textarea:focus {
	outline: none; border-color: var(--accent, #e91e63);
}

.fnc-reihe { display: flex; gap: 14px; flex-wrap: wrap; }
.fnc-reihe--unten { align-items: center; }

/* Chip-Mehrfachauswahl (Checkbox versteckt, Chip als Optik) */
.fnc-chipwahl { display: flex; flex-wrap: wrap; gap: 8px; }
.fnc-chip { cursor: pointer; }
.fnc-chip input { position: absolute; opacity: 0; pointer-events: none; }
.fnc-chip span {
	display: inline-block;
	border: 1px solid var(--line, #26262e);
	background: var(--bg-soft, #121216);
	color: var(--text-dim, #9a9aa5);
	border-radius: 999px;
	padding: 7px 14px;
	font-size: 13px; font-weight: 600;
	transition: all .15s;
}
.fnc-chip input:checked + span {
	background: rgba(233, 30, 99, .14);
	border-color: var(--accent, #e91e63);
	color: var(--accent, #e91e63);
}
.fnc-chip input:focus-visible + span { outline: 2px solid var(--accent, #e91e63); outline-offset: 2px; }
.fnc-chipwahl--klein .fnc-chip span { font-size: 12px; padding: 5px 11px; }

.fnc-schalter { display: inline-flex; align-items: center; gap: 8px; color: var(--text-dim, #9a9aa5); font-weight: 600; font-size: 14px; cursor: pointer; }
.fnc-schalter input { accent-color: var(--accent, #e91e63); width: 18px; height: 18px; }

.fnc-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	border: 0; border-radius: 999px; padding: 12px 22px;
	font-weight: 700; font-size: 14px; cursor: pointer;
	background: linear-gradient(90deg, var(--accent, #e91e63), #f0447e); color: #fff;
}
.fnc-btn:hover { filter: brightness(1.1); }
.fnc-btn--ghost { background: var(--card, #16161b); border: 1px solid var(--line, #26262e); color: var(--text, #f5f5f7); }
.fnc-btn--block { width: 100%; }

.fnc-status { min-height: 1.2em; color: var(--accent, #e91e63); font-weight: 600; margin: 0; }
.fnc-hinweis { color: var(--text-dim, #9a9aa5); }

@media (max-width: 600px) {
	.fnc-reihe { flex-direction: column; }
}

/* CTA-Box (ausgeloggt) & Fehlerbox */
.fnc-cta-box {
	background: var(--card, #16161b);
	border: 1px solid var(--line, #26262e);
	border-radius: 16px;
	padding: 28px;
	max-width: 520px;
	margin-top: 10px;
}
.fnc-cta-box p { margin: 0 0 16px; color: var(--text-dim, #9a9aa5); }
.fnc-cta-box__actions { display: flex; gap: 10px; flex-wrap: wrap; }

.fnc-fehlerbox {
	background: rgba(233, 30, 99, .1);
	border: 1px solid var(--accent, #e91e63);
	border-radius: 12px;
	padding: 14px 18px;
	margin-bottom: 18px;
	max-width: 720px;
}
.fnc-fehlerbox p { margin: 4px 0; color: var(--accent, #e91e63); font-weight: 600; font-size: 14px; }

/* "Mehr Filter" aufklappbar */
.fnc-mehr summary {
	cursor: pointer;
	color: var(--text-dim, #9a9aa5);
	font-weight: 700;
	font-size: 13.5px;
	list-style: none;
}
.fnc-mehr summary::before { content: "▸ "; color: var(--accent, #e91e63); }
.fnc-mehr[open] summary::before { content: "▾ "; }

/* Karten als Links */
a.fn-card { color: inherit; text-decoration: none; display: block; }
