.zoowai-command-deck {
	--command-ink: #0a2e54;
	--command-muted: rgba(16, 53, 85, 0.68);
	--command-line: rgba(111, 178, 224, 0.46);
	--command-glass: rgba(241, 249, 255, 0.72);
	--command-glass-strong: rgba(246, 252, 255, 0.88);
	--command-blue: #299de4;
	--command-depth-edge: rgba(255, 255, 255, 0.88);
	--command-depth-seam: rgba(63, 137, 185, 0.24);
	--command-depth-contact: 0 24px 48px rgba(20, 74, 111, 0.18);
	--command-depth-lift: 4px;
	--command-depth-lip: 2px;
	position: relative;
	z-index: 5;
	min-height: 0;
	padding: clamp(104px, 10vh, 132px) 34px 92px;
	color: var(--command-ink);
	overflow: clip;
}

.zoowai-command-deck,
.zoowai-command-deck * {
	box-sizing: border-box;
}

.zoowai-command-shell {
	position: relative;
	width: min(100%, 1640px);
	margin: 0 auto;
	padding: 20px 26px 22px;
	border: 1px solid rgba(255, 255, 255, 0.66);
	border-radius: 34px;
	background: linear-gradient(145deg, rgba(247, 252, 255, 0.32), rgba(214, 238, 252, 0.2));
	box-shadow: var(--command-depth-contact), 0 4px 10px rgba(33, 91, 130, 0.09), inset 0 1px 0 var(--command-depth-edge), inset 0 -2px 0 var(--command-depth-seam);
	backdrop-filter: blur(7px) saturate(1.05);
	-webkit-backdrop-filter: blur(7px) saturate(1.05);
	isolation: isolate;
}

.zoowai-command-shell::before {
	content: "";
	position: absolute;
	inset: 9px;
	z-index: 0;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 26px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), inset 0 -1px 0 rgba(45, 121, 170, 0.18);
	pointer-events: none;
}

.zoowai-command-stage {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(150px, 0.16fr) minmax(640px, 1fr) minmax(150px, 0.16fr);
	gap: clamp(16px, 1.55vw, 24px);
	align-items: stretch;
	min-width: 0;
	perspective: 1800px;
	perspective-origin: 50% 42%;
}

.zoowai-command-mobile-notes { display: none; }

.zoowai-command-switch-panel {
	--switch-rotate: 0deg;
	position: relative;
	z-index: 0;
	display: grid;
	grid-template-rows: minmax(118px, 1fr) auto minmax(132px, 1.08fr);
	align-items: stretch;
	min-width: 0;
	min-height: 484px;
	margin: 28px 0;
	padding: 16px 14px 18px;
	overflow: visible;
	border: 0;
	border-radius: 28px;
	background: transparent;
	box-shadow: none;
	color: var(--command-ink);
	font: inherit;
	text-align: left;
	cursor: pointer;
	transform: none;
	isolation: isolate;
}

.zoowai-command-switch-panel::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	border: 1px solid rgba(99, 170, 218, 0.52);
	border-radius: inherit;
	background: linear-gradient(155deg, rgba(246, 252, 255, 0.77), rgba(210, 236, 251, 0.56));
	box-shadow: 0 22px 54px rgba(29, 93, 138, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(14px) saturate(1.08);
	-webkit-backdrop-filter: blur(14px) saturate(1.08);
	transform: rotateY(var(--switch-rotate));
	transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
	pointer-events: none;
}

.zoowai-command-switch-panel > * {
	position: relative;
	z-index: 1;
}

.zoowai-command-switch-panel--previous {
	--switch-rotate: 3deg;
	transform: none;
}

.zoowai-command-switch-panel--next {
	--switch-rotate: -3deg;
	transform: none;
}

.zoowai-command-switch-panel--previous::before {
	transform-origin: right center;
}

.zoowai-command-switch-panel--next::before {
	transform-origin: left center;
}

.zoowai-command-switch-panel:hover::before,
.zoowai-command-switch-panel:focus-visible::before {
	border-color: rgba(42, 154, 220, 0.74);
	box-shadow: 0 28px 62px rgba(27, 101, 153, 0.19), 0 5px 9px rgba(35, 91, 128, 0.1), inset 0 1px 0 #fff, inset 0 -2px 0 rgba(54, 132, 181, 0.2);
}

.zoowai-command-switch-panel--previous:hover::before,
.zoowai-command-switch-panel--next:hover::before,
.zoowai-command-switch-panel--previous:focus-visible::before,
.zoowai-command-switch-panel--next:focus-visible::before {
	transform: translateY(calc(var(--command-depth-lift) * -1)) rotateY(var(--switch-rotate));
}

.zoowai-command-switch-panel:active::before {
	box-shadow: 0 13px 30px rgba(29, 93, 138, 0.13), inset 0 2px 5px rgba(39, 93, 131, 0.1), inset 0 -1px 0 rgba(255, 255, 255, 0.8);
	transform: translateY(1px) rotateY(var(--switch-rotate));
}

.zoowai-command-switch-direction {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 60px;
	margin: 12px 0;
	padding: 5px 8px;
	border: 1px solid rgba(84, 153, 200, 0.2);
	border-radius: 999px;
	background: rgba(170, 210, 234, 0.2);
	box-shadow: inset 0 3px 9px rgba(32, 91, 130, 0.15), inset 0 -1px 0 rgba(255, 255, 255, 0.78);
}

