/*! Abzaryar | minimal glass product assistant | GPL-2.0-or-later */

/* ---------- Tokens (rgb fallbacks, OKLCH below) ---------- */
.ay-root {
	--ay-primary: #24312b;
	--ay-primary-rgb: 36, 49, 43;
	--ay-on-primary: #f4f8f6;
	--ay-ink: #1f2622;
	--ay-ink-2: #4d5550;
	--ay-ink-3: #616864;
	--ay-line: rgba(37, 49, 42, .1);
	--ay-line-2: rgba(37, 49, 42, .16);
	--ay-glass: rgba(248, 251, 249, .62);
	--ay-glass-solid: #f5f8f6;
	--ay-surface: rgba(252, 254, 253, .72);
	--ay-field: rgba(252, 254, 253, .9);
	--ay-edge: rgba(252, 254, 253, .62);
	--ay-sheen: rgba(252, 254, 253, .5);
	--ay-err: #b33830;
	--ay-err-bg: #ffece9;
	--ay-err-line: rgba(179, 56, 48, .18);
	--ay-shadow-sm: 0 1px 2px rgba(20, 38, 29, .06);
	--ay-shadow-panel: 0 0 0 1px rgba(20, 38, 29, .07), 0 1px 2px rgba(20, 38, 29, .05), 0 14px 32px -12px rgba(20, 38, 29, .2), 0 40px 80px -28px rgba(20, 38, 29, .26);
	--ay-shadow-launch: 0 1px 2px rgba(20, 38, 29, .22), 0 10px 24px -8px rgba(20, 38, 29, .42);
	--ay-shadow-field: 0 1px 2px rgba(20, 38, 29, .05), 0 8px 20px -14px rgba(20, 38, 29, .28);
	--ay-scrim: rgba(20, 38, 29, .28);
	--ay-ease: cubic-bezier(.16, 1, .3, 1);
	--ay-ease-in: cubic-bezier(.7, 0, .84, 0);
	--ay-ease-io: cubic-bezier(.65, 0, .35, 1);
	--ay-z: 99990;
	--ay-gap: 24px;
	--ay-radius: 26px;

	font-family: var(--ay-font);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: normal;
	text-align: right;
	text-transform: none;
	color: var(--ay-ink);
	direction: rtl;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-tap-highlight-color: transparent;
}

@supports (color: oklch(0 0 0)) {
	.ay-root {
		--ay-ink: oklch(0.26 0.012 160);
		--ay-ink-2: oklch(0.44 0.012 160);
		--ay-ink-3: oklch(0.51 0.01 160);
		--ay-line: oklch(0.3 0.02 160 / .1);
		--ay-line-2: oklch(0.3 0.02 160 / .16);
		--ay-glass: oklch(0.985 0.004 160 / .62);
		--ay-glass-solid: oklch(0.975 0.005 160);
		--ay-surface: oklch(0.995 0.003 160 / .72);
		--ay-field: oklch(0.995 0.003 160 / .9);
		--ay-edge: oklch(0.995 0.003 160 / .62);
		--ay-sheen: oklch(0.995 0.003 160 / .5);
		--ay-err: oklch(0.52 0.16 28);
		--ay-err-bg: oklch(0.96 0.025 28);
		--ay-err-line: oklch(0.52 0.16 28 / .18);
		--ay-shadow-sm: 0 1px 2px oklch(0.25 0.03 160 / .06);
		--ay-shadow-panel: 0 0 0 1px oklch(0.25 0.03 160 / .07), 0 1px 2px oklch(0.25 0.03 160 / .05), 0 14px 32px -12px oklch(0.25 0.03 160 / .2), 0 40px 80px -28px oklch(0.25 0.03 160 / .26);
		--ay-shadow-launch: 0 1px 2px oklch(0.25 0.03 160 / .22), 0 10px 24px -8px oklch(0.25 0.03 160 / .42);
		--ay-shadow-field: 0 1px 2px oklch(0.25 0.03 160 / .05), 0 8px 20px -14px oklch(0.25 0.03 160 / .28);
		--ay-scrim: oklch(0.25 0.03 160 / .28);
	}
}

