.app-embed-block__container {
	--emcm-drawer-surface: #ffffff;
	--emcm-drawer-bg: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
	--emcm-drawer-border: rgba(15, 23, 42, 0.08);
	--emcm-drawer-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
	--emcm-drawer-muted: #64748b;
	--emcm-drawer-strong: #0f172a;
	--emcm-drawer-accent: #111827;
	--emcm-drawer-accent-soft: #e2e8f0;
	position: fixed;
	left: 16px;
	bottom: 16px;
	z-index: 9999;
	width: auto;
	font-family:
		'Poppins',
		system-ui,
		-apple-system,
		Segoe UI,
		Roboto,
		Arial,
		sans-serif;
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
	gap: 10px;
}

.app-embed-block__container[hidden] {
	display: none !important;
}

.emcm-compare-embed__fab {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: var(--emcm-cell-padding, 10px) var(--emcm-cell-padding, 12px);
	border-radius: 14px;
	border: 0;
	background: #2f2f2f;
	color: #fff;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	box-shadow:
		0 10px 22px rgba(15, 23, 42, 0.16),
		0 2px 6px rgba(15, 23, 42, 0.08);
	transition:
		transform 0.18s ease,
		box-shadow 0.18s ease;
}

.emcm-compare-embed__fab:hover {
	transform: translateY(-1px);
	box-shadow:
		0 14px 28px rgba(15, 23, 42, 0.2),
		0 4px 10px rgba(15, 23, 42, 0.1);
}

.emcm-compare-embed__fab:focus {
	outline: 2px solid rgba(0, 0, 0, 0.3);
	outline-offset: 2px;
}

