.xspeed-seal-app,
.xspeed-seal-app * {
	box-sizing: border-box;
}

.xspeed-seal-app {
	--xs-blue: #0057a8;
	--xs-blue-hover: #00498e;
	--xs-blue-soft: #eef6fd;
	--xs-background: #fafbfc;
	--xs-surface: #ffffff;
	--xs-text: #172033;
	--xs-secondary: #667085;
	--xs-muted: #98a2b3;
	--xs-border: #e7ebf0;
	--xs-border-strong: #d8dee7;
	--xs-hover: #f5f8fc;
	--xs-success: #21a366;
	font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 14px;
	line-height: 1.5;
	color: var(--xs-text);
}

.xspeed-seal-app button,
.xspeed-seal-app input,
.xspeed-seal-app textarea,
.xspeed-seal-app select {
	font-family: inherit;
}

.xspeed-seal-app button,
.xspeed-seal-app a {
	-webkit-tap-highlight-color: transparent;
}

.xspeed-seal-app button:focus-visible,
.xspeed-seal-app a:focus-visible,
.xspeed-seal-app input:focus-visible,
.xspeed-seal-app textarea:focus-visible,
.xspeed-seal-app select:focus-visible {
	outline: 2px solid rgba(0, 87, 168, .35);
	outline-offset: 2px;
}

.xspeed-seal-app--floating {
	position: fixed;
	right: 20px;
	bottom: 16px;
	z-index: 999999;
}

/* Keep Chaty as a separate human-contact route beside the AI launcher. */
body .chaty-widget.right-position {
	right: 126px !important;
	bottom: 20px !important;
}

.xspeed-seal-launcher {
	position: relative;
	display: flex;
	width: 94px;
	height: 104px;
	align-items: flex-end;
	justify-content: flex-end;
	padding: 0;
	overflow: visible;
	border: 0;
	background: transparent;
	color: var(--xs-text);
	cursor: pointer;
	filter: drop-shadow(0 8px 14px rgba(23, 32, 51, .14));
	transition: opacity 180ms ease, transform 180ms ease;
}

.xspeed-seal-launcher:hover {
	transform: translateY(-2px);
}

.xspeed-seal-launcher:focus-visible {
	border-radius: 18px;
}

.xspeed-seal-launcher__mascot {
	position: relative;
	display: block;
	width: 88px;
	height: 96px;
}

.xspeed-seal-launcher__mascot .xspeed-seal-icon {
	display: block;
	width: 88px;
	height: 96px;
	object-fit: contain;
}

.xspeed-seal-launcher__status {
	position: absolute;
	right: 7px;
	bottom: 11px;
	width: 12px;
	height: 12px;
	border: 2px solid #fff;
	border-radius: 50%;
	background: var(--xs-success);
}

.xspeed-seal-launcher__bubble {
	position: absolute;
	right: 70px;
	bottom: 91px;
	width: 224px;
	padding: 11px 13px;
	border: 1px solid var(--xs-border);
	border-radius: 12px 12px 3px 12px;
	background: #fff;
	box-shadow: 0 12px 34px rgba(23, 32, 51, .12);
	text-align: left;
	animation: xspeed-seal-bubble-in 180ms ease both;
}

.xspeed-seal-launcher__bubble::after {
	content: "";
	position: absolute;
	right: -6px;
	bottom: 9px;
	width: 12px;
	height: 12px;
	border-right: 1px solid var(--xs-border);
	border-bottom: 1px solid var(--xs-border);
	background: #fff;
	transform: rotate(-45deg);
}

.xspeed-seal-launcher__bubble strong,
.xspeed-seal-launcher__bubble small {
	position: relative;
	z-index: 1;
	display: block;
}

.xspeed-seal-launcher__bubble strong {
	color: var(--xs-text);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
}

.xspeed-seal-launcher__bubble small {
	margin-top: 2px;
	color: var(--xs-secondary);
	font-size: 11px;
	font-weight: 400;
}

.xspeed-seal-app.is-open .xspeed-seal-launcher {
	opacity: 0;
	pointer-events: none;
	transform: translateY(8px);
}

.xspeed-seal-panel {
	position: fixed;
	right: 22px;
	bottom: 20px;
	display: flex;
	width: 396px;
	height: min(660px, calc(100vh - 40px));
	min-height: 520px;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--xs-border);
	border-radius: 18px;
	background: var(--xs-surface);
	box-shadow: 0 22px 64px rgba(23, 32, 51, .16), 0 3px 12px rgba(23, 32, 51, .05);
	opacity: 1;
	transform: translateY(0);
	transform-origin: right bottom;
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
}

.xspeed-seal-panel[aria-hidden="true"] {
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transform: translateY(10px);
}