/* ---------- Scoped reset: keep theme styles out ---------- */
.ay-root *,
.ay-root *::before,
.ay-root *::after {
	box-sizing: border-box;
}

/* :where() keeps this at (0,2,0) so component rules below always win. */
.ay-root .ay-panel :where(p, ul, ol, li, span, strong, small, a, header, form, label, section) {
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	font-family: inherit;
	letter-spacing: normal;
	text-transform: none;
	text-shadow: none;
	box-shadow: none;
}

.ay-root .ay-panel :where(ul, ol) {
	list-style: none;
}

.ay-root .ay-panel :where(a) {
	color: inherit;
	text-decoration: none;
}

.ay-root :is(.ay-launcher, .ay-icon-btn, .ay-send, .ay-chip, .ay-opt, .ay-retry) {
	-webkit-appearance: none;
	appearance: none;
	margin: 0;
	padding: 0;
	width: auto;
	height: auto;
	min-width: 0;
	min-height: 0;
	border: 0;
	border-radius: 0;
	background: none;
	box-shadow: none;
	color: inherit;
	font: inherit;
	line-height: inherit;
	letter-spacing: normal;
	text-align: inherit;
	text-decoration: none;
	text-shadow: none;
	text-transform: none;
	cursor: pointer;
	touch-action: manipulation;
}

.ay-root .ay-ico {
	display: block;
	flex: none;
	width: 20px;
	height: 20px;
	max-width: none;
	fill: none;
	stroke: currentColor;
	overflow: visible;
}

.ay-root [hidden] {
	display: none !important;
}

.ay-root .ay-sr {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.ay-root :focus-visible {
	outline: 2px solid var(--ay-primary);
	outline-offset: 2px;
}

/* ---------- Launcher ---------- */
.ay-root .ay-launcher {
	position: fixed;
	z-index: calc(var(--ay-z) + 1);
	bottom: var(--ay-gap);
	right: var(--ay-gap);
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--ay-primary);
	color: var(--ay-on-primary);
	box-shadow: var(--ay-shadow-launch), inset 0 1px 0 rgba(252, 254, 253, .14);
	transition: transform .3s var(--ay-ease), opacity .2s var(--ay-ease);
}

.ay-root.ay-pos-left .ay-launcher {
	right: auto;
	left: var(--ay-gap);
}

.ay-root .ay-launcher:hover {
	transform: translateY(-2px);
}

.ay-root .ay-launcher:active {
	transform: scale(.95);
}

.ay-root .ay-launcher:focus-visible {
	outline-offset: 4px;
}

.ay-root .ay-launcher .ay-ico {
	grid-area: 1 / 1;
	width: 24px;
	height: 24px;
	transition: opacity .2s var(--ay-ease), transform .45s var(--ay-ease);
}

.ay-root .ay-launcher .ay-i-close,
.ay-root.ay-open .ay-launcher .ay-i-chat {
	opacity: 0;
	transform: rotate(-80deg) scale(.6);
}

.ay-root.ay-open .ay-launcher .ay-i-close {
	opacity: 1;
	transform: none;
}

/* ---------- Panel: the glass ---------- */
.ay-root .ay-panel {
	position: relative;
	isolation: isolate;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--ay-edge);
	border-radius: var(--ay-radius);
	background: var(--ay-glass);
	-webkit-backdrop-filter: blur(24px) saturate(1.7);
	backdrop-filter: blur(24px) saturate(1.7);
	box-shadow: var(--ay-shadow-panel), inset 0 1px 0 var(--ay-edge);
	outline: 0;
}

.ay-root .ay-panel::before,
.ay-root .ay-panel::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	border-radius: inherit;
	pointer-events: none;
}

.ay-root .ay-panel::before {
	background: linear-gradient(165deg, var(--ay-sheen), transparent 42%);
}

