/**
 * Compare Products frontend styles.
 */

.bgcp-compare-button-wrap {
	display: block;
}

.bgcp-compare-button-wrap[style*="stretch"] .bgcp-compare-button,
.bgcp-compare-button--stretch {
	width: 100%;
}

.bgcp-compare-button {
	appearance: none;
	-webkit-appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 12px 18px;
	border: 1px solid #111827;
	border-radius: 10px;
	background-color: #111827;
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.bgcp-compare-button:hover,
.bgcp-compare-button:focus-visible {
	background-color: #1f2937;
	border-color: #1f2937;
	color: #ffffff;
	outline: none;
	box-shadow: 0 8px 24px rgba(17, 24, 39, 0.16);
	transform: translateY(-1px);
}

.bgcp-compare-button.is-added {
	background-color: #f3f4f6;
	border-color: #d1d5db;
	color: #111827;
}

.bgcp-compare-button.is-added:hover,
.bgcp-compare-button.is-added:focus-visible {
	background-color: #e5e7eb;
	border-color: #d1d5db;
	color: #111827;
}

.bgcp-compare-button__inner {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
}

.bgcp-compare-button__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1em;
	line-height: 1;
}

.bgcp-compare-button__icon svg {
	display: block;
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.bgcp-compare-button-placeholder {
	padding: 14px 16px;
	border: 1px dashed #cbd5e1;
	border-radius: 10px;
	background: #f8fafc;
	color: #475569;
	font-size: 13px;
	line-height: 1.5;
}

.bgcp-toast-wrap {
	position: fixed;
	top: 18px;
	right: 18px;
	left: auto;
	transform: none;
	z-index: 999999;
	width: min(300px, calc(100vw - 24px));
	pointer-events: none;
}

.bgcp-toast {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 9px;
	min-height: 50px;
	padding: 7px 8px;
	border: 0;
	border-radius: 16px;
	background: linear-gradient(90deg, #2047db 0%, #2e63f1 100%);
	color: #ffffff;
	box-shadow: 0 14px 34px rgba(4, 24, 74, 0.32);
	opacity: 0;
	pointer-events: auto;
	transform: translateY(-8px) scale(0.98);
	transition: opacity 180ms ease, transform 180ms ease;
	overflow: hidden;
}

.bgcp-toast.is-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.bgcp-toast__icon {
	display: inline-grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.2);
	color: #ffffff;
	flex-shrink: 0;
}

.bgcp-toast__icon svg {
	display: block;
	width: 16px;
	height: 16px;
}

.bgcp-toast__content {
	min-width: 0;
}

.bgcp-toast__message {
	display: block;
	min-width: 0;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.15;
	color: #ffffff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.bgcp-toast__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 78px;
	padding: 10px 11px;
	border-radius: 12px;
	background: linear-gradient(180deg, #4e8cff 0%, #4a7ff6 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	transition: transform 160ms ease, opacity 160ms ease;
}

.bgcp-toast__action:hover,
.bgcp-toast__action:focus-visible {
	color: #ffffff;
	opacity: 0.96;
	transform: translateY(-1px);
	outline: none;
}

.bgcp-toast--warning {
	background: linear-gradient(90deg, #a16207 0%, #d97706 100%);
}

.bgcp-toast--error {
	background: linear-gradient(90deg, #b91c1c 0%, #ef4444 100%);
}

.bgcp-toast--info {
	background: linear-gradient(90deg, #1d4ed8 0%, #3b82f6 100%);
}

@media (max-width: 600px) {
	.bgcp-toast-wrap {
		top: 12px;
		left: 12px;
		right: 12px;
		transform: none;
		width: auto;
	}

	.bgcp-toast {
		min-height: 50px;
		gap: 8px;
		padding: 7px 8px;
		border-radius: 15px;
	}

	.bgcp-toast__message {
		font-size: 13px;
	}

	.bgcp-toast__action {
		min-width: 74px;
		padding: 9px 10px;
		font-size: 12px;
	}
}

/** Compare Table Widget */
.bgcp-compare-table-widget {
	width: 100%;
}

.bgcp-compare-head {
	align-items: flex-start;
	display: flex;
	gap: 20px;
	justify-content: space-between;
	margin-bottom: 24px;
}

.bgcp-compare-head__content {
	min-width: 0;
}

.bgcp-compare-title {
	color: #111827;
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.08;
	margin: 0 0 10px;
}

.bgcp-compare-description {
	color: #6b7280;
	font-size: 16px;
	line-height: 1.65;
	max-width: 760px;
}

.bgcp-compare-description p {
	margin: 0;
}

.bgcp-compare-share {
	align-items: center;
	appearance: none;
	-webkit-appearance: none;
	background: #111827;
	border: 1px solid #111827;
	border-radius: 999px;
	color: #ffffff;
	cursor: pointer;
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	gap: 8px;
	line-height: 1;
	min-height: 42px;
	padding: 12px 18px;
	text-decoration: none;
	transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
	white-space: nowrap;
}

.bgcp-compare-share:hover,
.bgcp-compare-share:focus-visible {
	background: #1f2937;
	border-color: #1f2937;
	color: #ffffff;
	outline: none;
	transform: translateY(-1px);
}

.bgcp-compare-table-shell {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 22px;
	box-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
	overflow: hidden;
}

.bgcp-compare-table-scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	width: 100%;
}

.bgcp-compare-table-widget.is-search-open {
	position: relative;
	z-index: 20;
}

.bgcp-compare-table-widget.is-search-open .bgcp-compare-table-shell {
	overflow: visible;
}

.bgcp-compare-table-widget.is-search-open .bgcp-compare-table-scroll {
	min-height: 390px;
}


.bgcp-compare-table {
	border-collapse: separate;
	border-spacing: 0;
	margin: 0;
	min-width: 760px;
	table-layout: fixed;
	width: 100%;
}

.bgcp-compare-table th,
.bgcp-compare-table td {
	border: 0;
	border-bottom: 1px solid #eef0f4;
	border-right: 1px solid #eef0f4;
	padding: 18px;
	text-align: left;
	vertical-align: top;
}

.bgcp-compare-table th:last-child,
.bgcp-compare-table td:last-child {
	border-right: 0;
}

.bgcp-compare-table tr:last-child th,
.bgcp-compare-table tr:last-child td {
	border-bottom: 0;
}

.bgcp-compare-table thead th {
	background: #f8fafc;
	position: relative;
}

.bgcp-compare-table__label {
	background: #fbfcfe;
	color: #111827;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.4;
	width: 220px;
}

.bgcp-compare-table__label--top {
	font-size: 18px;
	letter-spacing: -0.02em;
}

.bgcp-compare-table__product {
	min-width: 220px;
}

.bgcp-product-card {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-height: 250px;
	padding: 4px 8px 0;
	position: relative;
	text-align: center;
}

.bgcp-product-card--empty {
	justify-content: flex-start;
	min-height: 76px;
	padding-top: 4px;
}

.bgcp-product-card--empty .bgcp-column-search {
	margin-bottom: 0;
}

.bgcp-product-card__remove {
	align-items: center;
	appearance: none;
	-webkit-appearance: none;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 999px;
	color: #6b7280;
	cursor: pointer;
	display: inline-flex;
	font-size: 20px;
	height: 30px;
	justify-content: center;
	line-height: 1;
	padding: 0;
	position: absolute;
	right: 0;
	top: 0;
	transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
	width: 30px;
}

.bgcp-product-card__remove:hover,
.bgcp-product-card__remove:focus-visible {
	background: #fee2e2;
	border-color: #fecaca;
	color: #b91c1c;
	outline: none;
}

.bgcp-product-card__image {
	align-items: center;
	display: flex;
	height: 140px;
	justify-content: center;
	margin: 12px auto 2px;
	max-width: 170px;
	width: 100%;
}

.bgcp-product-card__image img {
	height: 100%;
	max-height: 140px;
	max-width: 100%;
	object-fit: contain;
	width: auto;
}

.bgcp-product-card__title {
	color: #111827;
	display: block;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.35;
	text-decoration: none;
}

.bgcp-product-card__title:hover,
.bgcp-product-card__title:focus-visible {
	color: #2563eb;
	outline: none;
}

.bgcp-product-card__price {
	color: #111827;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.35;
}

.bgcp-price {
	align-items: baseline;
	display: inline-flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}

.bgcp-price__sale {
	color: #ef3b24;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
}

.bgcp-price__regular {
	color: #6b7280;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	position: relative;
}

.bgcp-price__regular::after {
	background: currentColor;
	content: '';
	height: 1px;
	left: 0;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.bgcp-price__single-regular {
	color: #111827;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.25;
}

.bgcp-product-card__price del {
	color: #9ca3af;
	font-size: 13px;
	font-weight: 600;
}

.bgcp-product-card__price ins {
	background: transparent;
	color: #dc2626;
	font-weight: 800;
	text-decoration: none;
}

.bgcp-compare-table__cell {
	color: #374151;
	font-size: 14px;
	line-height: 1.65;
}

.bgcp-compare-table__cell .bgcp-feature-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.bgcp-compare-table__cell .bgcp-feature-list li {
	margin: 0 0 8px;
	padding-left: 18px;
	position: relative;
}

.bgcp-compare-table__cell .bgcp-feature-list li::before {
	background: #22c55e;
	border-radius: 999px;
	content: '';
	height: 6px;
	left: 0;
	position: absolute;
	top: 10px;
	width: 6px;
}

.bgcp-compare-table__cell .button,
.bgcp-compare-table__cell .bgcp-cart-button {
	align-items: center;
	background: #111827;
	border-radius: 999px;
	color: #ffffff;
	display: inline-flex;
	font-size: 13px;
	font-weight: 800;
	justify-content: center;
	line-height: 1;
	min-height: 40px;
	padding: 12px 18px;
	text-decoration: none;
}

.bgcp-compare-table__cell .button:hover,
.bgcp-compare-table__cell .button:focus-visible,
.bgcp-compare-table__cell .bgcp-cart-button:hover,
.bgcp-compare-table__cell .bgcp-cart-button:focus-visible {
	background: #1f2937;
	color: #ffffff;
	outline: none;
}

.bgcp-compare-table__section th {
	background: #111827;
	border-bottom-color: #111827;
	color: #ffffff;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.02em;
	padding: 14px 18px;
	text-transform: uppercase;
}

.bgcp-compare-dash {
	color: #9ca3af;
}

.bgcp-compare-empty,
.bgcp-compare-error,
.bgcp-compare-loader {
	align-items: center;
	color: #6b7280;
	display: flex;
	flex-direction: column;
	gap: 8px;
	justify-content: center;
	min-height: 220px;
	padding: 34px 24px;
	text-align: center;
}

.bgcp-compare-empty strong,
.bgcp-compare-error {
	color: #111827;
	font-size: 20px;
	font-weight: 800;
}

.bgcp-compare-error {
	color: #b91c1c;
}

.bgcp-compare-loader::before {
	animation: bgcpSpinner 800ms linear infinite;
	border: 3px solid #e5e7eb;
	border-radius: 999px;
	border-top-color: #111827;
	content: '';
	display: block;
	height: 28px;
	margin-bottom: 8px;
	width: 28px;
}

@keyframes bgcpSpinner {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@media (max-width: 767px) {
	.bgcp-compare-head {
		align-items: stretch;
		flex-direction: column;
	}

	.bgcp-compare-share {
		justify-content: center;
		width: 100%;
	}

	.bgcp-compare-table {
		min-width: 680px;
	}

	.bgcp-compare-table th,
	.bgcp-compare-table td {
		padding: 14px;
	}

	.bgcp-compare-table__label {
		width: 170px;
	}

	.bgcp-product-card {
		min-height: 220px;
	}

	.bgcp-product-card__image {
		height: 116px;
	}
}

/* Compare table column search */
.bgcp-compare-share.is-disabled {
	opacity: 0.6;
}

.bgcp-column-search {
	margin: 4px 0 8px;
	position: relative;
	width: 100%;
	z-index: 5;
}

.bgcp-column-search__input {
	appearance: none;
	-webkit-appearance: none;
	background: #ffffff;
	border: 1px solid #dbe2ea;
	border-radius: 999px;
	box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
	color: #111827;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
	min-height: 38px;
	padding: 9px 14px;
	transition: border-color 180ms ease, box-shadow 180ms ease;
	width: 100%;
}

.bgcp-column-search__input:focus {
	border-color: #111827;
	box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.12);
	outline: none;
}

.bgcp-column-search__results {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
	left: 0;
	max-height: 300px;
	overflow-y: auto;
	padding: 6px;
	position: absolute;
	right: 0;
	top: calc(100% + 8px);
	z-index: 9999;
}

.bgcp-column-search__notice {
	color: #6b7280;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
	padding: 12px;
	text-align: center;
}

.bgcp-column-search__results.is-error .bgcp-column-search__notice {
	color: #b91c1c;
}

.bgcp-column-search__item {
	appearance: none;
	-webkit-appearance: none;
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 12px;
	color: #111827;
	cursor: pointer;
	display: grid;
	gap: 10px;
	grid-template-columns: 46px 1fr;
	padding: 8px;
	text-align: left;
	transition: background-color 160ms ease;
	width: 100%;
}

.bgcp-column-search__item:hover,
.bgcp-column-search__item:focus-visible {
	background: #f3f4f6;
	outline: none;
}

.bgcp-column-search__thumb {
	align-items: center;
	background: #f8fafc;
	border-radius: 10px;
	display: flex;
	height: 46px;
	justify-content: center;
	overflow: hidden;
	width: 46px;
}

.bgcp-column-search__thumb img {
	height: 100%;
	max-height: 42px;
	max-width: 42px;
	object-fit: contain;
	width: auto;
}

.bgcp-column-search__meta,
.bgcp-column-search__sub {
	display: grid;
	gap: 3px;
	min-width: 0;
}

.bgcp-column-search__title {
	color: #111827;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.3;
}

.bgcp-column-search__sub {
	align-items: center;
	color: #6b7280;
	font-size: 12px;
	font-weight: 600;
	grid-auto-flow: column;
	justify-content: start;
}

.bgcp-column-search__price del {
	color: #9ca3af;
}

.bgcp-column-search__price ins {
	background: transparent;
	color: #dc2626;
	font-weight: 800;
	text-decoration: none;
}

@media (max-width: 767px) {
	.bgcp-compare-table-widget.is-search-open .bgcp-compare-table-scroll {
		min-height: 340px;
	}

	.bgcp-column-search__results {
		max-height: 260px;
	}
}

/* Compare table cart action polish */
.bgcp-compare-table__cell .bgcp-cart-button {
	position: relative;
	white-space: nowrap;
	transition: background-color 180ms ease, color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.bgcp-compare-table__cell .bgcp-cart-button:hover,
.bgcp-compare-table__cell .bgcp-cart-button:focus-visible {
	transform: translateY(-1px);
}

.bgcp-compare-table__cell .bgcp-cart-button.is-loading {
	cursor: wait;
	opacity: 0.78;
	padding-right: 42px;
	pointer-events: none;
}

.bgcp-compare-table__cell .bgcp-cart-button.is-loading::after {
	animation: bgcpSpinner 800ms linear infinite;
	border: 2px solid rgba(255, 255, 255, 0.45);
	border-radius: 999px;
	border-top-color: #ffffff;
	content: '';
	height: 14px;
	right: 16px;
	position: absolute;
	top: calc(50% - 7px);
	width: 14px;
}

.bgcp-compare-table__cell .bgcp-cart-button.added {
	background: #166534;
}

.bgcp-compare-table-scroll:focus-visible {
	box-shadow: inset 0 0 0 3px rgba(17, 24, 39, 0.14);
	outline: none;
}

@media (max-width: 767px) {
	.bgcp-compare-table__cell .bgcp-cart-button {
		width: 100%;
	}
}

/* Dynamic tab/mobile compare layout. JS applies .is-tab-mobile from plugin breakpoint settings. */
.bgcp-compare-table-widget.is-tab-mobile {
	--bgcp-mobile-sticky-top: 0px;
	--bgcp-mobile-row-min-height: 34px;
	--bgcp-mobile-label-min-height: 28px;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-compare-head {
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 18px;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-compare-title {
	font-size: clamp(26px, 7vw, 34px);
	letter-spacing: -0.03em;
	line-height: 1.1;
	margin-bottom: 6px;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-compare-description {
	font-size: 15px;
	line-height: 1.55;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-compare-share {
	align-self: center;
	box-shadow: none;
	min-height: 38px;
	padding: 10px 18px;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-compare-table-shell,
.bgcp-compare-table-widget.is-tab-mobile.is-search-open .bgcp-compare-table-shell {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	overflow: visible;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-compare-table-scroll {
	overflow: visible;
	width: 100%;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-compare-table {
	background: #ffffff;
	border-collapse: separate;
	border-spacing: 0;
	min-width: 0;
	table-layout: fixed;
	width: 100%;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-compare-table th,
.bgcp-compare-table-widget.is-tab-mobile .bgcp-compare-table td {
	border-bottom: 0;
	border-right: 1px solid #eef0f4;
	padding: 0;
	text-align: left;
	vertical-align: top;
	width: auto;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-compare-table th:last-child,
.bgcp-compare-table-widget.is-tab-mobile .bgcp-compare-table td:last-child {
	border-right: 0;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-compare-table__mobile-product {
	background: #ffffff;
	padding: 6px 8px 12px;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-product-card {
	gap: 6px;
	min-height: 0;
	padding: 0 4px;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-product-card--empty {
	justify-content: flex-start;
	min-height: 56px;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-column-search {
	margin: 0 0 8px;
	z-index: 80;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-column-search__input {
	border: 1px solid #d9dfe8;
	border-radius: 4px;
	box-shadow: none;
	font-size: 12px;
	font-weight: 500;
	min-height: 34px;
	padding: 8px 10px;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-column-search__input:focus {
	border-color: #4056e8;
	box-shadow: 0 0 0 2px rgba(64, 86, 232, 0.16);
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-column-search__results {
	border-radius: 10px;
	box-shadow: 0 16px 36px rgba(15, 23, 42, 0.18);
	max-height: 260px;
	z-index: 99999;
}

.bgcp-compare-table-widget.is-tab-mobile.is-search-open .bgcp-compare-table-scroll {
	min-height: 340px;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-product-card__remove {
	height: 24px;
	right: 0;
	top: 38px;
	width: 24px;
	z-index: 5;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-product-card__image {
	height: 112px;
	margin: 8px auto 4px;
	max-width: 136px;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-product-card__image img {
	max-height: 112px;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-product-card__title {
	color: #111827;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.18;
	min-height: 32px;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-product-card__price {
	font-size: 13px;
	line-height: 1.15;
	margin-top: 2px;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-price {
	gap: 5px;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-price__sale,
.bgcp-compare-table-widget.is-tab-mobile .bgcp-product-card__price ins {
	font-size: 19px;
	font-weight: 500;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-price__regular,
.bgcp-compare-table-widget.is-tab-mobile .bgcp-product-card__price del {
	font-size: 11px;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-price__single-regular {
	font-size: 19px;
	font-weight: 500;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-compare-mobile-sticky {
	display: grid;
	grid-template-columns: repeat(var(--bgcp-mobile-columns, 2), minmax(0, 1fr));
	left: var(--bgcp-mobile-sticky-left, 0px);
	opacity: 0;
	pointer-events: none;
	position: fixed;
	top: var(--bgcp-mobile-sticky-top, 0px);
	transform: translateY(-4px);
	transition: opacity 140ms ease, transform 140ms ease;
	visibility: hidden;
	width: var(--bgcp-mobile-sticky-width, 100%);
	z-index: 9998;
}

.bgcp-compare-table-widget.is-tab-mobile.is-mobile-sticky-active .bgcp-compare-mobile-sticky {
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-compare-table__mobile-sticky-name {
	align-items: center;
	background: #ffffff;
	border-right: 1px solid #eef0f4;
	box-shadow: 0 1px 0 #e5e7eb, 0 8px 16px rgba(15, 23, 42, 0.06);
	color: #1f2937;
	display: flex;
	font-size: 13px;
	font-weight: 500;
	justify-content: center;
	line-height: 1.18;
	min-height: 42px;
	padding: 6px 8px;
	text-align: center;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-compare-table__mobile-sticky-name:last-child {
	border-right: 0;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-compare-table__mobile-sticky-title-text {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-compare-table__mobile-label {
	background: #f4f6f8;
	border-right: 0;
	color: #5f6874;
	display: table-cell;
	font-size: 11px;
	font-style: normal;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1.2;
	height: var(--bgcp-mobile-label-min-height, 28px);
	padding: 6px 8px;
	text-align: center;
	text-transform: none;
	width: auto;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-compare-table__mobile-value {
	background: #ffffff;
	color: #111827;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.35;
	height: var(--bgcp-mobile-row-min-height, 34px);
	padding: 7px 10px;
	word-break: break-word;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-compare-table__mobile-value p,
.bgcp-compare-table-widget.is-tab-mobile .bgcp-compare-table__mobile-value ul,
.bgcp-compare-table-widget.is-tab-mobile .bgcp-compare-table__mobile-value ol {
	margin-bottom: 0;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-compare-table__mobile-value .bgcp-feature-list li {
	margin-bottom: 7px;
	padding-left: 16px;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-compare-table__mobile-value .bgcp-feature-list li::before {
	height: 5px;
	width: 5px;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-compare-table__mobile-value-row .bgcp-compare-table__mobile-value {
	border-bottom: 0;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-compare-table__mobile-label-row + .bgcp-compare-table__mobile-value-row .bgcp-compare-table__mobile-value {
	border-bottom: 1px solid #eef0f4;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-compare-table__mobile-section th {
	background: #06131d;
	border-bottom: 0;
	border-right: 0;
	padding: 0;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-compare-table__section-toggle {
	align-items: center;
	appearance: none;
	-webkit-appearance: none;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	color: #ffffff;
	cursor: pointer;
	display: flex;
	font-size: 13px;
	font-weight: 700;
	justify-content: space-between;
	letter-spacing: 0;
	line-height: 1;
	min-height: 39px;
	padding: 12px 15px;
	text-align: left;
	text-transform: none;
	width: 100%;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-compare-table__section-toggle:hover,
.bgcp-compare-table-widget.is-tab-mobile .bgcp-compare-table__section-toggle:focus-visible {
	background: transparent;
	color: #ffffff;
	outline: none;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-compare-table__section-icon {
	font-size: 15px;
	line-height: 1;
	transition: transform 160ms ease;
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-compare-table__mobile-section.is-collapsed .bgcp-compare-table__section-icon {
	transform: rotate(-90deg);
}

.bgcp-compare-table-widget.is-tab-mobile .bgcp-compare-table__mobile-value .bgcp-cart-button {
	border-radius: 3px;
	font-size: 12px;
	font-weight: 700;
	min-height: 38px;
	padding: 10px 12px;
	width: 100%;
}

@media (max-width: 767px) {
	.bgcp-compare-table-widget.is-tab-mobile .bgcp-compare-head {
		align-items: stretch;
		flex-direction: column;
		gap: 14px;
	}

	.bgcp-compare-table-widget.is-tab-mobile .bgcp-compare-share {
		align-self: center;
		width: auto;
	}

	.bgcp-compare-table-widget.is-tab-mobile .bgcp-compare-table__mobile-product {
		padding: 5px 8px 10px;
	}

	.bgcp-compare-table-widget.is-tab-mobile .bgcp-product-card {
		gap: 5px;
		padding: 0 2px;
	}

	.bgcp-compare-table-widget.is-tab-mobile .bgcp-column-search__input {
		font-size: 12px;
		min-height: 34px;
		padding: 8px;
	}

	.bgcp-compare-table-widget.is-tab-mobile .bgcp-product-card__image {
		height: 92px;
		max-width: 118px;
	}

	.bgcp-compare-table-widget.is-tab-mobile .bgcp-product-card__image img {
		max-height: 92px;
	}

	.bgcp-compare-table-widget.is-tab-mobile .bgcp-product-card__title {
		font-size: 12px;
		line-height: 1.2;
		min-height: 30px;
	}

	.bgcp-compare-table-widget.is-tab-mobile .bgcp-price__sale,
	.bgcp-compare-table-widget.is-tab-mobile .bgcp-product-card__price ins,
	.bgcp-compare-table-widget.is-tab-mobile .bgcp-price__single-regular {
		font-size: 18px;
	}

	.bgcp-compare-table-widget.is-tab-mobile .bgcp-compare-table__mobile-sticky-name {
		font-size: 12px;
		min-height: 40px;
		padding: 6px 7px;
	}

	.bgcp-compare-table-widget.is-tab-mobile .bgcp-compare-table__mobile-label {
		font-size: 11px;
		padding: 6px 8px;
	}

	.bgcp-compare-table-widget.is-tab-mobile .bgcp-compare-table__mobile-value {
		font-size: 11px;
		line-height: 1.36;
		padding: 6px 9px;
	}

	.bgcp-compare-table-widget.is-tab-mobile .bgcp-compare-table__section-toggle {
		font-size: 12px;
		min-height: 38px;
		padding: 12px 14px;
	}
}
