.zc-sticky-atc {
	--zc-sticky-side-gap: 24px;
	position: fixed;
	left: 50%;
	bottom: 20px;
	width: calc(100% - (var(--zc-sticky-side-gap) * 2));
	max-width: 1180px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	column-gap: 24px;
	padding: 14px 14px 14px 20px;
	margin: 0;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(29, 29, 27, 0.12);
	border-radius: 18px;
	box-shadow: 0 16px 45px rgba(21, 21, 19, 0.16);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
	z-index: 9990;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate3d(-50%, calc(100% + 90px), 0);
	transition:
		opacity 240ms ease,
		transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
		visibility 0s linear 320ms;
	will-change: transform, opacity;
}

.zc-sticky-atc.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate3d(-50%, 0, 0);
	transition:
		opacity 220ms ease,
		transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
		visibility 0s linear 0s;
}

.zc-sticky-atc__content {
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 3px;
}

.zc-sticky-atc__eyebrow {
	width: 100%;
	margin: 0;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #6d6d68;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.zc-sticky-atc__mainline {
	width: 100%;
	min-width: 0;
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 10px;
}

.zc-sticky-atc__title {
	min-width: 0;
	max-width: 100%;
	margin: 0;
	font-size: 17px;
	font-weight: 650;
	line-height: 1.25;
	color: #1d1d1b;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.zc-sticky-atc__price {
	flex: 0 0 auto;
	margin: 0;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.25;
	color: #1d1d1b;
	white-space: nowrap;
}

.zc-sticky-atc__from {
	display: inline-block;
	margin-right: 5px;
	font-size: 0.78em;
	font-weight: 300;
	line-height: inherit;
	vertical-align: 0.08em;
}

.zc-sticky-atc__unit {
	display: inline;
	font-size: 0.82em;
	font-weight: 300;
	line-height: inherit;
}

.zc-sticky-atc__price > .price,
.zc-sticky-atc__price .woocommerce-Price-amount {
	display: inline;
}

.zc-sticky-atc__price del {
	opacity: 0.5;
	font-weight: 500;
	margin-right: 5px;
}

.zc-sticky-atc__price ins {
	color: inherit;
	text-decoration: none;
}

.zc-sticky-atc__support {
	width: 100%;
	margin: 0;
	font-size: 12px;
	font-weight: 450;
	line-height: 1.35;
	color: #6d6d68;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.zc-sticky-atc__button {
	flex: 0 0 auto;
	min-width: 220px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	margin: 0;
	padding: 14px 20px;
	border: 1px solid #1d1d1b;
	border-radius: 12px;
	background: #1d1d1b;
	color: #fff;
	font-family: inherit;
	font-size: 14px;
	font-weight: 650;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	box-shadow: none;
	outline: none;
	transition:
		background-color 180ms ease,
		border-color 180ms ease,
		color 180ms ease,
		transform 180ms ease;
}

.zc-sticky-atc__button:hover,
.zc-sticky-atc__button:focus-visible {
	background: #3a3a35;
	border-color: #3a3a35;
	color: #fff;
	transform: translateY(-1px);
}

.zc-sticky-atc__button:active {
	transform: translateY(0);
}

.zc-sticky-atc__button:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

.zc-sticky-atc__button-text--mobile {
	display: none;
}

.zc-sticky-atc__icon,
.zc-sticky-atc__icon svg,
.zc-sticky-atc__icon i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	line-height: 1;
}

.zc-sticky-atc__icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.zc-sticky-atc-target-highlight {
	animation: zc-sticky-atc-target-highlight 900ms ease;
}

@keyframes zc-sticky-atc-target-highlight {
	0%,
	100% {
		filter: none;
	}
	35% {
		filter: drop-shadow(0 0 8px rgba(29, 29, 27, 0.2));
	}
}

@media (max-width: 1024px) {
	.zc-sticky-atc {
		--zc-sticky-side-gap: 20px;
		bottom: 16px;
		column-gap: 18px;
		padding: 12px 12px 12px 16px;
	}

	.zc-sticky-atc__button {
		min-width: 190px;
	}
}

@media (max-width: 767px) {
	.zc-sticky-atc {
		--zc-sticky-side-gap: 12px;
		bottom: max(10px, env(safe-area-inset-bottom));
		grid-template-columns: minmax(0, 1fr) auto;
		column-gap: 10px;
		padding: 10px 10px 10px 12px;
		border-radius: 15px;
	}

	.zc-sticky-atc__content {
		gap: 1px;
	}

	.zc-sticky-atc__eyebrow,
	.zc-sticky-atc__support {
		display: none;
	}

	.zc-sticky-atc--show-eyebrow-mobile .zc-sticky-atc__eyebrow {
		display: block;
	}

	.zc-sticky-atc--show-support-mobile .zc-sticky-atc__support {
		display: block;
	}

	.zc-sticky-atc__mainline {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		gap: 1px;
	}

	.zc-sticky-atc__title {
		width: 100%;
		font-size: 14px;
	}

	.zc-sticky-atc__price {
		font-size: 15px;
	}

	.zc-sticky-atc__button {
		min-width: 130px;
		padding: 12px 14px;
		border-radius: 11px;
		font-size: 13px;
	}

	.zc-sticky-atc__button-text--desktop {
		display: none;
	}

	.zc-sticky-atc__button-text--mobile {
		display: inline;
	}
}

@media (max-width: 390px) {
	.zc-sticky-atc__button {
		min-width: 112px;
		padding-right: 11px;
		padding-left: 11px;
	}

	.zc-sticky-atc__icon {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.zc-sticky-atc,
	.zc-sticky-atc__button {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
	}
}