.xspeed-seal-header {
	position: relative;
	z-index: 3;
	display: flex;
	min-height: 68px;
	flex: 0 0 68px;
	align-items: center;
	justify-content: space-between;
	padding: 12px 14px 12px 16px;
	border-bottom: 1px solid var(--xs-border);
	background: #fff;
	color: var(--xs-text);
}

.xspeed-seal-identity {
	display: flex;
	min-width: 0;
	align-items: center;
	gap: 10px;
}

.xspeed-seal-header__avatar {
	display: grid;
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	place-items: center;
	overflow: hidden;
	border: 1px solid var(--xs-border);
	border-radius: 11px;
	background: #f7f9fc;
}

.xspeed-seal-header__avatar img {
	width: 40px;
	height: 43px;
	object-fit: contain;
	transform: translateY(2px);
}

.xspeed-seal-identity__text {
	display: flex;
	min-width: 0;
	flex-direction: column;
}

.xspeed-seal-identity__text strong {
	color: var(--xs-text);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -.01em;
}

.xspeed-seal-identity__descriptor {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-top: 2px;
	color: var(--xs-secondary);
	font-size: 11px;
	font-weight: 500;
	white-space: nowrap;
}

.xspeed-seal-identity__descriptor i {
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--xs-success);
}

.xspeed-seal-header__actions {
	display: flex;
	align-items: center;
	gap: 4px;
}

.xspeed-seal-human {
	min-height: 32px;
	padding: 0 10px;
	border: 1px solid var(--xs-border-strong);
	border-radius: 8px;
	background: #fff;
	color: #344054;
	cursor: pointer;
	font-size: 11px;
	font-weight: 600;
	white-space: nowrap;
	transition: border-color 150ms ease, background 150ms ease, color 150ms ease;
}

.xspeed-seal-human:hover {
	border-color: #b9c4d1;
	background: var(--xs-hover);
	color: var(--xs-text);
}

.xspeed-seal-icon-button {
	display: grid;
	width: 32px;
	height: 32px;
	padding: 0;
	place-items: center;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: var(--xs-secondary);
	cursor: pointer;
	transition: background 150ms ease, color 150ms ease;
}

.xspeed-seal-icon-button:hover {
	background: var(--xs-hover);
	color: var(--xs-text);
}

.xspeed-seal-icon-button svg {
	width: 17px;
	height: 17px;
}

.xspeed-seal-chat {
	position: relative;
	flex: 1 1 auto;
	min-height: 0;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 20px 18px 24px;
	background: var(--xs-background);
	overscroll-behavior: contain;
	scrollbar-color: #d6dce5 transparent;
	scrollbar-width: thin;
}

.xspeed-seal-chat::-webkit-scrollbar {
	width: 4px;
}

.xspeed-seal-chat::-webkit-scrollbar-track {
	background: transparent;
}

.xspeed-seal-chat::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background: #d6dce5;
}

.xspeed-seal-messages {
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-height: 100%;
}

.xspeed-seal-welcome {
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.xspeed-seal-welcome__eyebrow {
	display: inline-flex;
	align-self: flex-start;
	align-items: center;
	gap: 6px;
	margin-bottom: 10px;
	color: var(--xs-blue);
	font-size: 9px;
	font-weight: 650;
	letter-spacing: .09em;
}

.xspeed-seal-welcome__eyebrow svg {
	width: 14px;
	height: 14px;
}

.xspeed-seal-welcome h2 {
	margin: 0 !important;
	color: var(--xs-text);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: -.02em;
}

.xspeed-seal-welcome h3 {
	margin: 4px 0 0 !important;
	color: #344054;
	font-size: 13px;
	font-weight: 550;
	line-height: 1.45;
}

.xspeed-seal-welcome__intro {
	margin: 7px 0 0 !important;
	color: var(--xs-secondary);
	font-size: 12px;
	font-weight: 400;
	line-height: 1.55;
}

.xspeed-seal-quick-actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-top: 20px;
}

