:root {
	--letsbidd-chatbot-bg: #ffffff;
	--letsbidd-chatbot-surface: rgba(255, 255, 255, 0.86);
	--letsbidd-chatbot-border: rgba(15, 23, 42, 0.10);
	--letsbidd-chatbot-shadow: 0 24px 70px rgba(15, 23, 42, 0.24);
	--letsbidd-chatbot-accent: #3aafa9;
	--letsbidd-chatbot-accent-strong: #2b7a78;
	--letsbidd-chatbot-accent-deep: #17252a;
	--letsbidd-chatbot-text: #0f172a;
	--letsbidd-chatbot-muted: #64748b;
	--letsbidd-chatbot-user: linear-gradient(135deg, #2b7a78 0%, #3aafa9 100%);
	--letsbidd-chatbot-radius: 24px;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

body.letsbidd-chatbot-lock {
	overflow: hidden;
	position: relative;
}

.letsbidd-chatbot,
.letsbidd-chatbot * {
	box-sizing: border-box;
}

.letsbidd-chatbot {
	position: fixed;
	inset: auto max(24px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom)) auto;
	z-index: 9999;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--letsbidd-chatbot-text);
}

.letsbidd-chatbot__overlay {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, 0.30);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 180ms ease;
}

.letsbidd-chatbot[data-state="open"] .letsbidd-chatbot__overlay {
	opacity: 1;
	pointer-events: auto;
}