.zoowai-command-switch-direction > .dashicons {
	display: grid;
	place-items: center;
	flex: 0 0 60px;
	width: 60px;
	height: 60px;
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	background: rgba(250, 253, 255, 0.82);
	box-shadow: inset 0 1px 0 #fff, inset 0 -2px 0 rgba(56, 126, 173, 0.2), 0 9px 18px rgba(29, 96, 144, 0.2), 0 2px 4px rgba(32, 87, 124, 0.12);
	font-size: 28px;
	transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.zoowai-command-switch-panel:hover .zoowai-command-switch-direction > .dashicons,
.zoowai-command-switch-panel:focus-visible .zoowai-command-switch-direction > .dashicons {
	background-color: #fff;
	box-shadow: inset 0 1px 0 #fff, inset 0 -2px 0 rgba(56, 126, 173, 0.22), 0 12px 24px rgba(29, 96, 144, 0.24), 0 3px 6px rgba(32, 87, 124, 0.14);
	transform: translateY(-2px);
}

.zoowai-command-switch-panel:active .zoowai-command-switch-direction > .dashicons {
	box-shadow: inset 0 2px 5px rgba(39, 93, 131, 0.14), inset 0 -1px 0 rgba(255, 255, 255, 0.72), 0 4px 9px rgba(29, 96, 144, 0.15);
	transform: translateY(1px);
}

.zoowai-command-switch-direction small {
	color: rgba(20, 73, 111, 0.5);
	font-size: 8px;
	font-weight: 850;
	letter-spacing: 0.12em;
	line-height: 1.25;
}

.zoowai-command-switch-copy {
	display: flex;
	min-width: 0;
	min-height: 0;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding: 8px 5px;
	overflow: hidden;
	text-align: center;
}

.zoowai-command-switch-copy--top {
	justify-content: flex-end;
	padding-bottom: 16px;
}

.zoowai-command-switch-copy--bottom {
	padding-top: 16px;
}

.zoowai-command-switch-overline,
.zoowai-command-switch-cue {
	display: block;
	color: rgba(18, 116, 173, 0.58);
	font-weight: 850;
	letter-spacing: 0.13em;
	line-height: 1.35;
}

.zoowai-command-switch-overline {
	margin-bottom: 10px;
	font-size: 8.5px;
}

.zoowai-command-switch-cue {
	margin-top: auto;
	padding-top: 12px;
	font-size: 8.5px;
}

.zoowai-command-switch-copy > strong {
	display: block;
	margin: 0 0 10px;
	font-size: clamp(18px, 1.35vw, 24px);
	font-weight: 850;
	letter-spacing: -0.02em;
	line-height: 1.2;
	overflow-wrap: anywhere;
}

.zoowai-command-switch-copy--top > strong {
	margin-bottom: 0;
}

.zoowai-command-switch-copy > span {
	display: -webkit-box;
	min-height: 0;
	overflow: hidden;
	color: var(--command-muted);
	font-size: 13px;
	font-weight: 560;
	line-height: 1.58;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 6;
	overflow-wrap: break-word;
}

.zoowai-command-model {
	position: relative;
	min-width: 0;
	min-height: 540px;
	overflow: hidden;
	border: 1px solid rgba(104, 177, 225, 0.6);
	border-radius: 34px;
	background: linear-gradient(145deg, rgba(246, 252, 255, 0.76), rgba(198, 231, 250, 0.54));
	box-shadow: 0 30px 64px rgba(26, 91, 137, 0.2), 0 5px 11px rgba(37, 93, 130, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.95), inset 0 -2px 0 rgba(58, 139, 190, 0.23);
	isolation: isolate;
}

.zoowai-command-model::before {
	content: "";
	position: absolute;
	inset: 11px;
	z-index: 0;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 26px;
	pointer-events: none;
}

.zoowai-command-model-hud {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

.zoowai-command-model-hud i {
	position: absolute;
	border: 1px solid rgba(93, 180, 229, 0.24);
	border-radius: 50%;
}

.zoowai-command-model-hud i:nth-child(1) { width: 330px; height: 330px; left: 50%; top: 48%; transform: translate(-50%, -50%); }
.zoowai-command-model-hud i:nth-child(2) { width: 420px; height: 170px; left: 50%; top: 58%; transform: translate(-50%, -50%) rotate(-7deg); }
.zoowai-command-model-hud i:nth-child(3) { width: 11px; height: 11px; right: 28px; top: 26px; background: rgba(60, 182, 241, 0.72); box-shadow: 0 0 18px rgba(60, 182, 241, 0.7); }

.zoowai-command-model-viewport {
	position: absolute;
	inset: 0 0 150px;
	z-index: 2;
	overflow: hidden;
}

.zoowai-command-model-viewport::before {
	content: "";
	position: absolute;
	inset: 10px 10px 0;
	z-index: 2;
	border: 1px solid rgba(255, 255, 255, 0.56);
	border-radius: 25px 25px 18px 18px;
	box-shadow: inset 0 4px 11px rgba(37, 97, 136, 0.17), inset 0 -1px 0 rgba(255, 255, 255, 0.64), 0 1px 0 rgba(255, 255, 255, 0.56);
	pointer-events: none;
}

.zoowai-command-model-poster,
.zoowai-command-model-viewer {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	object-fit: cover;
}

.zoowai-command-model-poster {
	z-index: 0;
	opacity: 0.84;
	filter: saturate(0.92) contrast(0.96);
	transition: opacity 320ms ease;
}

.zoowai-command-model-viewer {
	z-index: 1;
	background: transparent;
	opacity: 0;
	visibility: hidden;
	--poster-color: transparent;
	--progress-bar-color: rgba(31, 151, 219, 0.72);
	transition: opacity 220ms ease;
}

.zoowai-command-model[data-model-state="loaded"] .zoowai-command-model-viewer {
	opacity: 1;
	visibility: visible;
}

.zoowai-command-model[data-model-state="loaded"] .zoowai-command-model-poster {
	opacity: 0.04;
}

.zoowai-command-model[data-active-model="plantbot"][data-model-state="loaded"] .zoowai-command-model-poster {
	opacity: 0.12;
}

.zoowai-command-model-status {
	position: absolute;
	left: 50%;
	bottom: 18px;
	z-index: 3;
	max-width: calc(100% - 40px);
	padding: 7px 12px;
	border: 1px solid rgba(86, 165, 214, 0.26);
	border-radius: 999px;
	background: rgba(245, 251, 255, 0.76);
	color: var(--command-muted);
	font-size: 9px;
	font-weight: 700;
	line-height: 1.2;
	transform: translateX(-50%);
}

.zoowai-command-model[data-model-state="loaded"] .zoowai-command-model-status:empty {
	display: none;
}

.zoowai-command-model-heading {
	position: absolute;
	left: 28px;
	top: 24px;
	z-index: 3;
	margin: 0;
	padding: 8px 13px;
	border: 1px solid rgba(255, 255, 255, .82);
	border-radius: 13px;
	background: linear-gradient(145deg, rgba(255, 255, 255, .52), rgba(210, 238, 255, .22));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .96), inset 0 -2px 0 rgba(71, 151, 202, .2), 0 14px 24px rgba(18, 76, 116, .18), 0 3px 6px rgba(33, 89, 125, .1);
	backdrop-filter: blur(18px) saturate(155%);
	-webkit-backdrop-filter: blur(18px) saturate(155%);
	color: var(--command-ink);
	font-size: clamp(22px, 2vw, 31px);
	font-weight: 880;
	letter-spacing: -.045em;
	line-height: 1;
	pointer-events: none;
}

.zoowai-command-model-copy {
	position: absolute;
	left: 28px;
	right: 28px;
	bottom: 26px;
	z-index: 4;
	min-height: 116px;
	padding: 13px 16px 15px;
	border: 1px solid rgba(255, 255, 255, .78);
	border-radius: 20px;
	background: rgba(242, 250, 255, .82);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .94), inset 0 -2px 0 rgba(66, 145, 195, .2), 0 18px 31px rgba(25, 82, 122, .15), 0 4px 8px rgba(31, 83, 117, .09);
	backdrop-filter: blur(13px);
	-webkit-backdrop-filter: blur(13px);
}