.xspeed-seal-action-card {
	position: relative;
	display: flex;
	min-width: 0;
	min-height: 78px;
	align-items: flex-start;
	gap: 9px;
	padding: 11px 10px;
	border: 1px solid var(--xs-border);
	border-radius: 11px;
	background: #fff;
	color: var(--xs-text);
	cursor: pointer;
	text-align: left;
	transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.xspeed-seal-action-card:hover {
	border-color: #cbd4df;
	background: #fff;
	box-shadow: 0 5px 14px rgba(23, 32, 51, .05);
	transform: translateY(-1px);
}

.xspeed-seal-action-card__icon {
	display: grid;
	width: 26px;
	height: 26px;
	flex: 0 0 26px;
	place-items: center;
	border-radius: 7px;
	background: var(--xs-blue-soft);
	color: var(--xs-blue);
}

.xspeed-seal-action-card__icon svg {
	width: 16px;
	height: 16px;
}

.xspeed-seal-action-card__copy {
	display: flex;
	min-width: 0;
	flex: 1;
	flex-direction: column;
	padding-right: 8px;
}

.xspeed-seal-action-card__copy strong {
	color: var(--xs-text);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.35;
}

.xspeed-seal-action-card__copy small {
	margin-top: 3px;
	color: var(--xs-secondary);
	font-size: 10.5px;
	font-weight: 400;
	line-height: 1.35;
}

.xspeed-seal-action-card__arrow {
	position: absolute;
	right: 8px;
	top: 12px;
	width: 13px;
	height: 13px;
	color: var(--xs-muted);
	transition: color 150ms ease, transform 150ms ease;
}

.xspeed-seal-action-card:hover .xspeed-seal-action-card__arrow {
	color: var(--xs-blue);
	transform: translateX(1px);
}

.xspeed-seal-examples {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-top: 22px;
	padding-top: 17px;
	border-top: 1px solid var(--xs-border);
}

.xspeed-seal-examples > strong {
	margin-bottom: 1px;
	color: var(--xs-secondary);
	font-size: 11px;
	font-weight: 600;
}

.xspeed-seal-example {
	width: 100%;
	padding: 7px 9px;
	border: 1px solid transparent;
	border-radius: 8px;
	background: #f4f6f8;
	color: #475467;
	cursor: pointer;
	font-size: 11px;
	font-weight: 400;
	line-height: 1.35;
	text-align: left;
	transition: border-color 150ms ease, background 150ms ease, color 150ms ease;
}

.xspeed-seal-example:hover {
	border-color: var(--xs-border-strong);
	background: #fff;
	color: var(--xs-text);
}

.xspeed-seal-message {
	display: flex;
	max-width: 100%;
	align-items: flex-start;
	gap: 8px;
	animation: xspeed-seal-message-in 170ms ease both;
}

.xspeed-seal-message--user {
	justify-content: flex-end;
	padding-left: 34px;
}

.xspeed-seal-ai-mark {
	display: grid;
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	place-items: center;
	margin-top: 19px;
	border: 1px solid #d7e8f7;
	border-radius: 7px;
	background: var(--xs-blue-soft);
	color: var(--xs-blue);
}

.xspeed-seal-ai-mark svg {
	width: 14px;
	height: 14px;
}

.xspeed-seal-message__content {
	display: flex;
	max-width: calc(100% - 32px);
	min-width: 0;
	flex-direction: column;
	gap: 6px;
}

.xspeed-seal-message--user .xspeed-seal-message__content {
	max-width: 88%;
	align-items: flex-end;
}

.xspeed-seal-message__label {
	color: var(--xs-muted);
	font-size: 10px;
	font-weight: 550;
	line-height: 1.3;
}

.xspeed-seal-answer {
	width: 100%;
	padding: 11px 12px;
	border: 1px solid var(--xs-border);
	border-radius: 4px 12px 12px 12px;
	background: #fff;
	color: #344054;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.58;
	white-space: pre-wrap;
	word-break: break-word;
}

.xspeed-seal-message--user .xspeed-seal-answer {
	border-color: #d7e8f7;
	border-radius: 12px 12px 4px 12px;
	background: var(--xs-blue-soft);
	color: #213a55;
}

.xspeed-seal-products {
	display: grid;
	width: 100%;
	gap: 8px;
	margin-top: 2px;
}

.xspeed-seal-products__label {
	color: var(--xs-muted);
	font-size: 9px;
	font-weight: 650;
	letter-spacing: .08em;
}

.xspeed-seal-product {
	display: grid;
	grid-template-columns: 62px minmax(0, 1fr);
	align-items: center;
	gap: 11px;
	padding: 10px;
	border: 1px solid var(--xs-border);
	border-radius: 12px;
	background: #fff;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.xspeed-seal-product:hover {
	border-color: #ccd5df;
	box-shadow: 0 6px 16px rgba(23, 32, 51, .05);
	transform: translateY(-1px);
}

.xspeed-seal-product > img {
	width: 62px;
	height: 62px;
	padding: 3px;
	border: 1px solid #eef1f4;
	border-radius: 8px;
	background: #fafbfc;
	object-fit: contain;
}

.xspeed-seal-product__details {
	display: flex;
	min-width: 0;
	flex-direction: column;
	align-items: flex-start;
}

.xspeed-seal-product__details > strong {
	overflow: hidden;
	color: var(--xs-text);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.xspeed-seal-product__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 4px;
	color: var(--xs-secondary);
}

.xspeed-seal-product__meta small {
	font-size: 9.5px;
	font-weight: 400;
}

.xspeed-seal-product__meta b {
	color: #344054;
	font-size: 11px;
	font-weight: 600;
}

.xspeed-seal-product__link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-top: 7px;
	color: var(--xs-blue) !important;
	font-size: 10.5px;
	font-weight: 600;
	text-decoration: none !important;
}