.ay-root .ay-panel::after {
	opacity: .05;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .08 0 0 0 0 .15 0 0 0 0 .11 0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.ay-floating .ay-panel {
	position: fixed;
	z-index: var(--ay-z);
	bottom: calc(var(--ay-gap) + 68px);
	right: var(--ay-gap);
	width: 384px;
	max-width: calc(100vw - 32px);
	height: min(640px, calc(100vh - 124px));
	height: min(640px, calc(100dvh - 124px));
	opacity: 0;
	visibility: hidden;
	transform: translateY(14px) scale(.97);
	transform-origin: 100% 100%;
	transition: opacity .18s var(--ay-ease-in), transform .22s var(--ay-ease-in), visibility 0s linear .22s;
}

.ay-floating.ay-pos-left .ay-panel {
	right: auto;
	left: var(--ay-gap);
	transform-origin: 0 100%;
}

.ay-floating.ay-open .ay-panel {
	opacity: 1;
	visibility: visible;
	transform: none;
	transition: opacity .3s var(--ay-ease), transform .46s var(--ay-ease), visibility 0s;
}

.ay-root.ay-instant .ay-panel,
.ay-root.ay-instant .ay-launcher,
.ay-root.ay-instant .ay-launcher .ay-ico {
	transition: none !important;
}

.ay-inline {
	position: relative;
	margin-block: 24px;
}

.ay-inline .ay-panel {
	width: 100%;
	height: var(--ay-inline-h, 560px);
}

/* ---------- Header ---------- */
.ay-root .ay-head {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	padding-block: 14px 8px;
	padding-inline: 14px 10px;
}

.ay-root .ay-mark {
	display: grid;
	place-items: center;
	flex: none;
	width: 38px;
	height: 38px;
	border-radius: 12px;
	background: var(--ay-primary);
	color: var(--ay-on-primary);
	box-shadow: inset 0 1px 0 rgba(252, 254, 253, .16), var(--ay-shadow-sm);
}

.ay-root .ay-mark .ay-ico {
	width: 20px;
	height: 20px;
}

.ay-root .ay-head-text {
	display: grid;
	flex: 1;
	min-width: 0;
}

.ay-root .ay-name {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.45;
	color: var(--ay-ink);
}

.ay-root .ay-sub {
	overflow: hidden;
	font-size: 12px;
	line-height: 1.5;
	color: var(--ay-ink-3);
	white-space: nowrap;
	text-overflow: ellipsis;
}

.ay-root .ay-icon-btn {
	position: relative;
	display: grid;
	place-items: center;
	flex: none;
	width: 36px;
	height: 36px;
	border-radius: 12px;
	color: var(--ay-ink-2);
	transition: background-color .15s, color .15s;
}

.ay-root .ay-icon-btn::before {
	content: "";
	position: absolute;
	inset: -4px;
}

.ay-root .ay-icon-btn:hover {
	background: var(--ay-line);
	color: var(--ay-ink);
}

.ay-root .ay-icon-btn .ay-ico {
	width: 18px;
	height: 18px;
}

.ay-root .ay-close {
	margin-inline-start: -8px;
}

/* ---------- Conversation log ---------- */
.ay-root .ay-log {
	position: relative;
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 12px;
	min-height: 0;
	padding: 12px 16px 20px;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	scrollbar-width: thin;
	scrollbar-color: var(--ay-line-2) transparent;
	-webkit-mask-image: linear-gradient(to bottom, transparent, var(--ay-ink) 16px, var(--ay-ink) calc(100% - 16px), transparent);
	mask-image: linear-gradient(to bottom, transparent, var(--ay-ink) 16px, var(--ay-ink) calc(100% - 16px), transparent);
}

.ay-root .ay-log::-webkit-scrollbar {
	width: 6px;
}

.ay-root .ay-log::-webkit-scrollbar-thumb {
	border-radius: 6px;
	background: var(--ay-line-2);
}

/* Intro */
.ay-root .ay-intro {
	display: grid;
	gap: 6px;
	padding: 8px 2px 12px;
}

.ay-root .ay-intro-title {
	font-size: 19px;
	font-weight: 700;
	line-height: 1.5;
	color: var(--ay-ink);
	text-wrap: balance;
}

.ay-root .ay-intro-text {
	max-width: 36ch;
	font-size: 14px;
	line-height: 1.8;
	color: var(--ay-ink-2);
	text-wrap: pretty;
}

.ay-root .ay-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}