.letsbidd-chatbot__launcher {
	position: fixed;
	right: 24px;
	bottom: 24px;
	width: 60px;
	height: 60px;
	border: none;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: linear-gradient(135deg, var(--letsbidd-chatbot-accent-strong) 0%, var(--letsbidd-chatbot-accent) 100%);
	box-shadow: 0 16px 34px rgba(43, 122, 120, 0.36), 0 8px 16px rgba(15, 23, 42, 0.18);
	cursor: pointer;
	transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.letsbidd-chatbot__launcher:hover,
.letsbidd-chatbot__launcher:focus-visible {
	transform: translateY(-2px) scale(1.03);
	box-shadow: 0 20px 40px rgba(43, 122, 120, 0.42), 0 10px 20px rgba(15, 23, 42, 0.20);
	outline: none;
}

.letsbidd-chatbot__launcher:focus-visible {
	box-shadow: 0 0 0 4px rgba(58, 175, 169, 0.24), 0 20px 40px rgba(43, 122, 120, 0.42);
}

.letsbidd-chatbot__launcher-icon {
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.letsbidd-chatbot__launcher-icon svg {
	display: block;
	width: 28px;
	height: 28px;
}

.letsbidd-chatbot__panel {
	position: fixed;
	right: max(24px, env(safe-area-inset-right));
	bottom: calc(max(24px, env(safe-area-inset-bottom)) + 72px);
	width: min(400px, calc(100vw - 32px));
	height: min(640px, calc(100vh - 128px));
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid var(--letsbidd-chatbot-border);
	border-radius: var(--letsbidd-chatbot-radius);
	box-shadow: var(--letsbidd-chatbot-shadow);
	overflow: hidden;
	overflow-anchor: none;
	display: flex;
	flex-direction: column;
	opacity: 0;
	transform: translateY(16px) scale(0.98);
	transform-origin: bottom right;
	pointer-events: none;
	transition: opacity 180ms ease, transform 180ms ease;
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

.letsbidd-chatbot[data-state="open"] .letsbidd-chatbot__panel {
	opacity: 1;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}

.letsbidd-chatbot__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 18px 16px;
	color: #fff;
	background: linear-gradient(135deg, var(--letsbidd-chatbot-accent-deep) 0%, #234f58 45%, var(--letsbidd-chatbot-accent-strong) 100%);
}

.letsbidd-chatbot__header-copy {
	min-width: 0;
}

.letsbidd-chatbot__eyebrow {
	margin: 0 0 4px;
	font-size: 11px;
	line-height: 1;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
}

.letsbidd-chatbot__title {
	margin: 0;
	font-size: 18px;
	line-height: 1.2;
	font-weight: 700;
}

.letsbidd-chatbot__subtitle {
	margin: 6px 0 0;
	font-size: 13px;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.82);
}

.letsbidd-chatbot__header-actions {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.letsbidd-chatbot__status {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
	color: #d9fffb;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.16);
}

.letsbidd-chatbot__status::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: #9ef6de;
	box-shadow: 0 0 0 4px rgba(158, 246, 222, 0.14);
}

.letsbidd-chatbot__close {
	width: 34px;
	height: 34px;
	border: none;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	transition: background 160ms ease, transform 160ms ease;
}

.letsbidd-chatbot__close:hover,
.letsbidd-chatbot__close:focus-visible {
	background: rgba(255, 255, 255, 0.22);
	transform: rotate(8deg);
	outline: none;
}

.letsbidd-chatbot__quick-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 14px 14px 10px;
	background: linear-gradient(180deg, rgba(248, 250, 252, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
	border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.letsbidd-chatbot__quick-action {
	border: 1px solid rgba(58, 175, 169, 0.16);
	background: #f7fbfb;
	color: var(--letsbidd-chatbot-accent-deep);
	border-radius: 999px;
	padding: 9px 12px;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	transition: background 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.letsbidd-chatbot__quick-action:hover,
.letsbidd-chatbot__quick-action:focus-visible {
	background: #eef8f7;
	border-color: rgba(58, 175, 169, 0.3);
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
	transform: translateY(-1px);
	outline: none;
}

.letsbidd-chatbot__messages {
	flex: 1 1 auto;
	overflow: auto;
	padding: 16px 14px 18px;
	background: linear-gradient(180deg, #f8fafc 0%, #f4f9fc 100%);
}

.letsbidd-chatbot__message-row {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 12px;
}

.letsbidd-chatbot__message-row--user {
	align-items: flex-end;
}

.letsbidd-chatbot__message-row--bot {
	align-items: flex-start;
}

.letsbidd-chatbot__bubble {
	max-width: 92%;
	padding: 12px 14px;
	border-radius: 18px;
	font-size: 14px;
	line-height: 1.55;
	white-space: pre-wrap;
	word-break: break-word;
}

.letsbidd-chatbot__bubble--bot {
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid rgba(15, 23, 42, 0.08);
	color: var(--letsbidd-chatbot-text);
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
	border-bottom-left-radius: 8px;
}

.letsbidd-chatbot__bubble--user {
	background: var(--letsbidd-chatbot-user);
	color: #fff;
	border-bottom-right-radius: 8px;
	box-shadow: 0 10px 24px rgba(43, 122, 120, 0.18);
}

.letsbidd-chatbot__bubble--typing {
	width: 70px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.letsbidd-chatbot__bubble--typing span {
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: #7eaeb1;
	animation: letsbidd-chatbot-pulse 1.1s infinite ease-in-out;
}

.letsbidd-chatbot__bubble--typing span:nth-child(2) {
	animation-delay: 0.15s;
}

.letsbidd-chatbot__bubble--typing span:nth-child(3) {
	animation-delay: 0.3s;
}

.letsbidd-chatbot__sources {
	display: grid;
	gap: 8px;
	width: 100%;
}

.letsbidd-chatbot__state {
	padding: 0 14px 12px;
	border-bottom: 1px solid rgba(15, 23, 42, 0.06);
	background: rgba(255, 255, 255, 0.98);
}

.letsbidd-chatbot__state-title {
	margin: 0 0 10px;
	font-size: 14px;
	font-weight: 600;
	color: var(--letsbidd-chatbot-text);
}

.letsbidd-chatbot__options-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.letsbidd-chatbot__option-button {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	padding: 12px 14px;
	border: 1px solid rgba(58, 175, 169, 0.18);
	border-radius: 14px;
	background: #f9fbfb;
	color: var(--letsbidd-chatbot-text);
	cursor: pointer;
	text-align: left;
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.letsbidd-chatbot__option-button:hover,
.letsbidd-chatbot__option-button:focus-visible {
	background: #eef8f7;
	border-color: rgba(58, 175, 169, 0.32);
	box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
	transform: translateY(-1px);
	outline: none;
}

.letsbidd-chatbot__option-title {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
}

.letsbidd-chatbot__option-meta {
	font-size: 12px;
	line-height: 1.45;
	color: var(--letsbidd-chatbot-muted);
}

.letsbidd-chatbot__answer-title {
	margin: 0;
	font-size: 16px;
	line-height: 1.25;
	font-weight: 700;
	color: var(--letsbidd-chatbot-text);
}

.letsbidd-chatbot__answer-category {
	margin: 0 0 10px;
	font-size: 12px;
	font-weight: 600;
	color: var(--letsbidd-chatbot-accent-strong);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.letsbidd-chatbot__answer-body {
	font-size: 14px;
	line-height: 1.65;
	color: var(--letsbidd-chatbot-text);
	white-space: pre-wrap;
}

.letsbidd-chatbot__answer-intro {
	margin: 0 0 12px;
	white-space: normal;
}

.letsbidd-chatbot__answer-steps-wrap {
	margin-top: 12px;
	padding: 12px;
	border: 1px solid rgba(58, 175, 169, 0.14);
	border-radius: 16px;
	background: rgba(247, 251, 251, 0.95);
}

.letsbidd-chatbot__answer-steps-title {
	margin: 0 0 10px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--letsbidd-chatbot-accent-strong);
}

.letsbidd-chatbot__answer-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.letsbidd-chatbot__answer-step {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	color: var(--letsbidd-chatbot-text);
}

.letsbidd-chatbot__answer-step-index {
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--letsbidd-chatbot-accent-strong), var(--letsbidd-chatbot-accent));
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 14px rgba(43, 122, 120, 0.18);
}

.letsbidd-chatbot__answer-step-text {
	flex: 1 1 auto;
	font-size: 13px;
	line-height: 1.55;
	white-space: normal;
}

.letsbidd-chatbot__state-link {
	border: none;
	background: transparent;
	padding: 0;
	cursor: pointer;
	color: var(--letsbidd-chatbot-accent-strong);
	font-weight: 600;
}

.letsbidd-chatbot__state-link:hover,
.letsbidd-chatbot__state-link:focus-visible {
	text-decoration: underline;
	outline: none;
}

.letsbidd-chatbot__source {
	border: 1px solid rgba(58, 175, 169, 0.14);
	border-radius: 14px;
	padding: 10px 12px;
	background: rgba(255, 255, 255, 0.9);
}

.letsbidd-chatbot__source-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 700;
	color: var(--letsbidd-chatbot-accent-strong);
	text-decoration: none;
	margin-bottom: 4px;
	word-break: break-word;
}

.letsbidd-chatbot__source-link:hover,
.letsbidd-chatbot__source-link:focus-visible {
	text-decoration: underline;
	outline: none;
}

.letsbidd-chatbot__source-meta {
	margin: 0;
	font-size: 12px;
	line-height: 1.45;
	color: var(--letsbidd-chatbot-muted);
	word-break: break-word;
}

.letsbidd-chatbot__hint {
	margin-top: 8px;
	font-size: 12px;
	line-height: 1.45;
	color: var(--letsbidd-chatbot-muted);
}

.letsbidd-chatbot__composer {
	display: flex;
	gap: 10px;
	align-items: center;
	padding: 14px;
	background: rgba(255, 255, 255, 0.98);
	border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.letsbidd-chatbot__input {
	flex: 1 1 auto;
	min-width: 0;
	height: 48px;
	border: 1px solid rgba(15, 23, 42, 0.12);
	border-radius: 16px;
	padding: 0 14px;
	font-size: 14px;
	color: var(--letsbidd-chatbot-text);
	background: #fff;
	box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.03);
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.letsbidd-chatbot__input::placeholder {
	color: #94a3b8;
}

.letsbidd-chatbot__input:focus {
	outline: none;
	border-color: rgba(58, 175, 169, 0.5);
	box-shadow: 0 0 0 4px rgba(58, 175, 169, 0.14);
}

.letsbidd-chatbot__send {
	flex: 0 0 auto;
	height: 48px;
	padding: 0 18px;
	border: none;
	border-radius: 16px;
	background: linear-gradient(135deg, var(--letsbidd-chatbot-accent-strong) 0%, var(--letsbidd-chatbot-accent) 100%);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 10px 22px rgba(43, 122, 120, 0.22);
	transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.letsbidd-chatbot__send:hover,
.letsbidd-chatbot__send:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(43, 122, 120, 0.28);
	outline: none;
}

.letsbidd-chatbot__send:disabled,
.letsbidd-chatbot__input:disabled {
	cursor: progress;
	opacity: 0.72;
}

@keyframes letsbidd-chatbot-pulse {
	0%, 80%, 100% {
		transform: translateY(0);
		opacity: 0.55;
	}
	40% {
		transform: translateY(-4px);
		opacity: 1;
	}
}

@media (max-width: 768px) {
	.letsbidd-chatbot {
		inset: auto max(12px, env(safe-area-inset-right)) max(12px, env(safe-area-inset-bottom)) auto;
	}

	.letsbidd-chatbot__launcher {
		right: max(12px, env(safe-area-inset-right));
		bottom: max(12px, env(safe-area-inset-bottom));
		width: 56px;
		height: 56px;
	}

	.letsbidd-chatbot__panel {
		right: max(12px, env(safe-area-inset-right));
		left: max(12px, env(safe-area-inset-left));
		bottom: calc(max(12px, env(safe-area-inset-bottom)) + 68px);
		width: auto;
		height: min(76vh, 700px);
		max-height: calc(100vh - 104px);
		border-radius: 22px;
		transform-origin: bottom center;
	}

	.letsbidd-chatbot__header {
		padding: 16px;
	}

	.letsbidd-chatbot__quick-actions {
		padding: 12px;
	}

	.letsbidd-chatbot__messages {
		padding: 14px 12px 16px;
	}

	.letsbidd-chatbot__composer {
		padding: 12px;
	}

	.letsbidd-chatbot__bubble {
		max-width: 96%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.letsbidd-chatbot *,
	.letsbidd-chatbot__launcher,
	.letsbidd-chatbot__panel,
	.letsbidd-chatbot__overlay,
	.letsbidd-chatbot__quick-action,
	.letsbidd-chatbot__send,
	.letsbidd-chatbot__close {
		transition: none !important;
		animation: none !important;
	}
}