.xspeed-seal-product__link svg {
	width: 13px;
	height: 13px;
	transition: transform 150ms ease;
}

.xspeed-seal-product__link:hover svg {
	transform: translateX(1px);
}

.xspeed-seal-handoff {
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	margin-top: 2px;
	padding: 11px 12px;
	border: 1px solid var(--xs-border);
	border-left: 2px solid var(--xs-blue);
	border-radius: 9px;
	background: #fff;
}

.xspeed-seal-handoff > strong {
	color: var(--xs-text);
	font-size: 12px;
	font-weight: 600;
}

.xspeed-seal-handoff > span:not(.xspeed-seal-handoff__actions) {
	color: var(--xs-secondary);
	font-size: 10.5px;
	line-height: 1.45;
}

.xspeed-seal-handoff__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 4px;
}

.xspeed-seal-handoff__actions button,
.xspeed-seal-handoff__actions a {
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--xs-blue) !important;
	cursor: pointer;
	font-size: 10.5px;
	font-weight: 600;
	text-decoration: none !important;
}

.xspeed-seal-typing {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-top: 14px;
	color: var(--xs-secondary);
}

.xspeed-seal-typing[hidden] {
	display: none;
}

.xspeed-seal-typing .xspeed-seal-ai-mark {
	margin-top: 0;
}

.xspeed-seal-typing__dots {
	display: flex;
	gap: 3px;
}

.xspeed-seal-typing__dots i {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #8391a5;
	animation: xspeed-seal-dot 1s infinite ease-in-out;
}

.xspeed-seal-typing__dots i:nth-child(2) {
	animation-delay: 120ms;
}

.xspeed-seal-typing__dots i:nth-child(3) {
	animation-delay: 240ms;
}

.xspeed-seal-typing em {
	font-size: 10.5px;
	font-style: normal;
}

.xspeed-seal-footer {
	flex: 0 0 auto;
	padding: 12px 16px 10px;
	border-top: 1px solid var(--xs-border);
	background: #fff;
}

.xspeed-seal-form {
	display: flex;
	min-height: 58px;
	align-items: flex-end;
	gap: 9px;
	padding: 8px 8px 8px 13px;
	border: 1px solid var(--xs-border);
	border-radius: 13px;
	background: #fff;
	box-shadow: 0 3px 12px rgba(23, 32, 51, .04);
	transition: border-color 150ms ease, box-shadow 150ms ease;
}

.xspeed-seal-form:focus-within {
	border-color: #9fc5e7;
	box-shadow: 0 0 0 3px rgba(0, 87, 168, .08);
}

.xspeed-seal-input {
	flex: 1;
	width: 100%;
	min-width: 0;
	min-height: 40px;
	max-height: 92px;
	padding: 10px 0 7px !important;
	overflow-y: auto;
	border: 0 !important;
	border-radius: 0 !important;
	outline: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: var(--xs-text) !important;
	font-size: 13px !important;
	font-weight: 400 !important;
	line-height: 1.45 !important;
	resize: none !important;
	scrollbar-width: none;
	appearance: none;
	-webkit-appearance: none;
}

.xspeed-seal-input::-webkit-scrollbar {
	display: none;
}

.xspeed-seal-input::placeholder {
	color: var(--xs-muted);
	opacity: 1;
}

.xspeed-seal-send {
	display: grid;
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	padding: 0;
	place-items: center;
	border: 0;
	border-radius: 10px;
	background: var(--xs-blue);
	color: #fff;
	cursor: pointer;
	transition: background 150ms ease, opacity 150ms ease, transform 150ms ease;
}

.xspeed-seal-send:hover {
	background: var(--xs-blue-hover);
	transform: translateY(-1px);
}

.xspeed-seal-send:disabled {
	opacity: .5;
	cursor: wait;
	transform: none;
}

.xspeed-seal-send svg {
	width: 19px;
	height: 19px;
}

.xspeed-seal-footer__row {
	display: flex;
	justify-content: center;
	padding-top: 7px;
}

.xspeed-seal-footer__human {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--xs-secondary);
	cursor: pointer;
	font-size: 10px;
	font-weight: 500;
	transition: color 150ms ease;
}

.xspeed-seal-footer__human:hover {
	color: var(--xs-blue);
}

.xspeed-seal-footer__human svg {
	width: 12px;
	height: 12px;
}