.zoowai-command-model-actions {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr) 58px;
	align-items: end;
	gap: clamp(12px, 2vw, 28px);
	width: 100%;
}

.zoowai-command-model-switch {
	display: none;
}

.zoowai-command-model-action--details {
	grid-column: 1;
	grid-row: 1;
}

.zoowai-command-model-copy-center {
	grid-column: 2;
	grid-row: 1;
}

.zoowai-command-model-action--buy {
	grid-column: 3;
	grid-row: 1;
}

.zoowai-command-model-copy-center {
	display: grid;
	min-width: 0;
	justify-items: center;
	gap: 5px;
	text-align: center;
}

.zoowai-command-model-copy-center p {
	margin: 0;
	color: #1c91d3;
	font-size: 10px;
	font-weight: 850;
	letter-spacing: .08em;
	white-space: nowrap;
}

.zoowai-command-model-copy-center h2 {
	max-width: 100%;
	margin: 0;
	font-size: clamp(21px, 1.8vw, 30px);
	font-weight: 860;
	letter-spacing: -.04em;
	line-height: 1.08;
	word-break: keep-all;
}

.zoowai-command-model-copy-center > span {
	display: -webkit-box;
	overflow: hidden;
	max-width: 820px;
	color: var(--command-muted);
	font-size: 11px;
	font-weight: 560;
	line-height: 1.45;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow-wrap: anywhere;
}

.zoowai-command-model-action {
	display: grid;
	width: 58px;
	min-width: 58px;
	height: 58px;
	padding: 6px;
	place-items: center;
	border: 1px solid rgba(65, 149, 210, .5);
	border-radius: 12px;
	background-color: #fafdff;
	color: var(--command-ink);
	cursor: pointer;
	font-size: 11px;
	font-weight: 820;
	line-height: 1;
	text-decoration: none;
	transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease, color 220ms ease;
	box-shadow: inset 0 1px 0 #fff, inset 0 -2px 0 rgba(52, 126, 177, .2), 0 8px 16px rgba(24, 105, 159, .14);
}

.zoowai-command-model-action--buy {
	justify-self: end;
	border-color: rgba(23, 132, 211, .74);
	background-color: #0f78c8;
	color: #fff;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .36), inset 0 -2px 0 rgba(4, 67, 112, .36), 0 9px 18px rgba(27, 139, 202, .25);
}

@media (hover: hover) and (pointer: fine) {
	.zoowai-command-model-action:hover {
		border-color: rgba(32, 132, 197, .78);
		background-color: #eef9ff;
		box-shadow: 0 12px 24px rgba(24, 105, 159, .2);
		color: #075b92;
		transform: translateY(-3px) scale(1.04);
	}

	.zoowai-command-model-action--buy:hover {
		background-color: #0b69b7;
		color: #fff;
		transform: translateY(-3px) scale(1.04);
	}
}

.zoowai-command-model-action:focus-visible {
	border-color: rgba(7, 116, 189, .9);
	background-color: #eef9ff;
	box-shadow: 0 0 0 4px rgba(24, 143, 214, .18), 0 12px 24px rgba(24, 105, 159, .2);
	color: #075b92;
	transform: translateY(-2px) scale(1.03);
}

.zoowai-command-model-action--buy:focus-visible {
	background-color: #0a64af;
	color: #fff;
}

.zoowai-command-model-action:active {
	box-shadow: 0 5px 12px rgba(24, 105, 159, .16);
	transform: translateY(1px) scale(.98);
}

.zoowai-command-model-switch:focus-visible .dashicons {
	background-color: #fff;
	box-shadow: inset 0 1px 0 #fff, 0 0 0 3px rgba(24, 143, 214, 0.2), 0 9px 18px rgba(29, 96, 144, 0.2);
}

.zoowai-command-model-switch:active .dashicons {
	box-shadow: inset 0 2px 5px rgba(39, 93, 131, 0.14), 0 4px 9px rgba(29, 96, 144, 0.14);
	transform: translateY(1px);
}

@media (prefers-reduced-motion: reduce) {
	.zoowai-command-model-switch:focus-visible .dashicons,
	.zoowai-command-model-switch:active .dashicons {
		transform: none !important;
	}
}

.zoowai-command-progress {
	position: absolute;
	left: 26px;
	right: 26px;
	bottom: 13px;
	z-index: 5;
	height: 3px;
	overflow: hidden;
	border-radius: 999px;
	background: rgba(99, 153, 190, 0.22);
	box-shadow: inset 0 1px 3px rgba(31, 83, 119, 0.28), 0 1px 0 rgba(255, 255, 255, 0.64);
}

.zoowai-command-progress span {
	display: block;
	width: var(--command-progress, 0%);
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, #63c8f4, #1c8bd8);
	box-shadow: 0 0 12px rgba(41, 158, 226, 0.5);
}

.zoowai-command-products {
	position: relative;
	z-index: 1;
	margin-top: 22px;
}

.zoowai-command-products-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
	margin: 0 4px 10px;
}

.zoowai-command-products-heading p,
.zoowai-command-products-heading h2 {
	margin: 0;
}

.zoowai-command-products-heading p {
	color: #1788c9;
	font-size: 9px;
	font-weight: 850;
	letter-spacing: 0.12em;
}

.zoowai-command-products-heading h2 {
	margin-top: 3px;
	font-size: clamp(19px, 1.5vw, 25px);
	font-weight: 850;
	letter-spacing: -0.03em;
}

.zoowai-command-products-heading > span {
	max-width: 520px;
	color: var(--command-muted);
	font-size: 10px;
	font-weight: 600;
	line-height: 1.45;
	text-align: right;
}

.zoowai-command-product-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(14px, 1.65vw, 26px);
}

.zoowai-command-product-card {
	--card-depth: 14px;
	--card-half-depth: 7px;
	--card-shadow-x: 0px;
	--card-shadow-y: 14px;
	position: relative;
	min-width: 0;
	aspect-ratio: 3 / 4;
	outline: none;
	perspective: 1320px;
	touch-action: pan-y;
	cursor: grab;
	user-select: none;
	-webkit-user-select: none;
	isolation: isolate;
}

