#whisker-concierge-launcher {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #364647;
	color: #fff;
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(0,0,0,0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999999;
}

#whisker-concierge-panel {
	position: fixed;
	bottom: 100px;
	right: 24px;
	width: 380px;
	max-width: calc(100vw - 32px);
	height: 520px;
	max-height: calc(100vh - 140px);
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0,0,0,0.25);
	display: none;
	flex-direction: column;
	overflow: hidden;
	z-index: 999999;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

#whisker-concierge-panel.open { display: flex; }

#whisker-concierge-header {
	background: #364647;
	color: #fff;
	padding: 14px 18px;
	font-size: 18px;
	font-weight: 600;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#whisker-concierge-close {
	background: none;
	border: none;
	color: #fff;
	font-size: 22px;
	cursor: pointer;
	line-height: 1;
}

#whisker-concierge-messages {
	flex: 1;
	overflow-y: auto;
	padding: 14px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	background: #f7f6f3;
}

.whisker-msg {
	max-width: 88%;
	padding: 10px 14px;
	border-radius: 12px;
	font-size: 16px;
	line-height: 1.5;
	white-space: pre-wrap;
}

.whisker-msg.user {
	align-self: flex-end;
	background: #364647;
	color: #fff;
	border-bottom-right-radius: 2px;
}

.whisker-msg.assistant {
	align-self: flex-start;
	background: #fff;
	color: #222;
	border: 1px solid #e4e2dc;
	border-bottom-left-radius: 2px;
}

.whisker-msg.assistant a {
	color: #364647;
	text-decoration: underline;
	word-break: break-all;
}

.whisker-msg.error {
	align-self: center;
	background: #fce8e8;
	color: #7a1f1f;
	font-size: 15px;
}

.whisker-typing {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #555;
}

.whisker-typing-dots {
	display: inline-flex;
	gap: 3px;
}

.whisker-typing-dots span {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #888;
	animation: whisker-pulse 1.2s infinite ease-in-out;
}

.whisker-typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.whisker-typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes whisker-pulse {
	0%, 80%, 100% { opacity: 0.25; transform: scale(0.8); }
	40% { opacity: 1; transform: scale(1); }
}

#whisker-concierge-form {
	display: flex;
	align-items: flex-end;
	border-top: 1px solid #e4e2dc;
	padding: 10px;
	gap: 8px;
}

#whisker-concierge-input {
	flex: 1;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 12px 14px;
	font-size: 16px;
	line-height: 1.4;
	min-height: 44px;
	resize: none;
	font-family: inherit;
}

#whisker-concierge-send {
	background: #364647;
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 12px 18px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
}

#whisker-concierge-send:disabled {
	opacity: 0.5;
	cursor: default;
}