.xspeed-seal-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.xspeed-seal-contact {
	position: absolute;
	z-index: 4;
	inset: 68px 0 0;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 18px 20px 28px;
	background: var(--xs-background);
	animation: xspeed-seal-sheet-in 180ms ease both;
	scrollbar-color: #d6dce5 transparent;
	scrollbar-width: thin;
}

.xspeed-seal-contact::-webkit-scrollbar {
	width: 4px;
}

.xspeed-seal-contact::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background: #d6dce5;
}

.xspeed-seal-contact[hidden] {
	display: none;
}

.xspeed-seal-contact__top {
	margin-bottom: 18px;
}

.xspeed-seal-contact__back {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 4px 0;
	border: 0;
	background: transparent;
	color: var(--xs-secondary);
	cursor: pointer;
	font-size: 11px;
	font-weight: 500;
}

.xspeed-seal-contact__back:hover {
	color: var(--xs-blue);
}

.xspeed-seal-contact__back svg {
	width: 14px;
	height: 14px;
}

.xspeed-seal-contact__intro {
	margin-bottom: 20px;
}

.xspeed-seal-contact__eyebrow {
	color: var(--xs-blue);
	font-size: 9px;
	font-weight: 650;
	letter-spacing: .09em;
}

.xspeed-seal-contact__intro h3 {
	margin: 7px 0 5px !important;
	color: var(--xs-text);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: -.02em;
}

.xspeed-seal-contact__intro p {
	margin: 0 !important;
	color: var(--xs-secondary);
	font-size: 11.5px;
	line-height: 1.55;
}

.xspeed-seal-contact__form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.xspeed-seal-contact__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.xspeed-seal-contact__form > label,
.xspeed-seal-contact__grid label {
	display: flex;
	flex-direction: column;
	gap: 5px;
	color: #344054;
	font-size: 10.5px;
	font-weight: 600;
}

.xspeed-seal-contact__form label > span {
	color: var(--xs-muted);
	font-size: 9px;
	font-weight: 400;
}

.xspeed-seal-contact__form input:not([type="checkbox"]),
.xspeed-seal-contact__form select,
.xspeed-seal-contact__form textarea {
	width: 100%;
	min-height: 41px;
	padding: 9px 10px !important;
	border: 1px solid var(--xs-border-strong) !important;
	border-radius: 8px !important;
	outline: 0 !important;
	background: #fff !important;
	box-shadow: none !important;
	color: var(--xs-text) !important;
	font-size: 12px !important;
	font-weight: 400 !important;
	line-height: 1.45 !important;
	transition: border-color 150ms ease, box-shadow 150ms ease;
}

.xspeed-seal-contact__form textarea {
	min-height: 78px;
	resize: vertical;
}

.xspeed-seal-contact__form input:focus,
.xspeed-seal-contact__form select:focus,
.xspeed-seal-contact__form textarea:focus {
	border-color: #9fc5e7 !important;
	box-shadow: 0 0 0 3px rgba(0, 87, 168, .08) !important;
}

.xspeed-seal-contact__consent {
	display: grid !important;
	grid-template-columns: 16px minmax(0, 1fr);
	align-items: start;
	gap: 8px !important;
	padding: 1px 0;
	cursor: pointer;
	font-weight: 400 !important;
	line-height: 1.4;
}

.xspeed-seal-contact__consent input {
	width: 15px;
	height: 15px;
	margin: 1px 0 0 !important;
	accent-color: var(--xs-blue);
}

.xspeed-seal-contact__consent span {
	color: var(--xs-secondary) !important;
	font-size: 10px !important;
}

.xspeed-seal-contact__submit {
	min-height: 42px;
	padding: 0 14px;
	border: 0;
	border-radius: 8px;
	background: var(--xs-blue);
	color: #fff;
	cursor: pointer;
	font-size: 12px;
	font-weight: 600;
	transition: background 150ms ease, opacity 150ms ease;
}

.xspeed-seal-contact__submit:hover {
	background: var(--xs-blue-hover);
}

.xspeed-seal-contact__submit:disabled {
	opacity: .55;
	cursor: wait;
}

.xspeed-seal-contact__direct {
	display: block;
	color: var(--xs-blue) !important;
	font-size: 10.5px;
	font-weight: 600;
	text-align: center;
	text-decoration: none !important;
}

.xspeed-seal-contact__error {
	margin: 0 !important;
	padding: 8px 9px;
	border: 1px solid #f4c7c7;
	border-radius: 7px;
	background: #fff7f7;
	color: #b42318;
	font-size: 10.5px;
}

.xspeed-seal-contact__success {
	display: flex;
	min-height: 320px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 24px;
	text-align: center;
}

.xspeed-seal-contact__success > span {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid #ccebdc;
	border-radius: 50%;
	background: #f1faf5;
	color: #188653;
}