.ay-root .ay-chip {
	padding: 9px 14px;
	border: 1px solid var(--ay-line-2);
	border-radius: 999px;
	background: var(--ay-field);
	font-size: 13px;
	line-height: 20px;
	color: var(--ay-ink);
	transition: border-color .15s, background-color .15s, transform .25s var(--ay-ease);
}

.ay-root .ay-chip:hover {
	border-color: rgba(var(--ay-primary-rgb), .42);
}

.ay-root .ay-chip:active {
	transform: scale(.96);
}

/* Messages */
.ay-root .ay-msg {
	max-width: 100%;
	font-size: 15px;
	line-height: 1.7;
	overflow-wrap: anywhere;
}

.ay-root .ay-user {
	align-self: flex-end;
	max-width: 82%;
	padding: 9px 15px;
	border-radius: 18px 18px 18px 6px;
	background: var(--ay-primary);
	color: var(--ay-on-primary);
}

.ay-root .ay-bot {
	align-self: flex-start;
	padding: 12px 16px;
	border: 1px solid var(--ay-line);
	border-radius: 18px 6px 18px 18px;
	background: var(--ay-surface);
	color: var(--ay-ink-2);
	box-shadow: var(--ay-shadow-sm);
}

.ay-root .ay-bot.ay-wide,
.ay-root .ay-bot.ay-loading {
	align-self: stretch;
}

.ay-root .ay-wide {
	padding: 16px 16px 14px;
}

.ay-root .ay-bot > p + p,
.ay-root .ay-body > p + p {
	margin-top: 4px;
}

.ay-root .ay-msg strong {
	font-weight: 700;
	color: var(--ay-ink);
}

/* Answer */
.ay-root .ay-answer {
	display: grid;
	justify-items: start;
	gap: 6px;
}

.ay-root .ay-eyebrow {
	padding: 1px 9px;
	border-radius: 999px;
	background: var(--ay-line);
	font-size: 12px;
	font-weight: 600;
	line-height: 20px;
	color: var(--ay-ink-2);
	font-variant-numeric: tabular-nums;
}

.ay-root .ay-title {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.55;
	color: var(--ay-ink);
	text-wrap: balance;
	text-decoration: underline;
	text-decoration-color: transparent;
	text-decoration-thickness: 1px;
	text-underline-offset: 5px;
	transition: color .15s, text-decoration-color .15s;
}

.ay-root .ay-title .ay-ico {
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-inline-start: 5px;
	vertical-align: -1px;
	color: var(--ay-ink-3);
	transition: transform .35s var(--ay-ease), color .15s;
}

.ay-root .ay-title:hover {
	color: var(--ay-primary);
	text-decoration-color: rgba(var(--ay-primary-rgb), .4);
}

.ay-root .ay-title:hover .ay-ico {
	color: var(--ay-primary);
	transform: translate(-2px, -2px);
}

.ay-root .ay-body {
	display: grid;
	gap: 10px;
	justify-self: stretch;
	margin-top: 6px;
}

.ay-root .ay-lead {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.6;
	color: var(--ay-ink-3);
}

.ay-root .ay-prose {
	color: var(--ay-ink-2);
	text-wrap: pretty;
}

.ay-root .ay-note {
	padding: 8px 12px;
	border-radius: 12px;
	background: var(--ay-line);
	font-size: 14px;
	line-height: 1.75;
	color: var(--ay-ink-2);
}

