/**
 * Vendavo Ask AI — Docket agent OnClick trigger box.
 */

.vendavo-ask-ai {
	box-sizing: border-box;
	width: 100%;
	max-width: 760px;
	margin: 0 auto;
	padding: 28px 32px;
	background: rgba( 13, 10, 38, 0.78 );
	border: 1px solid rgba( 255, 255, 255, 0.08 );
	border-radius: 18px;
	box-shadow: 0 24px 80px rgba( 0, 0, 0, 0.45 );
	backdrop-filter: blur( 14px ) saturate( 140% );
	-webkit-backdrop-filter: blur( 14px ) saturate( 140% );
	text-align: left;
	color: #ffffff;
}

.vendavo-ask-ai__prompt {
	margin: 0 0 18px;
	font-size: clamp( 18px, 2.2vw, 22px );
	line-height: 1.35;
	color: rgba( 255, 255, 255, 0.92 );
}

.vendavo-ask-ai__prompt strong {
	font-weight: 700;
	color: #ffffff;
}

.vendavo-ask-ai__divider {
	margin: 0 -32px 18px;
	border: 0;
	border-top: 1px solid rgba( 255, 255, 255, 0.08 );
}

.vendavo-ask-ai__form {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 18px;
}

.vendavo-ask-ai__input {
	flex: 1 1 auto;
	min-width: 0;
	padding: 6px 0;
	background: transparent;
	border: 0;
	outline: 0;
	color: rgba( 255, 255, 255, 0.92 );
	font-size: 16px;
	font-family: inherit;
	margin: 0;

}

.vendavo-ask-ai__input::placeholder {
	color: rgba( 255, 255, 255, 0.55 );
}

.vendavo-ask-ai__button {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 20px;
	border: 0;
	border-radius: 999px;
	background-color: #c8f76b; /* Vendavo lime — matches screenshot. */
	color: #1B2A0F;
	font-size: 14px;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	transition: transform 120ms ease, background-color 120ms ease;
	white-space: nowrap;
}

.vendavo-ask-ai__button:hover {
	transform: scale( 1.03 );
}

.vendavo-ask-ai__button:focus-visible {
	outline: 2px solid #ffffff;
	outline-offset: 2px;
}

.vendavo-ask-ai__button-arrow {
	display: inline-block;
	line-height: 1;
	font-size: 12px;
}

/* "Continue with Vivi" CTA shown after first engagement. */
.vendavo-ask-ai__continue {
	display: flex;
	justify-content: center;
	margin: 18px 0 0 0;
}

.vendavo-ask-ai__continue .vendavo-ask-ai__button {
	padding: 12px 26px;
	font-size: 16px;
}

/* For direct container continue mode swap in vendavo-onclick-snippetv2 */
.vendavo-ask-ai--continue .vendavo-ask-ai__button {
	display: flex;
	margin: 18px auto 0;
	padding: 12px 26px;
	font-size: 16px;
	width: max-content;
}

.vendavo-ask-ai__caption {
	margin: 28px 0 0;
	text-align: center;
	font-size: 11px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: rgba( 255, 255, 255, 0.4 );
}

@media ( max-width: 600px ) {
	.vendavo-ask-ai {
		padding: 22px 20px;
	}
	.vendavo-ask-ai__divider {
		margin-left: -20px;
		margin-right: -20px;
	}
	.vendavo-ask-ai__form {
		flex-direction: column;
		align-items: stretch;
	}
	.vendavo-ask-ai__button {
		justify-content: center;
	}
}
