.bpn-tcc-bubble {
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #0f766e;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
	cursor: pointer;
	z-index: 2147483000;
	border: none;
	font-size: 24px;
	transition: transform 0.15s ease, background 0.2s ease;
}
.bpn-tcc-bubble:hover { transform: translateY(-2px); background: #115e59; }
.bpn-tcc-bubble:focus-visible { outline: 3px solid #99f6e4; outline-offset: 3px; }

.bpn-tcc-panel {
	position: fixed;
	right: 20px;
	bottom: 88px;
	width: 380px;
	max-width: calc(100vw - 40px);
	max-height: calc(100vh - 120px);
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
	z-index: 2147483001;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	color: #0f172a;
}
.bpn-tcc-panel[hidden] { display: none; }

.bpn-tcc-header {
	padding: 14px 16px;
	background: #0f766e;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.bpn-tcc-header h3 { margin: 0; font-size: 15px; font-weight: 600; }
.bpn-tcc-brand { display: flex; align-items: center; gap: 9px; min-width: 0; }
.bpn-tcc-brand-emoji { font-size: 20px; line-height: 1; flex: 0 0 auto; }
.bpn-tcc-brand-text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.bpn-tcc-brand-name { font-size: 15px; font-weight: 700; }
.bpn-tcc-brand-sub { font-size: 11px; opacity: .85; }
.bpn-tcc-header-actions { display: flex; gap: 4px; align-items: center; }
.bpn-tcc-close,
.bpn-tcc-reset {
	background: transparent;
	color: #fff;
	border: 0;
	cursor: pointer;
	line-height: 1;
	padding: 4px 8px;
	border-radius: 6px;
	transition: background 0.15s ease;
}
.bpn-tcc-close { font-size: 22px; }
.bpn-tcc-reset { font-size: 18px; }
.bpn-tcc-close:hover,
.bpn-tcc-reset:hover { background: rgba(255, 255, 255, 0.15); }

.bpn-tcc-body {
	flex: 1;
	overflow-y: auto;
	padding: 14px 16px;
	background: #f8fafc;
}

.bpn-tcc-form {
	padding: 12px 12px 6px;
	border-top: 1px solid #e2e8f0;
	background: #fff;
}
.bpn-tcc-input-wrap {
	display: flex;
	align-items: flex-end;
	gap: 6px;
	padding: 5px 5px 5px 14px;
	background: #f1f5f9;
	border: 1px solid #e2e8f0;
	border-radius: 18px;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.bpn-tcc-input-wrap:focus-within {
	background: #fff;
	border-color: #0f766e;
	box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}
.bpn-tcc-form textarea {
	flex: 1;
	resize: none;
	min-height: 24px;
	max-height: 120px;
	padding: 7px 0;
	border: 0;
	background: transparent;
	font: inherit;
	font-size: 14px;
	line-height: 1.4;
	color: inherit;
}
.bpn-tcc-form textarea:focus { outline: none; box-shadow: none; }
.bpn-tcc-form textarea::placeholder { color: #94a3b8; }
.bpn-tcc-send {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #0f766e;
	color: #fff;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	transition: background 0.15s ease, transform 0.1s ease;
}
.bpn-tcc-send:hover { background: #115e59; }
.bpn-tcc-send:active { transform: scale(0.92); }
.bpn-tcc-send:focus-visible { outline: 2px solid #0f766e; outline-offset: 2px; }
.bpn-tcc-send:disabled { background: #94a3b8; cursor: progress; }
.bpn-tcc-send svg { display: block; }

.bpn-tcc-disclaimer {
	padding: 2px 16px 12px;
	background: #fff;
	font-size: 10.5px;
	line-height: 1.4;
	color: #94a3b8;
	text-align: center;
}

.bpn-tcc-msg { margin-bottom: 12px; }
.bpn-tcc-msg.user .bpn-tcc-bubble-text {
	background: #0f766e;
	color: #fff;
	border-radius: 14px 14px 4px 14px;
	margin-left: 32px;
}
.bpn-tcc-msg.bot .bpn-tcc-bubble-text {
	background: #fff;
	border-radius: 14px 14px 14px 4px;
	margin-right: 32px;
	border: 1px solid #e2e8f0;
}
.bpn-tcc-bubble-text {
	padding: 10px 12px;
	font-size: 14px;
	line-height: 1.45;
	white-space: pre-wrap;
}

.bpn-tcc-summary { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.bpn-tcc-range   { color: #475569; font-size: 13px; margin-bottom: 10px; }

.bpn-tcc-country-grid { display: grid; gap: 6px; margin-bottom: 10px; }
.bpn-tcc-country-row {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 8px;
	font-size: 13px;
	padding: 6px 8px;
	background: #f1f5f9;
	border-radius: 6px;
}
.bpn-tcc-country-row strong { color: #0f172a; }

.bpn-tcc-categories { display: grid; gap: 4px; margin: 8px 0 10px; }
.bpn-tcc-category-row {
	display: grid;
	grid-template-columns: 1fr auto;
	font-size: 12px;
	color: #475569;
	padding: 2px 0;
	border-bottom: 1px dashed #e2e8f0;
}

.bpn-tcc-result-note {
	text-align: center;
	font-size: 11px;
	color: #94a3b8;
	margin: 8px 0 2px;
}

.bpn-tcc-flight {
	margin: 10px 0;
	padding: 10px 12px;
	background: #f0fdfa;
	border: 1px solid #ccfbf1;
	border-radius: 8px;
}
.bpn-tcc-flight-row { font-size: 13px; color: #0f172a; }
.bpn-tcc-flight-total {
	font-size: 15px;
	color: #0f766e;
	margin-top: 8px;
	padding-top: 8px;
	border-top: 1px solid #ccfbf1;
}
.bpn-tcc-flight-total strong { color: #0f766e; }
.bpn-tcc-flight-note { font-size: 11px; color: #64748b; margin-top: 2px; }
.bpn-tcc-flight-pax { font-size: 11.5px; color: #475569; margin-top: 2px; }
.bpn-tcc-flight-link {
	display: inline-block;
	margin-top: 8px;
	font-size: 13px;
	font-weight: 600;
	color: #0f766e;
	text-decoration: underline;
}
.bpn-tcc-flight-link:hover { color: #115e59; }
.bpn-tcc-flight-disclaimer {
	margin-top: 8px;
	font-size: 10.5px;
	line-height: 1.4;
	color: #94a3b8;
}

.bpn-tcc-content-answer { font-size: 14px; line-height: 1.5; color: #0f172a; }
.bpn-tcc-content-heading { font-size: 13px; font-weight: 600; color: #0f172a; margin-top: 6px; }
.bpn-tcc-content-excerpt { font-size: 13px; line-height: 1.5; color: #334155; margin-top: 2px; }
.bpn-tcc-content-excerpt a { color: #0f766e; text-decoration: underline; }
.bpn-tcc-content-excerpt a:hover { color: #115e59; }
.bpn-tcc-content-sources { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 8px; align-items: baseline; }
.bpn-tcc-content-sources-label { font-size: 11px; color: #64748b; }
.bpn-tcc-content-link { font-size: 13px; font-weight: 600; color: #0f766e; text-decoration: underline; }
.bpn-tcc-content-link:hover { color: #115e59; }
.bpn-tcc-content-disclaimer { margin-top: 8px; font-size: 10.5px; color: #94a3b8; }
.bpn-tcc-advisory-box { margin-bottom: 10px; padding: 9px 11px; border: 1px solid #e2e8f0; border-radius: 9px; background: #f8fafc; }
.bpn-tcc-advisory-head { display: flex; align-items: center; gap: 7px; font-size: 13px; }
.bpn-tcc-advisory-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; flex: 0 0 auto; }
.bpn-tcc-advisory-label { font-size: 12px; color: #334155; margin-top: 2px; }
.bpn-tcc-advisory-summary { font-size: 11.5px; line-height: 1.5; color: #475569; margin-top: 5px; }
.bpn-tcc-advisory-box .bpn-tcc-content-sources { margin-top: 7px; }
.bpn-tcc-help { white-space: pre-line; font-size: 13px; line-height: 1.55; color: #334155; }
.bpn-tcc-inspire-btn { margin-top: 9px; padding: 7px 13px; border: 1px solid #0f766e; background: #fff; color: #0f766e; border-radius: 999px; font-size: 13px; font-weight: 600; cursor: pointer; }
.bpn-tcc-inspire-btn:hover { background: #0f766e; color: #fff; }
.bpn-tcc-inspire-intro { font-size: 13px; line-height: 1.5; color: #334155; margin-bottom: 4px; }
.bpn-tcc-route-row { font-size: 13px; line-height: 1.55; margin-top: 3px; }
.bpn-tcc-route-link { color: #0f766e; text-decoration: underline; font-weight: 600; }
.bpn-tcc-route-link:hover { color: #115e59; }
.bpn-tcc-route-cont { color: #94a3b8; font-size: 12px; }
.bpn-tcc-region-label { font-size: 12px; font-weight: 600; color: #64748b; text-transform: uppercase; letter-spacing: .03em; }
.bpn-tcc-region-total { font-size: 20px; font-weight: 700; color: #0f172a; margin-top: 2px; }
.bpn-tcc-region-meta { font-size: 12px; color: #64748b; margin-top: 2px; }
.bpn-tcc-region-note { font-size: 12px; line-height: 1.5; color: #334155; margin-top: 8px; }
.bpn-tcc-season-rows { margin-top: 8px; display: flex; flex-direction: column; gap: 3px; }
.bpn-tcc-season-row { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; line-height: 1.5; padding: 3px 0; border-bottom: 1px solid #f1f5f9; }
.bpn-tcc-season-country { color: #334155; font-weight: 600; }
.bpn-tcc-season-best { color: #0f766e; font-weight: 600; white-space: nowrap; }

/* Aanbevelingen (recommend) */
.bpn-tcc-rec-intro { font-size: 13px; line-height: 1.5; color: #334155; margin-bottom: 6px; }
.bpn-tcc-rec-card { padding: 8px 0; border-bottom: 1px solid #f1f5f9; }
.bpn-tcc-rec-title { display: inline-block; color: #0f766e; font-weight: 700; font-size: 14px; text-decoration: none; }
a.bpn-tcc-rec-title { text-decoration: underline; }
a.bpn-tcc-rec-title:hover { color: #115e59; }
.bpn-tcc-rec-meta { font-size: 12px; color: #475569; margin-top: 2px; }
.bpn-tcc-rec-why { font-size: 12px; color: #0f766e; margin-top: 2px; }
.bpn-tcc-rec-note { font-size: 12px; line-height: 1.5; color: #64748b; margin-top: 8px; }

/* Vergelijken (compare) */
.bpn-tcc-cmp-title { font-size: 14px; font-weight: 700; color: #0f172a; margin-bottom: 6px; }
.bpn-tcc-cmp-table { display: flex; flex-direction: column; gap: 0; }
.bpn-tcc-cmp-row { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 8px; font-size: 13px; padding: 4px 0; border-bottom: 1px solid #f1f5f9; }
.bpn-tcc-cmp-head { font-weight: 700; color: #0f172a; border-bottom: 2px solid #e2e8f0; }
.bpn-tcc-cmp-dim { color: #64748b; }
.bpn-tcc-cmp-col { color: #334155; }
.bpn-tcc-cmp-win { color: #0f766e; font-weight: 700; }
.bpn-tcc-cmp-verdict { font-size: 13px; line-height: 1.5; color: #334155; margin-top: 8px; }

/* Adviseur-vragenlijst (advisor) */
.bpn-tcc-advisor-progress { font-size: 11px; font-weight: 600; color: #94a3b8; text-transform: uppercase; letter-spacing: .03em; }
.bpn-tcc-advisor-q { font-size: 14px; font-weight: 600; color: #0f172a; margin: 2px 0 6px; }

.bpn-tcc-warning {
	background: #fef3c7;
	border-left: 3px solid #d97706;
	padding: 8px 10px;
	margin-bottom: 8px;
	border-radius: 6px;
	font-size: 12px;
}
.bpn-tcc-warning.blocking { background: #fee2e2; border-left-color: #dc2626; }
.bpn-tcc-warning strong { display: block; margin-bottom: 2px; }

.bpn-tcc-bullets { font-size: 12px; color: #475569; padding-left: 18px; margin: 6px 0 0; }
.bpn-tcc-bullets li { margin: 2px 0; }

.bpn-tcc-chips { margin-top: 10px; }
.bpn-tcc-chips-label {
	font-size: 11px;
	color: #64748b;
	margin-bottom: 4px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-weight: 600;
}
.bpn-tcc-chips-row {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.bpn-tcc-chip {
	font: inherit;
	font-size: 13px;
	background: #f1f5f9;
	color: #0f172a;
	border: 1px solid #e2e8f0;
	border-radius: 999px;
	padding: 6px 12px;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}
.bpn-tcc-chip:hover {
	background: #e0f2f1;
	border-color: #0f766e;
}
.bpn-tcc-chip:active {
	transform: scale(0.97);
	background: #ccfbf1;
}
.bpn-tcc-chip:focus-visible {
	outline: 2px solid #0f766e;
	outline-offset: 2px;
}
.bpn-tcc-chip.selected {
	background: #0f766e;
	border-color: #0f766e;
	color: #fff;
}
.bpn-tcc-chip.selected:hover {
	background: #115e59;
	border-color: #115e59;
}

.bpn-tcc-chips-submit {
	margin-top: 12px;
	font: inherit;
	font-size: 13px;
	font-weight: 600;
	background: #0f766e;
	color: #fff;
	border: 0;
	border-radius: 999px;
	padding: 8px 18px;
	cursor: pointer;
	transition: background 0.15s ease, transform 0.1s ease;
}
.bpn-tcc-chips-submit:hover { background: #115e59; }
.bpn-tcc-chips-submit:active { transform: scale(0.97); }
.bpn-tcc-chips-submit:disabled { background: #94a3b8; cursor: not-allowed; }
.bpn-tcc-chips-submit:focus-visible { outline: 2px solid #0f766e; outline-offset: 2px; }

.bpn-tcc-thinking {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #475569;
}
.bpn-tcc-spinner {
	display: inline-block;
	width: 14px;
	height: 14px;
	border: 2px solid #cbd5e1;
	border-top-color: #0f766e;
	border-radius: 50%;
	animation: bpn-tcc-spin 0.7s linear infinite;
	flex-shrink: 0;
}
@keyframes bpn-tcc-spin {
	to { transform: rotate(360deg); }
}
.bpn-tcc-thinking-dots::after {
	content: '';
	display: inline-block;
	width: 1em;
	text-align: left;
	animation: bpn-tcc-dots 1.4s steps(4, end) infinite;
}
@keyframes bpn-tcc-dots {
	0%, 20%   { content: ''; }
	40%       { content: '.'; }
	60%       { content: '..'; }
	80%, 100% { content: '...'; }
}

.bpn-tcc-error {
	background: #fee2e2;
	border-radius: 6px;
	padding: 8px 10px;
	font-size: 13px;
	color: #991b1b;
}

@media (max-width: 480px) {
	.bpn-tcc-panel { right: 8px; left: 8px; width: auto; bottom: 76px; }
	.bpn-tcc-bubble { right: 12px; bottom: 12px; }
}

/* ----------- Inline (embedded via shortcode/block) ----------- */
.bpn-tcc-inline-root {
	display: block;
	width: 100%;
	max-width: 720px;
	margin: 1.5rem auto;
}
.bpn-tcc-panel--inline {
	position: static;
	right: auto;
	bottom: auto;
	width: 100%;
	max-width: 100%;
	max-height: none;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	border: 1px solid #e2e8f0;
}
.bpn-tcc-panel--inline .bpn-tcc-body {
	min-height: 240px;
	max-height: 480px;
}

/* ----------- CTA button shortcode ----------- */
.bpn-tcc-cta-button {
	display: inline-block;
	font: inherit;
	font-weight: 600;
	padding: 12px 22px;
	border-radius: 10px;
	border: 0;
	cursor: pointer;
	text-decoration: none;
	transition: transform 0.15s ease, background 0.2s ease;
}
.bpn-tcc-cta-button:hover { transform: translateY(-1px); }
.bpn-tcc-cta-button:focus-visible { outline: 3px solid #99f6e4; outline-offset: 3px; }

.bpn-tcc-cta-primary {
	background: #0f766e;
	color: #fff;
}
.bpn-tcc-cta-primary:hover { background: #115e59; }

.bpn-tcc-cta-secondary {
	background: #fff;
	color: #0f766e;
	border: 2px solid #0f766e;
}
.bpn-tcc-cta-secondary:hover { background: #f0fdfa; }

.bpn-tcc-cta-ghost {
	background: transparent;
	color: #0f766e;
	padding: 6px 0;
	text-decoration: underline;
}
.bpn-tcc-cta-ghost:hover { color: #115e59; }

/* Notice-bubbels (begroeting/out-of-scope/info): respecteer regelafbrekingen
   zodat de 👉-voorbeelden onder elkaar komen. */
.bpn-tcc-notice { white-space: pre-line; }

/* Live streaming-cursor (token-voor-token). */
.bpn-tcc-stream-cursor { display: inline-block; margin-left: 1px; opacity: 0.7; animation: bpn-tcc-blink 1s steps(1) infinite; }
@keyframes bpn-tcc-blink { 50% { opacity: 0; } }