.ay-root .ay-hint {
	margin-top: 4px;
	font-size: 13px;
	line-height: 1.7;
	color: var(--ay-ink-3);
}

.ay-root .ay-more a {
	font-size: 13px;
	font-weight: 600;
	color: var(--ay-primary);
	text-decoration: underline;
	text-decoration-color: rgba(var(--ay-primary-rgb), .3);
	text-underline-offset: 4px;
}

.ay-root .ay-more a:hover {
	text-decoration-color: currentColor;
}

/* Spec sheet: key/value rows first, plain items after */
.ay-root .ay-list {
	display: grid;
}

.ay-root .ay-list > li {
	position: relative;
	padding: 8px 0;
	font-size: 14px;
	line-height: 1.65;
	color: var(--ay-ink);
}

.ay-root .ay-list > li + li {
	border-top: 1px solid var(--ay-line);
}

.ay-root .ay-list > li:not(.ay-spec) {
	padding-inline-start: 16px;
}

.ay-root .ay-list > li:not(.ay-spec)::before {
	content: "";
	position: absolute;
	top: calc(8px + .825em - 2.5px);
	inset-inline-start: 2px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: rgba(var(--ay-primary-rgb), .42);
}

.ay-root .ay-list > li.ay-spec {
	display: grid;
	grid-template-columns: minmax(84px, 38%) 1fr;
	gap: 12px;
	align-items: baseline;
}

.ay-root .ay-list > li.ay-spec::before {
	content: none;
}

.ay-root .ay-k {
	font-size: 13px;
	color: var(--ay-ink-3);
}

.ay-root .ay-v {
	font-weight: 500;
	color: var(--ay-ink);
}

/* Options (several products matched) */
.ay-root .ay-opts {
	display: grid;
	gap: 6px;
	margin-top: 12px;
}

.ay-root .ay-opt {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 11px 14px;
	border: 1px solid var(--ay-line);
	border-radius: 14px;
	background: var(--ay-field);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.55;
	text-align: start;
	color: var(--ay-ink);
	transition: border-color .15s, transform .25s var(--ay-ease);
}

.ay-root .ay-opt:hover {
	border-color: rgba(var(--ay-primary-rgb), .38);
}

.ay-root .ay-opt:active {
	transform: scale(.985);
}

.ay-root .ay-opt-t {
	flex: 1;
	min-width: 0;
}

.ay-root .ay-opt .ay-ico {
	width: 16px;
	height: 16px;
	color: var(--ay-ink-3);
	transition: transform .35s var(--ay-ease), color .15s;
}

.ay-root .ay-opt:hover .ay-ico {
	color: var(--ay-primary);
	transform: translateX(-3px);
}

/* Loading skeleton */
.ay-root .ay-loading {
	display: grid;
	gap: 9px;
	animation: ay-fade .3s .12s var(--ay-ease) both;
}

.ay-root .ay-skel-cap {
	margin-bottom: 2px;
	font-size: 13px;
	line-height: 1.6;
	color: var(--ay-ink-3);
}

.ay-root .ay-skel {
	position: relative;
	display: block;
	width: var(--w, 100%);
	height: 10px;
	overflow: hidden;
	border-radius: 6px;
	background: var(--ay-line);
}

.ay-root .ay-skel::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, var(--ay-sheen), transparent);
	transform: translateX(100%);
	animation: ay-shimmer 1.3s var(--ay-ease-io) infinite;
}

/* Error */
.ay-root .ay-error {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 2px 12px;
	border-color: var(--ay-err-line);
	background: var(--ay-err-bg);
	font-size: 14px;
	color: var(--ay-err);
}