.zoowai-command-product-card::before {
	content: "";
	position: absolute;
	inset: 5px 4px -7px;
	z-index: 0;
	border: 1px solid rgba(104, 169, 211, 0.34);
	border-radius: 28px;
	background: linear-gradient(145deg, rgba(241, 249, 254, 0.72), rgba(174, 210, 233, 0.34));
	box-shadow: 0 22px 34px rgba(18, 75, 113, 0.22), 0 6px 10px rgba(27, 81, 117, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.88), inset 0 -2px 0 rgba(55, 129, 178, 0.22);
	transform: translateY(7px);
	transition: box-shadow 180ms ease, transform 180ms ease;
	pointer-events: none;
}

.zoowai-command-product-card.is-dragging {
	cursor: grabbing;
}

.zoowai-command-product-card-rotor {
	--card-rotate-x: 0deg;
	--card-rotate-y: 0deg;
	--card-hover-x: 0deg;
	--card-hover-y: 0deg;
	position: absolute;
	inset: 0;
	z-index: 1;
	transform: none;
	transform-style: flat;
	will-change: auto;
	transition: transform 220ms cubic-bezier(0.2, 0.72, 0.25, 1);
}

.zoowai-command-product-card.is-flat-commit .zoowai-command-product-card-rotor {
	transition: none;
}

@media (hover: hover) and (pointer: fine) {
	.zoowai-command-product-card.is-hovering .zoowai-command-product-card-rotor {
		transform: rotateX(var(--card-hover-x)) rotateY(var(--card-hover-y));
		transform-style: flat;
		will-change: transform;
		transition-duration: 140ms;
	}

	.zoowai-command-product-card.is-hovering::before {
		box-shadow: 0 27px 40px rgba(18, 75, 113, 0.25), 0 7px 12px rgba(27, 81, 117, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.9), inset 0 -2px 0 rgba(55, 129, 178, 0.24);
		transform: translateY(9px);
	}
}

.zoowai-command-product-card.is-dragging .zoowai-command-product-card-rotor,
.zoowai-command-product-card.is-settling .zoowai-command-product-card-rotor {
	transform: rotateX(var(--card-rotate-x)) rotateY(var(--card-rotate-y));
	transform-style: preserve-3d;
	will-change: transform;
	transition: none;
}

.zoowai-command-product-card-rotor::before {
	content: "";
	position: absolute;
	top: calc(7% + var(--card-shadow-y));
	right: calc(5% - var(--card-shadow-x));
	bottom: calc(2% - var(--card-shadow-y));
	left: calc(5% + var(--card-shadow-x));
	z-index: -2;
	border-radius: 32px;
	background: rgba(18, 75, 113, 0.24);
	filter: blur(18px);
	opacity: 0.72;
	transform: none;
	transition: transform 180ms ease, opacity 180ms ease;
}

.zoowai-command-product-card.is-dragging .zoowai-command-product-card-rotor::before,
.zoowai-command-product-card.is-settling .zoowai-command-product-card-rotor::before {
	top: 7%;
	right: 5%;
	bottom: 2%;
	left: 5%;
	transform: translate3d(var(--card-shadow-x), var(--card-shadow-y), calc(var(--card-depth) * -1.8));
}

.zoowai-command-product-card.is-hovering .zoowai-command-product-card-rotor::before {
	opacity: 0.9;
}