.emcm-compare-embed__fab-icon {
	width: 18px;
	height: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.emcm-compare-embed__fab-icon svg {
	width: 18px;
	height: 18px;
	display: block;
}

.emcm-compare-embed__fab-text {
	font-size: 14px;
	line-height: 1.1;
	white-space: nowrap;
}

.emcm-compare-embed__fab-count {
	min-width: 22px;
	height: 20px;
	padding: 0 6px;
	border-radius: 999px;
	background: #fff;
	color: #111;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	font-variant-numeric: tabular-nums;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.emcm-compare-embed__drawer-count {
	min-width: 22px;
	height: 22px;
	padding: 0 8px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: #111827;
	font-size: 12px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.emcm-compare-embed__fab-chevron {
	margin-left: 1px;
	font-size: 12px;
	line-height: 1;
	opacity: 0.72;
	transition: transform 0.18s ease, opacity 0.18s ease;
}

.emcm-compare-embed__fab[aria-expanded='true'] .emcm-compare-embed__fab-chevron {
	transform: rotate(180deg);
	opacity: 1;
}

.emcm-compare-embed__drawer {
	width: 360px;
	max-width: calc(100vw - 32px);
	background: var(--emcm-drawer-surface);
	border-radius: 20px;
	border: 1px solid var(--emcm-drawer-border);
	box-shadow: var(--emcm-drawer-shadow);
	overflow: hidden;
	backdrop-filter: blur(12px);
}

.emcm-compare-embed__drawer-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 16px 14px;
	background:
		radial-gradient(circle at top left, rgba(59, 130, 246, 0.1), transparent 45%),
		linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.emcm-compare-embed__drawer-copy {
	min-width: 0;
}

.emcm-compare-embed__drawer-kicker {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #64748b;
}

.emcm-compare-embed__drawer-title-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 6px;
}

.emcm-compare-embed__drawer-title {
	font-size: 18px;
	line-height: 1.15;
	font-weight: 700;
	color: var(--emcm-drawer-strong);
}

.emcm-compare-embed__drawer-close {
	width: 34px;
	height: 34px;
	flex: 0 0 auto;
	border-radius: 999px;
	border: 1px solid rgba(148, 163, 184, 0.28);
	background: rgba(255, 255, 255, 0.9);
	color: #334155;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	line-height: 1;
	transition:
		background 0.18s ease,
		color 0.18s ease,
		border-color 0.18s ease,
		transform 0.18s ease;
}

.emcm-compare-embed__drawer-close:hover {
	background: #ffffff;
	border-color: rgba(100, 116, 139, 0.4);
	color: #0f172a;
	transform: translateY(-1px);
}

.emcm-compare-embed__drawer-close:focus {
	outline: 2px solid rgba(59, 130, 246, 0.32);
	outline-offset: 2px;
}

.emcm-compare-embed__drawer-items {
	max-height: 320px;
	overflow: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
	padding: 14px;
	background: var(--emcm-drawer-bg);
}

.emcm-compare-embed__drawer-items::-webkit-scrollbar {
	display: none;
}

.emcm-compare-embed__item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 12px;
	background: rgba(255, 255, 255, 0.96);
	border-radius: 16px;
	border: 1px solid rgba(148, 163, 184, 0.18);
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.emcm-compare-embed__item + .emcm-compare-embed__item {
	margin-top: 12px;
}

.emcm-compare-embed__thumb {
	width: 60px;
	height: 60px;
	border-radius: 14px;
	background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
	overflow: hidden;
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(148, 163, 184, 0.18);
}

.emcm-compare-embed__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.emcm-compare-embed__name {
	flex: 1 1 auto;
	font-size: 14px;
	font-weight: 600;
	color: var(--emcm-drawer-strong);
	line-height: 1.35;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.emcm-compare-embed__meta {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.emcm-compare-embed__variant {
	font-size: 12px;
	line-height: 1.35;
	color: var(--emcm-drawer-muted);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.emcm-compare-embed__remove {
	width: 32px;
	height: 32px;
	border-radius: 999px;
	border: 1px solid rgba(239, 68, 68, 0.24);
	color: #dc2626;
	background: rgba(254, 242, 242, 0.95);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	line-height: 1;
	flex: 0 0 auto;
	transition:
		transform 0.18s ease,
		background 0.18s ease,
		border-color 0.18s ease;
}

.emcm-compare-embed__remove:hover {
	background: #fee2e2;
	border-color: rgba(239, 68, 68, 0.4);
	transform: translateY(-1px);
}

.emcm-compare-embed__drawer-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 14px 16px 16px;
	background: #ffffff;
	border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.emcm-compare-embed__drawer-footer-copy {
	min-width: 0;
}

.emcm-compare-embed__drawer-footer-title {
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--emcm-drawer-strong);
}

.emcm-compare-embed__drawer-footer-subtitle {
	margin-top: 4px;
	font-size: 12px;
	line-height: 1.35;
	color: var(--emcm-drawer-muted);
}

.emcm-compare-embed__compare-btn {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	padding: 0 16px;
	background: var(--emcm-drawer-accent);
	border: 0;
	border-radius: 12px;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	text-align: center;
	box-shadow: 0 12px 24px rgba(15, 23, 42, 0.16);
	transition:
		transform 0.18s ease,
		box-shadow 0.18s ease,
		background 0.18s ease;
}

.emcm-compare-embed__compare-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 16px 28px rgba(15, 23, 42, 0.2);
}

.emcm-compare-embed__compare-btn:focus {
	outline: 2px solid rgba(59, 130, 246, 0.32);
	outline-offset: 2px;
}

.emcm-compare-embed__compare-arrow {
	font-size: 15px;
	line-height: 1;
}

@media (max-width: 480px) {
	.emcm-compare-embed__drawer {
		width: min(100vw - 24px, 360px);
	}

	.emcm-compare-embed__drawer-footer {
		flex-direction: column;
		align-items: stretch;
	}

	.emcm-compare-embed__compare-btn {
		width: 100%;
	}
}

/* Compare page (/pages/em-selectpro) */
.emcm-compare-page {
	width: min(960px, calc(100vw - 32px));
	margin: 24px auto;
	font-family:
		'Poppins',
		system-ui,
		-apple-system,
		Segoe UI,
		Roboto,
		Arial,
		sans-serif;
}

.emcm-compare-page__card {
	background: #fff;
	border: var(--emcm-border-width, 1px) solid
		var(--emcm-border-color, rgba(0, 0, 0, 0.1));
	border-radius: var(--emcm-border-radius, 12px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.emcm-compare-page__header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: var(--emcm-cell-padding, 14px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.emcm-compare-page__title {
	margin: 0;
	font-size: 18px;
	line-height: 1.2;
}

/* Empty-state title sits directly inside the card (no header wrapper) */
.emcm-compare-page__card > .emcm-compare-page__title {
	padding: var(--emcm-cell-padding, 14px) var(--emcm-cell-padding, 14px) 0;
}

.emcm-compare-page__count {
	min-width: 22px;
	height: 18px;
	padding: 0 var(--emcm-cell-padding, 6px);
	border-radius: 4px;
	background: #2f2f2f;
	color: #fff;
	font-size: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.emcm-compare-page__clear {
	margin-left: auto;
	border: 1px solid rgba(0, 0, 0, 0.18);
	background: #fff;
	border-radius: 8px;
	padding: calc(var(--emcm-cell-padding, 14px) * 0.6)
		calc(var(--emcm-cell-padding, 14px) * 0.75);
	cursor: pointer;
	font-size: 13px;
}

.emcm-compare-page__list {
	padding: 12px;
}

.emcm-compare-page__row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 10px;
	background: #fff;
}

.emcm-compare-page__row + .emcm-compare-page__row {
	margin-top: 10px;
}

.emcm-compare-page__imgwrap {
	width: 64px;
	height: 64px;
	border-radius: 10px;
	overflow: hidden;
	background: #f2f2f2;
	flex: 0 0 auto;
}

.emcm-compare-page__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.emcm-compare-page__img--placeholder {
	background: #e9e9e9;
}

.emcm-compare-page__meta {
	flex: 1 1 auto;
	min-width: 0;
}

.emcm-compare-page__name {
	font-size: 14px;
	color: #111;
	line-height: 1.2;
}

.emcm-compare-page__vendor {
	margin-top: 4px;
	font-size: 12px;
	color: rgba(0, 0, 0, 0.6);
}

.emcm-compare-page__remove {
	width: 30px;
	height: 30px;
	border-radius: 6px;
	border: 2px solid #d60000;
	color: #d60000;
	background: #fff;
	cursor: pointer;
	font-size: 18px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.emcm-compare-page__empty {
	margin: 0;
	padding: 18px 16px;
	color: rgba(0, 0, 0, 0.7);
}

.emcm-compare-page__empty-actions {
	padding: 0 16px 18px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.emcm-compare-page__go-select {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	min-height: 42px;
	min-width: 160px;
	border-radius: var(--emcm-btn-border-radius, 12px);
	background: #2f2f2f !important;
	color: #fff !important;
	text-decoration: none !important;
	border: 0 !important;
	font-weight: 600;
	line-height: 1.1;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
	font-size: 15px !important;
}

.emcm-compare-page__go-select:link,
.emcm-compare-page__go-select:visited,
.emcm-compare-page__go-select:hover,
.emcm-compare-page__go-select:active,
.emcm-compare-page__go-select:focus {
	color: #fff !important;
	text-decoration: none !important;
}

.emcm-compare-page__go-select:hover {
	filter: brightness(0.95);
}

.emcm-compare-page__go-select:focus {
	outline: 2px solid rgba(0, 0, 0, 0.35);
	outline-offset: 2px;
}

/* Compare table */
.emcm-compare-table__wrap {
	overflow: visible;
	background: #fff;
}

.emcm-compare-table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}

.emcm-compare-table th,
.emcm-compare-table td {
	border: var(--emcm-border-width, 1px) solid
		var(--emcm-border-color, rgba(0, 0, 0, 0.12));
	vertical-align: top;
	padding: 0;
}

.emcm-compare-table thead th {
	background: var(--emcm-heading-bg, #d7d7d7);
	color: var(--emcm-heading-color, #111);
}

.emcm-compare-table__headcell {
	background: var(--emcm-heading-bg, #d7d7d7);
	color: var(--emcm-heading-color, #111);
}

.emcm-compare-table__headcell--empty {
	position: relative;
}

/* Empty header cells: hard-center the CTA in the whole column */
.emcm-compare-table__headcell--empty .emcm-compare-table__product--empty {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px 14px;
}

.emcm-compare-table__headcell--empty .emcm-compare-table__product-actions {
	width: 100%;
	justify-content: center;
}

.emcm-compare-table__headcell--empty .emcm-compare-table__select {
	min-width: 0;
	max-width: 100%;
	width: min(160px, 100%) !important;
}

.emcm-compare-table__corner {
	width: clamp(88px, 18vw, 160px);
	background: var(--emcm-heading-bg, #d7d7d7);
}

.emcm-compare-table th.emcm-compare-table__rowhead {
	background: var(--emcm-heading-bg, #d7d7d7);
	color: var(--emcm-heading-color, #111);
	font-weight: var(--emcm-heading-font-weight, 600);
	font-size: var(--emcm-heading-font-size, 16px);
	padding: var(--emcm-cell-padding, 14px) var(--emcm-cell-padding, 12px);
	white-space: normal;
	overflow-wrap: anywhere;
	word-break: break-word;
	hyphens: auto;
	text-align: center;
}

.emcm-compare-table td.emcm-compare-table__cell {
	background: var(--emcm-feature-bg, #111);
	color: var(--emcm-feature-color, #fff);
	padding: var(--emcm-cell-padding, 14px) var(--emcm-cell-padding, 12px);
	font-size: var(--emcm-feature-font-size, 13px);
	font-weight: var(--emcm-feature-font-weight, 400);
	line-height: 1.4;
	word-break: break-word;
}

/* Back-compat if any older markup still uses the inner wrapper */
.emcm-compare-table__value {
	display: block;
	background: transparent;
	color: inherit;
	padding: 0;
}

.emcm-compare-table__product {
	background: var(--emcm-heading-bg, #d7d7d7);
	padding: 18px 14px;
	height: clamp(220px, 30vw, 320px);
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: stretch;
	justify-content: flex-start;
	width: 100%;
	box-sizing: border-box;
	overflow: hidden;
}

.emcm-compare-table__product-top {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
	justify-content: flex-start;
	min-height: 0;
	width: 100%;
}

.emcm-compare-table__imgwrap {
	width: min(100%, var(--emcm-img-width, 100%));
	max-width: 100%;
	aspect-ratio: 1 / 1;
	height: auto;
	max-height: var(--emcm-img-max-height, 180px);
	flex: 0 0 auto;
	background: var(--emcm-img-bg, #fff) !important;
	border: 0 !important;
	box-shadow: none !important;
	border-radius: 4px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.emcm-compare-table__img {
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	max-height: 100% !important;
	object-fit: var(--emcm-img-fit, contain) !important;
	display: block;
}

.emcm-compare-table__img--placeholder {
	background: transparent !important;
	width: 100%;
	height: 100%;
	opacity: 0.6;
	object-fit: contain !important;
}

.emcm-compare-table__product-name {
	color: var(--emcm-heading-color, #111);
	font-weight: var(--emcm-heading-font-weight, 700);
	text-decoration: none;
	text-align: center;
	font-size: var(--emcm-heading-font-size, 14px);
	line-height: 1.25;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	width: 100%;
	min-height: calc(3 * 1.25em);
	word-break: break-word;
	overflow-wrap: anywhere;
}

.emcm-compare-table__product-name:link,
.emcm-compare-table__product-name:visited,
.emcm-compare-table__product-name:hover,
.emcm-compare-table__product-name:active,
.emcm-compare-table__product-name:focus {
	color: var(--emcm-heading-color, #111) !important;
	text-decoration: none !important;
}

.emcm-compare-table__variant {
	width: 100%;
	text-align: center;
	font-size: calc(var(--emcm-feature-font-size, 13px) * 0.9);
	line-height: 1.25;
	color: rgba(0, 0, 0, 0.68);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.emcm-compare-table__product-actions {
	display: flex;
	gap: 10px;
	align-items: stretch;
	justify-content: flex-start;
	width: 100%;
	flex-wrap: wrap;
}

/* Only real products (View Product) should baseline-align; empty columns stay centered */
.emcm-compare-table__product:not(.emcm-compare-table__product--empty)
	.emcm-compare-table__product-actions {
	margin-top: auto;
	align-items: center;
	justify-content: center;
}

.emcm-compare-table__select {
	background: var(--emcm-btn-bg, #111);
	color: var(--emcm-btn-text, #fff);
	border: 0;
	border-radius: var(--emcm-btn-border-radius, 6px);
	padding: var(--emcm-btn-padding, 10px) !important;
	cursor: pointer;
	font-size: var(--emcm-feature-font-size, 13px);
	font-weight: var(--emcm-feature-font-weight, 400);
	display: block !important;
	flex: var(--emcm-btn-flex, 1 1 0);
	min-width: 0;
	width: var(--emcm-btn-width, 100%) !important;
	box-sizing: border-box;
	text-align: center;
	text-decoration: none;
	opacity: 1 !important;
	visibility: visible !important;
	filter: none !important;
	transform: none !important;
}

/* Ensure anchor link states don't override btnText */
.emcm-compare-table__select:link,
.emcm-compare-table__select:visited,
.emcm-compare-table__select:hover,
.emcm-compare-table__select:active,
.emcm-compare-table__select:focus {
	background: var(--emcm-btn-bg, #111) !important;
	color: var(--emcm-btn-text, #fff) !important;
	opacity: 1 !important;
	visibility: visible !important;
	text-decoration: none;
}

.emcm-compare-table__select:disabled,
.emcm-compare-mobile__select:disabled {
	cursor: not-allowed;
	opacity: 0.6 !important;
}

.emcm-compare-table__remove {
	width: 34px;
	height: 34px;
	border-radius: 8px;
	border: 2px solid #d60000;
	color: #d60000;
	background: #fff;
	cursor: pointer;
	font-size: 18px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 34px;
}

@media (max-width: 768px) {
	.emcm-compare-page {
		width: calc(100vw - 24px);
		margin: 16px auto;
	}
}

@media (max-width: 480px) {
	/* mobile layout is cards; keep table rules minimal */
}

/* Mobile compare (no horizontal scroll) */
.emcm-compare-mobile__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	padding: var(--emcm-cell-padding, 12px);
}

.emcm-compare-mobile__card {
	background: var(--emcm-heading-bg, #d7d7d7);
	border: var(--emcm-border-width, 1px) solid
		var(--emcm-border-color, rgba(0, 0, 0, 0.12));
	border-radius: var(--emcm-border-radius, 10px);
	overflow: hidden;
}

.emcm-compare-mobile__top {
	padding: var(--emcm-cell-padding, 14px);
	display: grid;
	gap: 10px;
	justify-items: center;
}

.emcm-compare-mobile__imgwrap {
	width: min(100%, var(--emcm-img-width, 100%));
	max-width: 100%;
	aspect-ratio: 1 / 1;
	height: auto;
	max-height: var(--emcm-img-max-height, 220px);
	background: var(--emcm-img-bg, #fff) !important;
	border: 0 !important;
	box-shadow: none !important;
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.emcm-compare-mobile__img {
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	max-height: 100% !important;
	object-fit: var(--emcm-img-fit, contain) !important;
	display: block;
}

.emcm-compare-mobile__img--placeholder {
	background: transparent !important;
	width: 100%;
	height: 100%;
	opacity: 0.6;
	object-fit: contain !important;
}

.emcm-compare-mobile__name {
	color: #111;
	font-weight: 700;
	text-decoration: none;
	text-align: center;
	font-size: 14px;
}

.emcm-compare-mobile__actions {
	width: 100%;
	display: flex;
	gap: 10px;
	align-items: stretch;
}

.emcm-compare-mobile__select {
	background: var(--emcm-btn-bg, #111);
	color: var(--emcm-btn-text, #fff);
	border: 0;
	border-radius: var(--emcm-btn-border-radius, 12px);
	padding: var(--emcm-btn-padding, 10px) !important;
	font-size: var(--emcm-feature-font-size, 13px);
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--emcm-btn-width, auto);
	flex: var(--emcm-btn-flex, 1 1 auto);
	opacity: 1 !important;
	visibility: visible !important;
	filter: none !important;
	transform: none !important;
}

.emcm-compare-mobile__select:link,
.emcm-compare-mobile__select:visited,
.emcm-compare-mobile__select:hover,
.emcm-compare-mobile__select:active,
.emcm-compare-mobile__select:focus {
	background: var(--emcm-btn-bg, #111) !important;
	color: var(--emcm-btn-text, #fff) !important;
	opacity: 1 !important;
	visibility: visible !important;
	text-decoration: none;
}

.emcm-compare-mobile__remove {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	border: 2px solid #d60000;
	color: #d60000;
	background: #fff;
	cursor: pointer;
	font-size: 18px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 38px;
}

.emcm-compare-mobile__rows {
	background: var(--emcm-feature-bg, #111);
	color: var(--emcm-feature-color, #fff);
}

.emcm-compare-mobile__row {
	display: grid;
	grid-template-columns: 110px 1fr;
	gap: 10px;
	padding: var(--emcm-cell-padding, 14px);
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.emcm-compare-mobile__label {
	font-weight: var(--emcm-heading-font-weight, 600);
	color: var(--emcm-heading-color, #fff);
	opacity: 0.9;
}

.emcm-compare-mobile__val {
	font-weight: var(--emcm-feature-font-weight, 400);
	font-size: var(--emcm-feature-font-size, 13px);
	word-break: break-word;
}

.emcm-compare-mobile__card--empty .emcm-compare-mobile__top {
	min-height: 220px;
	align-content: center;
}

.emcm-compare-mobile__empty {
	width: 100%;
	display: flex;
	justify-content: center;
}

@media (min-width: 600px) and (max-width: 900px) {
	.emcm-compare-mobile__grid {
		grid-template-columns: 1fr 1fr;
	}
}

.emcm-compare-table__product--empty .emcm-compare-table__imgwrap,
.emcm-compare-table__product--empty .emcm-compare-table__product-name {
	display: none;
}

/* Empty columns: center the Select Products CTA */
.emcm-compare-table__product--empty {
	align-items: center;
}

.emcm-compare-table__product--empty .emcm-compare-table__product-actions {
	justify-content: center;
}

.emcm-compare-table__product--empty .emcm-compare-table__select {
	flex: 0 0 auto;
	width: auto !important;
	min-width: 160px;
}