.ay-root .ay-retry {
	position: relative;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.ay-root .ay-retry::before {
	content: "";
	position: absolute;
	inset: -10px -6px;
}

/* ---------- Composer ---------- */
.ay-root .ay-form {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 2px 12px 12px;
	padding: 4px;
	padding-inline-start: 18px;
	border: 1px solid var(--ay-line-2);
	border-radius: 999px;
	background: var(--ay-field);
	box-shadow: var(--ay-shadow-field);
	transition: border-color .2s, box-shadow .2s;
}

.ay-root .ay-form:focus-within {
	border-color: rgba(var(--ay-primary-rgb), .5);
	box-shadow: 0 0 0 4px rgba(var(--ay-primary-rgb), .1), var(--ay-shadow-field);
}

.ay-root .ay-input,
.ay-root .ay-input:hover,
.ay-root .ay-input:focus,
.ay-root .ay-input:focus-visible {
	flex: 1;
	width: auto;
	min-width: 0;
	height: 42px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	outline: 0;
	background: transparent;
	box-shadow: none;
	font: inherit;
	font-size: 16px;
	line-height: 42px;
	color: var(--ay-ink);
	text-align: right;
}

.ay-root .ay-input::placeholder {
	color: var(--ay-ink-3);
	opacity: 1;
}

.ay-root .ay-send {
	display: grid;
	place-items: center;
	flex: none;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--ay-primary);
	color: var(--ay-on-primary);
	transition: opacity .15s, transform .25s var(--ay-ease);
}

.ay-root .ay-send .ay-ico {
	width: 18px;
	height: 18px;
}

.ay-root .ay-send:disabled {
	opacity: .28;
	cursor: default;
}

.ay-root .ay-send:not(:disabled):hover {
	transform: translateY(-1px);
}

.ay-root .ay-send:not(:disabled):active {
	transform: scale(.93);
}

/* ---------- Motion ---------- */
.ay-root .ay-in {
	animation: ay-rise .5s var(--ay-ease) both;
}

.ay-root .ay-in .ay-chip,
.ay-root .ay-in .ay-opt {
	animation: ay-rise .5s var(--ay-ease) both;
	animation-delay: calc(var(--i, 0) * 45ms + 90ms);
}

@keyframes ay-rise {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
}

@keyframes ay-fade {
	from {
		opacity: 0;
	}
}

@keyframes ay-shimmer {
	to {
		transform: translateX(-100%);
	}
}

/* ---------- Small screens: bottom sheet ---------- */
@media (max-width: 560px) {
	.ay-floating {
		--ay-gap: 16px;
	}

	.ay-floating::before {
		content: "";
		position: fixed;
		inset: 0;
		z-index: calc(var(--ay-z) - 1);
		background: var(--ay-scrim);
		opacity: 0;
		visibility: hidden;
		transition: opacity .2s var(--ay-ease), visibility 0s linear .2s;
	}

	.ay-floating.ay-open::before {
		opacity: 1;
		visibility: visible;
		transition: opacity .35s var(--ay-ease), visibility 0s;
	}

	.ay-floating .ay-panel,
	.ay-floating.ay-pos-left .ay-panel {
		right: 0;
		left: 0;
		bottom: 0;
		width: auto;
		max-width: none;
		height: calc(100vh - 40px);
		height: calc(100dvh - 40px);
		border-bottom: 0;
		border-radius: 24px 24px 0 0;
		transform: translateY(28px);
		transform-origin: 50% 100%;
	}

	.ay-floating .ay-form {
		margin-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
	}

	.ay-floating.ay-open .ay-launcher {
		opacity: 0;
		transform: scale(.8);
		pointer-events: none;
	}
}

/* ---------- Preferences and fallbacks ---------- */
@media (prefers-reduced-motion: reduce) {
	.ay-root *,
	.ay-root *::before,
	.ay-root *::after {
		animation-duration: .01ms !important;
		animation-delay: 0s !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
		scroll-behavior: auto !important;
	}

	.ay-floating .ay-panel {
		transform: none !important;
	}
}

@media (prefers-reduced-transparency: reduce) {
	.ay-root .ay-panel {
		background: var(--ay-glass-solid);
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
	}
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
	.ay-root .ay-panel {
		background: var(--ay-glass-solid);
	}
}

@media print {
	.ay-floating {
		display: none !important;
	}
}