.xspeed-seal-contact__success > span svg {
	width: 20px;
	height: 20px;
}

.xspeed-seal-contact__success h4 {
	margin: 13px 0 5px !important;
	color: var(--xs-text);
	font-size: 17px;
	font-weight: 600;
}

.xspeed-seal-contact__success p {
	margin: 0 !important;
	color: var(--xs-secondary);
	font-size: 11.5px;
	line-height: 1.55;
}

.xspeed-seal-contact__success button {
	margin-top: 17px;
	padding: 8px 11px;
	border: 1px solid var(--xs-border-strong);
	border-radius: 8px;
	background: #fff;
	color: #344054;
	cursor: pointer;
	font-size: 11px;
	font-weight: 600;
}

.xspeed-seal-app--embedded {
	position: relative;
	right: auto;
	bottom: auto;
}

.xspeed-seal-app--embedded .xspeed-seal-panel {
	position: relative;
	right: auto;
	bottom: auto;
	margin-top: 12px;
}

@keyframes xspeed-seal-bubble-in {
	from { opacity: 0; transform: translateY(4px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes xspeed-seal-message-in {
	from { opacity: 0; transform: translateY(4px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes xspeed-seal-sheet-in {
	from { opacity: 0; transform: translateX(8px); }
	to { opacity: 1; transform: translateX(0); }
}

@keyframes xspeed-seal-dot {
	0%, 60%, 100% { opacity: .35; transform: translateY(0); }
	30% { opacity: 1; transform: translateY(-2px); }
}

@media (max-width: 900px) and (min-width: 601px) {
	.xspeed-seal-panel {
		width: 400px;
		height: min(680px, calc(100vh - 32px));
		right: 16px;
		bottom: 16px;
	}
}

@media (max-width: 600px) {
	.xspeed-seal-app--floating {
		right: 12px;
		bottom: max(10px, env(safe-area-inset-bottom));
	}

	body .chaty-widget.right-position {
		right: 105px !important;
		bottom: 17px !important;
	}

	.xspeed-seal-launcher {
		width: 80px;
		height: 88px;
	}

	.xspeed-seal-launcher__mascot,
	.xspeed-seal-launcher__mascot .xspeed-seal-icon {
		width: 76px;
		height: 83px;
	}

	.xspeed-seal-launcher__bubble {
		right: 62px;
		bottom: 103px !important;
		width: min(216px, calc(100vw - 96px));
	}

	.xspeed-seal-panel {
		inset: auto 0 0;
		width: 100%;
		height: min(92dvh, 760px);
		min-height: min(560px, 92dvh);
		border-radius: 20px 20px 0 0;
		box-shadow: 0 -18px 50px rgba(23, 32, 51, .16);
	}

	.xspeed-seal-header {
		min-height: 64px;
		flex-basis: 64px;
		padding: 10px 10px 10px 14px;
	}

	.xspeed-seal-header__avatar {
		width: 38px;
		height: 38px;
		flex-basis: 38px;
	}

	.xspeed-seal-header__avatar img {
		width: 38px;
		height: 41px;
	}

	.xspeed-seal-human {
		min-height: 31px;
		padding: 0 8px;
		font-size: 10.5px;
	}

	.xspeed-seal-reset {
		display: none;
	}

	.xspeed-seal-chat {
		padding: 18px 16px 22px;
	}

	.xspeed-seal-quick-actions {
		gap: 8px;
		margin-top: 18px;
	}

	.xspeed-seal-action-card {
		min-height: 76px;
		padding: 10px 9px;
		gap: 8px;
	}

	.xspeed-seal-action-card__icon {
		width: 24px;
		height: 24px;
		flex-basis: 24px;
	}

	.xspeed-seal-action-card__copy {
		padding-right: 5px;
	}

	.xspeed-seal-action-card__copy strong {
		font-size: 11.5px;
	}

	.xspeed-seal-action-card__copy small {
		font-size: 10px;
	}

	.xspeed-seal-examples {
		margin-top: 20px;
	}

	.xspeed-seal-footer {
		padding: 10px 12px calc(9px + env(safe-area-inset-bottom));
	}

	.xspeed-seal-form {
		min-height: 56px;
		padding: 7px 7px 7px 11px;
	}

	.xspeed-seal-input {
		font-size: 12.5px !important;
	}

	.xspeed-seal-contact {
		inset: 64px 0 0;
		padding: 16px 16px calc(28px + env(safe-area-inset-bottom));
	}

	.xspeed-seal-contact__grid {
		grid-template-columns: 1fr;
	}

	.xspeed-seal-message__content {
		max-width: calc(100% - 32px);
	}

	.xspeed-seal-product {
		grid-template-columns: 58px minmax(0, 1fr);
	}

	.xspeed-seal-product > img {
		width: 58px;
		height: 58px;
	}
}

@media (max-width: 370px) {
	.xspeed-seal-chat {
		padding-right: 13px;
		padding-left: 13px;
	}

	.xspeed-seal-identity__text strong {
		font-size: 14px;
	}

	.xspeed-seal-identity__descriptor {
		font-size: 10px;
	}

	.xspeed-seal-header__actions {
		gap: 2px;
	}

	.xspeed-seal-human {
		padding: 0 7px;
		font-size: 10px;
	}

	.xspeed-seal-quick-actions {
		gap: 7px;
	}

	.xspeed-seal-action-card {
		min-height: 74px;
		padding: 9px 8px;
	}

	.xspeed-seal-action-card__icon {
		display: none;
	}

	.xspeed-seal-action-card__copy small {
		font-size: 9.5px;
	}

	.xspeed-seal-footer {
		padding-right: 10px;
		padding-left: 10px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.xspeed-seal-app *,
	.xspeed-seal-app *::before,
	.xspeed-seal-app *::after {
		scroll-behavior: auto !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
}


/* Xspeed Seal 0.3.1 — readability upgrade */
.xspeed-seal-app { font-size: 16px; }
.xspeed-seal-panel { width: 440px; height: min(700px, calc(100vh - 40px)); }
.xspeed-seal-header { min-height: 72px; flex-basis: 72px; }
.xspeed-seal-header__avatar { width: 44px; height: 44px; flex-basis: 44px; }
.xspeed-seal-header__avatar img { width: 44px; height: 47px; }
.xspeed-seal-identity__text strong { font-size: 17px; }
.xspeed-seal-identity__descriptor { font-size: 13px; }
.xspeed-seal-human { min-height: 36px; font-size: 13px; }
.xspeed-seal-icon-button { width: 36px; height: 36px; }
.xspeed-seal-chat { padding: 22px 20px 26px; }
.xspeed-seal-welcome__eyebrow { font-size: 12px; }
.xspeed-seal-welcome h2 { font-size: 22px; }
.xspeed-seal-welcome h3 { font-size: 16px; }
.xspeed-seal-welcome__intro { font-size: 15px; }
.xspeed-seal-quick-actions { gap: 12px; }
.xspeed-seal-action-card { min-height: 98px; padding: 14px 12px; }
.xspeed-seal-action-card__icon { width: 30px; height: 30px; flex-basis: 30px; }
.xspeed-seal-action-card__copy strong { font-size: 15px; }
.xspeed-seal-action-card__copy small { font-size: 13px; line-height: 1.45; }
.xspeed-seal-examples > strong { font-size: 13px; }
.xspeed-seal-example { font-size: 14px; padding: 9px 11px; }
.xspeed-seal-message__label { font-size: 12px; }
.xspeed-seal-answer { font-size: 16px; line-height: 1.6; padding: 13px 14px; }
.xspeed-seal-products__label { font-size: 12px; }
.xspeed-seal-product__details > strong { font-size: 14px; }
.xspeed-seal-product__meta small { font-size: 12px; }
.xspeed-seal-product__meta b { font-size: 14px; }
.xspeed-seal-product__link { font-size: 13px; }
.xspeed-seal-handoff > strong { font-size: 14px; }
.xspeed-seal-handoff > span:not(.xspeed-seal-handoff__actions) { font-size: 13px; }
.xspeed-seal-handoff__actions button,
.xspeed-seal-handoff__actions a { font-size: 13px; }
.xspeed-seal-typing em { font-size: 12px; }
.xspeed-seal-form { min-height: 66px; }
.xspeed-seal-input { font-size: 16px !important; }
.xspeed-seal-footer__human { font-size: 12px; }
.xspeed-seal-launcher__bubble strong { font-size: 15px; }
.xspeed-seal-launcher__bubble small { font-size: 13px; }
.xspeed-seal-contact { inset: 72px 0 0; }
.xspeed-seal-contact__back { font-size: 13px; }
.xspeed-seal-contact__eyebrow { font-size: 12px; }
.xspeed-seal-contact__intro p { font-size: 14px; }
.xspeed-seal-contact__form > label,
.xspeed-seal-contact__grid label { font-size: 13px; }
.xspeed-seal-contact__form label > span { font-size: 12px; }
.xspeed-seal-contact__form input:not([type="checkbox"]),
.xspeed-seal-contact__form select,
.xspeed-seal-contact__form textarea { font-size: 15px !important; }
.xspeed-seal-contact__consent span { font-size: 12px !important; }
.xspeed-seal-contact__submit { font-size: 15px; }
.xspeed-seal-contact__direct,
.xspeed-seal-contact__error { font-size: 13px; }
.xspeed-seal-contact__success p { font-size: 14px; }
.xspeed-seal-contact__success button { font-size: 13px; }

@media (max-width: 900px) and (min-width: 601px) {
	.xspeed-seal-panel { width: 440px; height: min(700px, calc(100vh - 32px)); }
}

@media (max-width: 600px) {
	.xspeed-seal-panel { width: 100%; height: min(92dvh, 780px); }
	.xspeed-seal-header { min-height: 68px; flex-basis: 68px; }
	.xspeed-seal-human { min-height: 34px; font-size: 12px; }
	.xspeed-seal-action-card { min-height: 94px; padding: 12px 10px; }
	.xspeed-seal-action-card__copy strong { font-size: 14px; }
	.xspeed-seal-action-card__copy small { font-size: 12.5px; }
	.xspeed-seal-input { font-size: 16px !important; }
	.xspeed-seal-contact { inset: 68px 0 0; }
}

@media (max-width: 370px) {
	.xspeed-seal-identity__text strong { font-size: 16px; }
	.xspeed-seal-identity__descriptor { font-size: 12px; }
	.xspeed-seal-human { font-size: 11.5px; }
	.xspeed-seal-action-card { min-height: 90px; padding: 11px 9px; }
	.xspeed-seal-action-card__copy small { font-size: 12px; }
}
/* Xspeed Seal 0.5.0 — integrated Contact Us channels */
body .chaty-widget,
body .chaty-widget.right-position { display: none !important; }
.xspeed-seal-contact__channels { margin: 0 0 22px; }
.xspeed-seal-contact__channels h4 { margin: 0 0 4px !important; color: var(--xs-text); font-size: 16px; font-weight: 650; }
.xspeed-seal-contact__channels > p { margin: 0 0 12px !important; color: var(--xs-secondary); font-size: 13px; line-height: 1.45; }
.xspeed-seal-contact__channel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.xspeed-seal-contact__channel { position: relative; display: flex; min-width: 0; min-height: 68px; align-items: center; gap: 10px; padding: 10px 28px 10px 10px; border: 1px solid var(--xs-border); border-radius: 11px; background: #fff; color: var(--xs-text) !important; cursor: pointer; text-align: left; text-decoration: none !important; transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease; }
.xspeed-seal-contact__channel:hover { border-color: #c5d0dc; box-shadow: 0 5px 14px rgba(23,32,51,.06); transform: translateY(-1px); }
.xspeed-seal-contact__channel-icon { display: grid; width: 36px; height: 36px; flex: 0 0 36px; place-items: center; border-radius: 10px; background: #eef6fd; color: #0057a8; }
.xspeed-seal-contact__channel-icon svg { width: 21px; height: 21px; }
.xspeed-seal-contact__channel-copy { display: flex; min-width: 0; flex-direction: column; }
.xspeed-seal-contact__channel-copy strong { color: var(--xs-text); font-size: 14px; font-weight: 650; line-height: 1.3; }
.xspeed-seal-contact__channel-copy small { overflow: hidden; margin-top: 3px; color: var(--xs-secondary); font-size: 11.5px; line-height: 1.3; text-overflow: ellipsis; white-space: nowrap; }
.xspeed-seal-contact__channel-arrow { position: absolute; right: 9px; width: 14px; height: 14px; color: var(--xs-muted); }
.xspeed-seal-contact__channel[data-channel="whatsapp"] .xspeed-seal-contact__channel-icon { background: #eafbef; color: #20a85a; }
.xspeed-seal-contact__channel[data-channel="mail"] .xspeed-seal-contact__channel-icon { background: #edf5ff; color: #1e88e5; }
.xspeed-seal-contact__channel[data-channel="messenger"] .xspeed-seal-contact__channel-icon { background: #edf5ff; color: #1677f2; }
.xspeed-seal-contact__channel[data-channel="instagram"] .xspeed-seal-contact__channel-icon { background: #fff0f7; color: #d62976; }
.xspeed-seal-contact__channel[data-channel="wechat"] .xspeed-seal-contact__channel-icon { background: #effce9; color: #35a91b; }
.xspeed-seal-contact__form-heading { padding-top: 18px; border-top: 1px solid var(--xs-border); }
.xspeed-seal-contact__form-heading strong,
.xspeed-seal-contact__form-heading span { display: block; }
.xspeed-seal-contact__form-heading strong { color: var(--xs-text); font-size: 15px; }
.xspeed-seal-contact__form-heading span { margin-top: 3px; color: var(--xs-secondary); font-size: 12px; font-weight: 400; }
@media (max-width: 370px) {
	.xspeed-seal-contact__channel-grid { grid-template-columns: 1fr; }
}