.zoowai-command-product-card-core {
	position: absolute;
	inset: 2px;
	z-index: -1;
	border-radius: 24px;
	background: linear-gradient(135deg, #d9edf8 0%, #f7fcff 48%, #b9d8ea 100%);
	box-shadow: inset 0 0 0 1px rgba(70, 143, 190, 0.36);
	transform: translateZ(0);
	visibility: hidden;
}

.zoowai-command-product-card-edge {
	position: absolute;
	z-index: 3;
	display: block;
	background: linear-gradient(90deg, #a9cbdf 0%, #f8fdff 46%, #8fb9d2 100%);
	box-shadow: inset 0 0 0 1px rgba(67, 132, 174, 0.34);
	backface-visibility: visible;
	visibility: hidden;
}

.zoowai-command-product-card-edge--left,
.zoowai-command-product-card-edge--right {
	top: 22px;
	bottom: 22px;
	width: var(--card-depth);
}

.zoowai-command-product-card-edge--left {
	left: 0;
	transform: translateX(-50%) rotateY(90deg);
}

.zoowai-command-product-card-edge--right {
	right: 0;
	transform: translateX(50%) rotateY(90deg);
}

.zoowai-command-product-card-edge--top,
.zoowai-command-product-card-edge--bottom {
	left: 22px;
	right: 22px;
	height: var(--card-depth);
}

.zoowai-command-product-card-edge--top {
	top: 0;
	transform: translateY(-50%) rotateX(90deg);
}

.zoowai-command-product-card-edge--bottom {
	bottom: 0;
	transform: translateY(50%) rotateX(90deg);
}

.zoowai-command-product-card-face {
	position: absolute;
	inset: 0;
	overflow: hidden;
	border: 1px solid rgba(106, 171, 215, 0.58);
	border-radius: 25px;
	background: rgba(227, 242, 251, 0.94);
	box-shadow: 0 18px 34px rgba(23, 78, 117, 0.16), 0 4px 8px rgba(30, 82, 116, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.98), inset 0 -2px 0 rgba(52, 128, 178, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.42);
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	transform: none;
	visibility: hidden;
}

.zoowai-command-product-card[data-card-side="front"] .zoowai-command-product-card-front,
.zoowai-command-product-card[data-card-side="back"] .zoowai-command-product-card-back {
	transform: none;
	visibility: visible;
}

.zoowai-command-product-card[data-card-side="front"] .zoowai-command-product-card-back,
.zoowai-command-product-card[data-card-side="back"] .zoowai-command-product-card-front {
	pointer-events: none;
	visibility: hidden;
}

.zoowai-command-product-card.is-dragging .zoowai-command-product-card-core,
.zoowai-command-product-card.is-dragging .zoowai-command-product-card-edge,
.zoowai-command-product-card.is-settling .zoowai-command-product-card-core,
.zoowai-command-product-card.is-settling .zoowai-command-product-card-edge {
	visibility: visible;
}

.zoowai-command-product-card.is-dragging .zoowai-command-product-card-front,
.zoowai-command-product-card.is-settling .zoowai-command-product-card-front {
	transform: translateZ(var(--card-half-depth));
	visibility: visible;
}

.zoowai-command-product-card.is-dragging .zoowai-command-product-card-back,
.zoowai-command-product-card.is-settling .zoowai-command-product-card-back {
	transform: rotateY(180deg) translateZ(var(--card-half-depth));
	visibility: visible;
}

.zoowai-command-product-card-media {
	position: absolute;
	inset: 0;
	overflow: hidden;
	background: #e7f4fb;
	pointer-events: none;
}

.zoowai-command-product-card-media::after {
	content: "";
	position: absolute;
	inset: 7px;
	z-index: 2;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 18px;
	box-shadow: inset 0 3px 8px rgba(31, 86, 122, 0.12), inset 0 -1px 0 rgba(255, 255, 255, 0.64);
	pointer-events: none;
}

.zoowai-command-product-card-media::before {
	content: "";
	position: absolute;
	inset: -9%;
	background: var(--card-art) center / cover no-repeat;
	filter: blur(18px) saturate(0.78) brightness(1.08);
	display: none;
	opacity: 0.34;
	transform: scale(1.08);
}

.zoowai-command-product-card-media picture,
.zoowai-command-product-card-media img {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}

.zoowai-command-product-card-media picture {
	z-index: 1;
	display: block;
	box-sizing: border-box;
	padding: 0;
}

.zoowai-command-product-card-media img {
	object-fit: cover;
	filter: none;
}

.zoowai-command-product-card-name {
	position: absolute;
	left: 12px;
	top: 12px;
	z-index: 5;
	max-width: calc(100% - 24px);
	overflow: hidden;
	padding: 8px 11px;
	border: 1px solid rgba(255, 255, 255, .8);
	border-radius: 11px;
	background: rgba(239, 248, 254, .82);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .96), inset 0 -2px 0 rgba(55, 126, 174, .2), 0 10px 18px rgba(18, 63, 95, .16), 0 2px 4px rgba(35, 82, 113, .09);
	color: var(--command-ink);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: -.02em;
	line-height: 1.2;
	text-overflow: ellipsis;
	white-space: nowrap;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.zoowai-command-product-card-footer {
	position: absolute;
	z-index: 5;
	left: 10px;
	right: 10px;
	bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 9px;
	min-height: 45px;
	padding: 7px 8px 7px 11px;
	border: 1px solid rgba(255, 255, 255, 0.78);
	border-radius: 14px;
	background: rgba(239, 248, 254, 0.78);
	box-shadow: 0 8px 20px rgba(18, 63, 95, 0.11);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.zoowai-command-product-card-footer > strong {
	min-width: 0;
	overflow: hidden;
	font-size: 13px;
	font-weight: 850;
	letter-spacing: -0.02em;
	line-height: 1.2;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.zoowai-command-product-card-actions {
	position: absolute;
	left: 10px;
	right: 10px;
	bottom: 10px;
	z-index: 5;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.zoowai-command-product-card[data-card-side="back"] .zoowai-command-product-card-actions {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.zoowai-command-product-card-actions a {
	display: grid;
	place-items: center;
	min-width: 0;
	height: 34px;
	padding: 0 10px;
	border: 1px solid rgba(81, 154, 204, 0.54);
	border-radius: 9px;
	background: rgba(250, 253, 255, 0.82);
	color: var(--command-ink);
	font-size: 10px;
	font-weight: 780;
	line-height: 1;
	text-decoration: none;
	box-shadow: inset 0 1px 0 #fff, inset 0 -2px 0 rgba(52, 126, 177, .2), 0 7px 13px rgba(24, 96, 143, .14);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.zoowai-command-product-card-actions a:first-child {
	border-color: rgba(24, 139, 206, 0.72);
	background: #168fd6;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .34), inset 0 -2px 0 rgba(4, 70, 116, .34), 0 8px 15px rgba(27, 139, 202, 0.24);
	color: #fff;
}

@media (hover: hover) and (pointer: fine) {
	.zoowai-command-product-card-actions a:hover {
		border-color: rgba(42, 142, 204, 0.78);
		background-color: #fff;
		box-shadow: inset 0 1px 0 #fff, inset 0 -2px 0 rgba(52, 126, 177, .22), 0 11px 18px rgba(24, 96, 143, .19);
		color: #075b92;
		transform: translateY(-2px);
	}

	.zoowai-command-product-card-actions a:first-child:hover {
		background-color: #0f7fc7;
		box-shadow: inset 0 1px 0 rgba(255, 255, 255, .36), inset 0 -2px 0 rgba(4, 70, 116, .38), 0 11px 19px rgba(27, 139, 202, .3);
		color: #fff;
	}
}

.zoowai-command-product-card-actions a:focus-visible {
	border-color: rgba(7, 116, 189, .9);
	box-shadow: inset 0 1px 0 #fff, inset 0 -2px 0 rgba(52, 126, 177, .22), 0 0 0 3px rgba(24, 143, 214, .2), 0 10px 18px rgba(24, 96, 143, .17);
	transform: translateY(-2px);
}

.zoowai-command-product-card-actions a:first-child:focus-visible {
	background-color: #0a64af;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .34), inset 0 -2px 0 rgba(4, 70, 116, .4), 0 0 0 3px rgba(24, 143, 214, .2), 0 10px 18px rgba(27, 139, 202, .27);
	color: #fff;
}

.zoowai-command-product-card-actions a:active {
	box-shadow: inset 0 2px 5px rgba(31, 83, 119, .14), inset 0 -1px 0 rgba(255, 255, 255, .68), 0 4px 8px rgba(24, 96, 143, .13);
	transform: translateY(1px);
}

.zoowai-command-product-card-back {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: clamp(18px, 1.8vw, 28px);
	background: linear-gradient(150deg, #f7fcff 0%, #e7f5fd 58%, #d9edf9 100%);
	color: #0a2e54;
}

.zoowai-command-product-card-back p,
.zoowai-command-product-card-back h3,
.zoowai-command-product-card-back span,
.zoowai-command-product-card-back small {
	margin: 0;
}

.zoowai-command-product-card-back p {
	color: #1689ca;
	font-size: 9px;
	font-weight: 850;
	letter-spacing: 0.13em;
}

.zoowai-command-product-card-back h3 {
	margin-top: 8px;
	font-size: clamp(20px, 1.7vw, 28px);
	font-weight: 860;
	letter-spacing: -0.04em;
	line-height: 1.05;
}

.zoowai-command-product-card-summary {
	margin-top: 12px;
	color: rgba(12, 49, 78, 0.76);
	font-size: 10px;
	font-weight: 570;
	line-height: 1.52;
	overflow-wrap: anywhere;
}

.zoowai-command-product-card-features {
	display: grid;
	gap: 8px;
	margin: 15px 0 0;
	padding: 0;
	list-style: none;
}

.zoowai-command-product-card-feature {
	display: grid;
	grid-template-columns: 24px minmax(0, 1fr);
	gap: 8px;
	align-items: start;
	padding-top: 8px;
	border-top: 1px solid rgba(72, 148, 197, 0.2);
}

.zoowai-command-product-card-feature > b {
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	border: 1px solid rgba(52, 154, 214, 0.3);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.72);
	color: #1689ca;
	font-size: 8px;
	line-height: 1;
}

.zoowai-command-product-card-feature > span {
	display: block;
	color: rgba(12, 49, 78, 0.67);
	font-size: 8.5px;
	font-weight: 560;
	line-height: 1.42;
}

.zoowai-command-product-card-feature strong {
	display: block;
	margin-bottom: 2px;
	color: #0a2e54;
	font-size: 10px;
	font-weight: 820;
	line-height: 1.22;
}

.zoowai-command-product-card-back small {
	margin-top: auto;
	padding-top: 10px;
	border-top: 1px solid rgba(94, 164, 210, 0.28);
	color: rgba(15, 63, 95, 0.5);
	font-size: 9px;
	line-height: 1.4;
}

.zoowai-command-product-card-locked-visual {
	position: absolute;
	inset: 0;
	display: grid;
	place-content: center;
	gap: 13px;
	background:
		linear-gradient(115deg, transparent 25%, rgba(255, 255, 255, 0.48) 48%, transparent 68%),
		linear-gradient(145deg, rgba(211, 226, 239, 0.96), rgba(178, 201, 221, 0.9));
	color: rgba(36, 79, 111, 0.46);
	text-align: center;
}

.zoowai-command-product-card-locked-visual .dashicons {
	width: auto;
	height: auto;
	font-size: 36px;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.66), 0 -1px 1px rgba(42, 91, 126, 0.2);
}

.zoowai-command-product-card-locked-visual i {
	font-size: 10px;
	font-style: normal;
	font-weight: 850;
	letter-spacing: 0.28em;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7), 0 -1px 1px rgba(42, 91, 126, 0.18);
}

.zoowai-command-product-card.is-locked .zoowai-command-product-card-footer {
	justify-content: center;
}

.zoowai-command-deck button:focus-visible,
.zoowai-command-deck a:focus-visible,
.zoowai-command-product-card:focus-visible {
	outline: 3px solid rgba(14, 139, 210, 0.5);
	outline-offset: 3px;
}

@media (max-width: 1280px) {
	.zoowai-command-deck { padding-inline: 22px; }
	.zoowai-command-shell { padding-inline: 20px; }
	.zoowai-command-stage { grid-template-columns: 136px minmax(480px, 1fr) 136px; gap: 16px; }
	.zoowai-command-switch-panel { min-height: 448px; margin-block: 26px; padding: 14px 11px 16px; }
	.zoowai-command-model { min-height: 500px; }
	.zoowai-command-product-grid { gap: 15px; }
	.zoowai-command-product-card-footer { align-items: stretch; flex-direction: column; }
	.zoowai-command-product-card-actions { align-self: flex-end; }
}

@media (max-width: 1024px) {
	.zoowai-command-deck { padding: 92px 18px 72px; }
	.zoowai-command-shell { padding: 20px 16px 22px; border-radius: 28px; }
	.zoowai-command-stage { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-areas: "model model" "previous next"; gap: 14px; perspective: none; }
	.zoowai-command-model { grid-area: model; }
	.zoowai-command-switch-panel { height: clamp(140px, 18vw, 170px); min-height: 140px; grid-template-rows: auto auto minmax(0, 1fr); margin: 0; padding: 12px 16px 14px; overflow: visible; border-radius: 22px; }
	.zoowai-command-switch-panel--previous { grid-area: previous; }
	.zoowai-command-switch-panel--next { grid-area: next; }
	.zoowai-command-switch-panel--previous,
	.zoowai-command-switch-panel--next { --switch-rotate: 0deg; transform: none; }
	.zoowai-command-switch-panel--previous::before,
	.zoowai-command-switch-panel--next::before { transform-origin: center; }
	.zoowai-command-switch-panel:hover::before,
	.zoowai-command-switch-panel:focus-visible::before { transform: translateY(-3px) rotateY(var(--switch-rotate)); }
	.zoowai-command-switch-copy { min-height: 0; overflow: visible; }
	.zoowai-command-switch-copy--top { justify-content: flex-start; padding-bottom: 4px; }
	.zoowai-command-switch-copy--bottom { padding-top: 4px; }
	.zoowai-command-switch-copy--bottom > span { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
	.zoowai-command-switch-cue { display: none; }
	.zoowai-command-switch-direction { min-height: 44px; margin: 0 0 4px; padding: 0; }
	.zoowai-command-switch-direction > .dashicons { flex-basis: 44px; width: 44px; height: 44px; font-size: 22px; }
	.zoowai-command-switch-direction small { display: none; }
	.zoowai-command-switch-copy > span { font-size: 11.5px; line-height: 1.5; }
	.zoowai-command-switch-overline { margin-bottom: 4px; }
	.zoowai-command-model { min-height: 480px; border-radius: 28px; }
	.zoowai-command-model-viewport { bottom: 142px; }
	.zoowai-command-model-copy { left: 17px; right: 17px; bottom: 21px; }
	.zoowai-command-model-heading { left: 22px; top: 20px; }
	.zoowai-command-model-actions { grid-template-columns: 58px minmax(0, 1fr) 58px; gap: 10px; }
	.zoowai-command-model-action { width: 58px; min-width: 58px; height: 58px; padding: 6px; }
	.zoowai-command-progress { left: 17px; right: 17px; bottom: 10px; }
	.zoowai-command-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
}

@media (min-width: 900px) and (max-width: 1024px) and (hover: hover) and (pointer: fine) {
	.zoowai-command-stage {
		grid-template-columns: clamp(112px, 12vw, 120px) minmax(0, 1fr) clamp(112px, 12vw, 120px);
		grid-template-areas: "previous model next";
		gap: 12px;
		perspective: 1600px;
		perspective-origin: 50% 42%;
	}

	.zoowai-command-model {
		grid-area: model;
		min-height: 480px;
	}

	.zoowai-command-switch-panel {
		grid-template-rows: minmax(92px, 1fr) auto minmax(108px, 1.08fr);
		height: auto;
		min-height: 0;
		margin: 20px 0;
		padding: 13px 9px 15px;
		overflow: visible;
		border-radius: 22px;
	}

	.zoowai-command-switch-panel--previous {
		--switch-rotate: 3deg;
		grid-area: previous;
		transform: none;
	}

	.zoowai-command-switch-panel--next {
		--switch-rotate: -3deg;
		grid-area: next;
		transform: none;
	}

	.zoowai-command-switch-panel--previous::before {
		transform-origin: right center;
	}

	.zoowai-command-switch-panel--next::before {
		transform-origin: left center;
	}

	.zoowai-command-switch-copy > span {
		display: -webkit-box;
		overflow: hidden;
		font-size: 10.5px;
		line-height: 1.48;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 6;
	}

	.zoowai-command-product-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 12px;
	}
}

@media (max-width: 1024px) and (hover: none) and (pointer: coarse) {
	.zoowai-command-product-card { aspect-ratio: 4 / 3; }
	.zoowai-command-product-card-footer { flex-direction: row; }
	.zoowai-command-product-card-back { padding: 20px 22px; }
	.zoowai-command-product-card-back h3 { font-size: 21px; }
	.zoowai-command-product-card-summary { max-width: 92%; margin-top: 8px; font-size: 9.5px; line-height: 1.42; }
	.zoowai-command-product-card-features { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; margin-top: 11px; }
	.zoowai-command-product-card-feature { grid-template-columns: 20px minmax(0, 1fr); gap: 6px; padding-top: 7px; }
	.zoowai-command-product-card-feature > b { width: 20px; height: 20px; font-size: 7px; }
	.zoowai-command-product-card-feature > span { font-size: 7.5px; line-height: 1.34; }
	.zoowai-command-product-card-feature strong { font-size: 9px; }
}

@media (max-width: 767px) {
	.zoowai-command-deck { min-height: 0; padding: 82px 14px 58px; }
	.zoowai-command-shell { padding: 16px 12px 18px; border-radius: 24px; }
	.zoowai-command-switch-copy > strong { margin-bottom: 6px; font-size: 16px; }
	.zoowai-command-switch-copy > span { min-height: 0; overflow: visible; font-size: 10px; line-height: 1.5; -webkit-line-clamp: unset; }
	.zoowai-command-stage { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-areas: "model model" "previous next"; gap: 10px; }
	.zoowai-command-model { grid-area: model; min-height: 440px; border-radius: 24px; }
	.zoowai-command-model::before { inset: 7px; border-radius: 19px; }
	.zoowai-command-model-viewport { bottom: 142px; }
	.zoowai-command-model-heading { left: 17px; top: 16px; padding: 7px 10px; font-size: 23px; }
	.zoowai-command-model-copy { min-height: 112px; padding: 10px 11px 12px; border-radius: 16px; }
	.zoowai-command-model-actions { grid-template-columns: repeat(2, 52px); align-items: center; justify-content: space-between; gap: 7px; }
	.zoowai-command-model-copy-center { grid-column: 1 / -1; grid-row: 1; }
	.zoowai-command-model-action { grid-row: 2; width: 52px; min-width: 52px; height: 52px; padding: 5px; font-size: 10px; }
	.zoowai-command-model-action--details { grid-column: 1; grid-row: 2; }
	.zoowai-command-model-action--buy { grid-column: 2; grid-row: 2; }
	.zoowai-command-model-copy-center h2 { font-size: 21px; }
	.zoowai-command-model-copy-center > span { font-size: 9px; -webkit-line-clamp: 2; }
	.zoowai-command-model-viewport { bottom: 172px; }
	.zoowai-command-model-copy { bottom: 21px; }
	.zoowai-command-switch-panel { height: clamp(140px, 18vw, 170px); min-height: 140px; grid-template-rows: auto auto minmax(0, 1fr); margin: 0; padding: 12px 16px 14px; border-radius: 18px; }
	.zoowai-command-switch-panel--previous { grid-area: previous; }
	.zoowai-command-switch-panel--next { grid-area: next; }
	.zoowai-command-switch-direction { flex-direction: row; min-height: 44px; margin: 0 0 4px; }
	.zoowai-command-switch-direction > .dashicons { flex-basis: 44px; width: 44px; height: 44px; font-size: 19px; }
	.zoowai-command-switch-direction small { display: none; }
	.zoowai-command-switch-copy { padding: 5px 2px; }
	.zoowai-command-switch-copy--top { justify-content: flex-start; }
	.zoowai-command-switch-overline { margin-bottom: 5px; font-size: 6px; }
	.zoowai-command-switch-cue { display: none; }
	.zoowai-command-products-heading { align-items: flex-start; flex-direction: column; gap: 5px; margin-top: 25px; }
	.zoowai-command-products-heading > span { text-align: left; }
	.zoowai-command-product-grid { grid-template-columns: minmax(0, 1fr); gap: 18px; }
	.zoowai-command-product-card { width: 100%; aspect-ratio: 4 / 3; }
	.zoowai-command-product-card-footer { flex-direction: row; }
	.zoowai-command-product-card-back { padding: 16px 18px; }
	.zoowai-command-product-card-back h3 { font-size: 18px; }
	.zoowai-command-product-card-summary { max-width: none; font-size: 8.5px; }
	.zoowai-command-product-card-features { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; margin-top: 9px; }
	.zoowai-command-product-card-feature { grid-template-columns: 18px minmax(0, 1fr); gap: 5px; padding-top: 6px; }
	.zoowai-command-product-card-feature > b { width: 18px; height: 18px; }
	.zoowai-command-product-card-feature > span { font-size: 6.8px; }
	.zoowai-command-product-card-feature strong { font-size: 8px; }
	.zoowai-command-product-card-back small { font-size: 7px; }
}

@media (min-width: 601px) and (max-width: 1024px) and (hover: none) {
	.zoowai-command-switch-panel {
		position: relative;
		height: auto;
		min-height: 118px;
		grid-template-rows: auto minmax(0, 1fr);
		margin: 0;
		padding: 14px;
		overflow: visible;
		border-radius: 22px;
	}

	.zoowai-command-switch-copy--top {
		grid-row: 1;
		justify-content: flex-start;
		padding: 2px 52px 0;
		text-align: center;
	}

	.zoowai-command-switch-copy--bottom {
		grid-row: 2;
		padding: 10px 4px 0;
	}

	.zoowai-command-switch-overline,
	.zoowai-command-switch-cue {
		display: none;
	}

	.zoowai-command-switch-direction {
		position: absolute;
		top: 12px;
		width: 44px;
		height: 44px;
		min-height: 44px;
		margin: 0;
		padding: 2px;
		border: 0;
		background: transparent;
		box-shadow: none;
	}

	.zoowai-command-switch-panel--previous .zoowai-command-switch-direction { left: 12px; }
	.zoowai-command-switch-panel--next .zoowai-command-switch-direction { right: 12px; }
	.zoowai-command-switch-direction > .dashicons { flex-basis: 40px; width: 40px; height: 40px; font-size: 20px; }
	.zoowai-command-switch-direction small { display: none; }
	.zoowai-command-switch-copy--bottom > span {
		display: -webkit-box;
		overflow: hidden;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
	}
}

@media (max-width: 600px) {
	.zoowai-command-deck {
		--command-depth-contact: 0 14px 28px rgba(20, 74, 111, 0.14);
		--command-depth-lift: 2px;
		--command-depth-lip: 1px;
	}

	.zoowai-command-shell {
		box-shadow: var(--command-depth-contact), 0 3px 7px rgba(33, 91, 130, 0.08), inset 0 1px 0 var(--command-depth-edge), inset 0 -1px 0 var(--command-depth-seam);
	}

	.zoowai-command-product-card::before {
		inset: 4px 3px -4px;
		box-shadow: 0 14px 24px rgba(18, 75, 113, 0.17), 0 4px 7px rgba(27, 81, 117, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.86), inset 0 -1px 0 rgba(55, 129, 178, 0.18);
		transform: translateY(4px);
	}

	.zoowai-command-stage {
		grid-template-columns: minmax(0, 1fr);
		grid-template-areas: "model" "notes";
		row-gap: 9px;
	}

	.zoowai-command-switch-panel { display: none; }
	.zoowai-command-switch-copy--bottom { display: none; }
	.zoowai-command-model-heading { left: 15px; top: 14px; padding: 6px 9px; border-radius: 11px; font-size: 18px; }
	.zoowai-command-model-copy { min-height: 126px; padding: 10px 11px 12px; }
	.zoowai-command-model-viewport { bottom: 186px; }
	.zoowai-command-model-actions {
		grid-template-columns: 52px minmax(0, 1fr) 52px;
		grid-template-rows: minmax(44px, auto) 52px;
		align-items: center;
		gap: 7px;
	}

	.zoowai-command-model-switch {
		display: grid;
		width: 44px;
		height: 44px;
		padding: 4px;
		place-items: center;
		border: 0;
		background: transparent;
		color: var(--command-ink);
		cursor: pointer;
	}

	.zoowai-command-model-switch .dashicons {
		display: grid;
		width: 36px;
		height: 36px;
		place-items: center;
		border: 1px solid rgba(255, 255, 255, 0.9);
		border-radius: 50%;
		background: rgba(250, 253, 255, 0.84);
		box-shadow: inset 0 1px 0 #fff, inset 0 -2px 0 rgba(56, 126, 173, 0.18), 0 7px 14px rgba(29, 96, 144, 0.16);
		font-size: 17px;
	}

	.zoowai-command-model-switch--previous { grid-column: 1; grid-row: 1; justify-self: center; }
	.zoowai-command-model-copy-center { grid-column: 2; grid-row: 1; }
	.zoowai-command-model-switch--next { grid-column: 3; grid-row: 1; justify-self: center; }
	.zoowai-command-model-action--details { grid-column: 1; grid-row: 2; }
	.zoowai-command-model-action--buy { grid-column: 3; grid-row: 2; }
	.zoowai-command-model-copy-center h2 { display: block; font-size: clamp(17px, 4.8vw, 20px); }
	.zoowai-command-model-copy-center > span { display: none; }
	.zoowai-command-mobile-notes {
		grid-area: notes;
		display: block;
		border: 1px solid rgba(99, 170, 218, 0.48);
		border-radius: 18px;
		background: rgba(239, 249, 255, 0.78);
		box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 9px 20px rgba(29, 93, 138, 0.1);
		color: var(--command-ink);
	}

	.zoowai-command-mobile-notes > summary {
		display: list-item;
		min-height: 44px;
		line-height: 44px;
		padding: 0 13px;
		color: rgba(18, 94, 149, 0.9);
		cursor: pointer;
		font-size: 10px;
		font-weight: 850;
		letter-spacing: 0.08em;
		list-style: none;
	}

	.zoowai-command-mobile-notes > summary::-webkit-details-marker { display: none; }
	.zoowai-command-mobile-notes__label--close,
	.zoowai-command-mobile-notes[open] .zoowai-command-mobile-notes__label--open { display: none; }
	.zoowai-command-mobile-notes[open] .zoowai-command-mobile-notes__label--close { display: inline; }
	.zoowai-command-mobile-notes__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; padding: 0 13px 13px; }
	.zoowai-command-mobile-notes__item { min-width: 0; padding-top: 9px; border-top: 1px solid rgba(76, 151, 199, 0.18); }
	.zoowai-command-mobile-notes__item strong { display: block; color: var(--command-ink); font-size: 12px; line-height: 1.25; overflow-wrap: anywhere; }
	.zoowai-command-mobile-notes__item p { margin: 5px 0 0; color: var(--command-muted); font-size: 10px; line-height: 1.45; overflow-wrap: anywhere; }
	.zoowai-command-mobile-notes > summary:focus-visible { outline: 3px solid rgba(14, 139, 210, 0.5); outline-offset: -3px; }
}

@media (prefers-reduced-motion: reduce) {
	.zoowai-command-deck *,
	.zoowai-command-deck *::before,
	.zoowai-command-deck *::after {
		scroll-behavior: auto !important;
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}

	.zoowai-command-switch-panel:hover,
	.zoowai-command-switch-panel:focus-visible,
	.zoowai-command-switch-panel:active {
		transform: none;
	}

	.zoowai-command-switch-panel:hover::before,
	.zoowai-command-switch-panel:focus-visible::before,
	.zoowai-command-switch-panel:active::before {
		transform: rotateY(var(--switch-rotate));
	}

	.zoowai-command-switch-panel:hover .zoowai-command-switch-direction > .dashicons {
		transform: none !important;
	}

	.zoowai-command-switch-panel:focus-visible .zoowai-command-switch-direction > .dashicons {
		transform: none !important;
	}

	.zoowai-command-product-card.is-hovering .zoowai-command-product-card-rotor {
		transform: none !important;
		will-change: auto !important;
	}

	.zoowai-command-model-action:hover,
	.zoowai-command-model-action:focus-visible,
	.zoowai-command-product-card-actions a:hover,
	.zoowai-command-product-card-actions a:focus-visible {
		transform: none;
	}

	.zoowai-command-product-card-rotor {
		will-change: auto;
	}
}
