/* Lawn Lovin Chatbot widget */
#llc-root, #llc-root * { box-sizing: border-box; }

.llc-launcher {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 99999;
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--llc-color, #2e7d32);
	color: #fff;
	border: none;
	border-radius: 999px;
	padding: 14px 20px;
	font: 600 15px/1 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	cursor: pointer;
	box-shadow: 0 6px 24px rgba(0,0,0,.22);
	transition: transform .15s ease, box-shadow .15s ease;
}
.llc-launcher:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,.28); }
.llc-launcher svg { width: 22px; height: 22px; flex: none; }

.llc-panel {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 100000;
	width: 380px;
	max-width: calc(100vw - 32px);
	height: 560px;
	max-height: calc(100vh - 40px);
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 12px 48px rgba(0,0,0,.28);
	display: none;
	flex-direction: column;
	overflow: hidden;
	font: 15px/1.45 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.llc-panel.llc-open { display: flex; }

.llc-header {
	background: var(--llc-color, #2e7d32);
	color: #fff;
	padding: 16px 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.llc-header h3 { margin: 0; font-size: 16px; font-weight: 700; }
.llc-header .llc-sub { font-size: 12px; opacity: .85; margin-top: 2px; }
.llc-close { background: transparent; border: none; color: #fff; font-size: 22px; line-height: 1; cursor: pointer; padding: 4px; opacity: .9; }
.llc-close:hover { opacity: 1; }

.llc-messages {
	flex: 1;
	overflow-y: auto;
	padding: 16px;
	background: #f6f7f8;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.llc-msg {
	max-width: 84%;
	padding: 10px 13px;
	border-radius: 14px;
	white-space: pre-wrap;
	word-wrap: break-word;
}
.llc-msg.bot { align-self: flex-start; background: #fff; color: #1a1a1a; border: 1px solid #e6e6e6; border-bottom-left-radius: 4px; }
.llc-msg.user { align-self: flex-end; background: var(--llc-color, #2e7d32); color: #fff; border-bottom-right-radius: 4px; }

.llc-typing { align-self: flex-start; background: #fff; border: 1px solid #e6e6e6; border-radius: 14px; padding: 12px 14px; display: inline-flex; gap: 4px; }
.llc-typing span { width: 7px; height: 7px; background: #9aa0a6; border-radius: 50%; animation: llc-bounce 1.2s infinite ease-in-out; }
.llc-typing span:nth-child(2) { animation-delay: .15s; }
.llc-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes llc-bounce { 0%, 60%, 100% { transform: translateY(0); opacity:.5; } 30% { transform: translateY(-5px); opacity:1; } }

.llc-input {
	display: flex;
	gap: 8px;
	padding: 12px;
	border-top: 1px solid #ececec;
	background: #fff;
}
.llc-input textarea {
	flex: 1;
	resize: none;
	border: 1px solid #d6d6d6;
	border-radius: 10px;
	padding: 10px 12px;
	font: inherit;
	max-height: 120px;
	outline: none;
}
.llc-input textarea:focus { border-color: var(--llc-color, #2e7d32); }
.llc-send {
	background: var(--llc-color, #2e7d32);
	color: #fff;
	border: none;
	border-radius: 10px;
	padding: 0 16px;
	cursor: pointer;
	font-weight: 600;
}
.llc-send:disabled { opacity: .5; cursor: default; }

.llc-foot { text-align: center; font-size: 11px; color: #9aa0a6; padding: 0 0 8px; background: #fff; }

/* Honeypot — visually hidden, off-screen, not display:none (some bots skip those) */
.llc-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

@media (max-width: 480px) {
	.llc-panel { width: 100vw; height: 100vh; max-height: 100vh; bottom: 0; right: 0; border-radius: 0; }
	.llc-launcher { bottom: 16px; right: 16px; }
}
