/**
 * Free shipping banner: fixed bottom, centred card (shortcode can live anywhere in the markup).
 */

@keyframes antistat-fsb-breathe {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-5px);
	}
}

.antistat-fsb-fragment {
	position: fixed;
	left: 0;
	right: 0;
	bottom: calc(30px + env(safe-area-inset-bottom, 0px));
	z-index: 9998;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	padding: 0 16px;
	box-sizing: border-box;
	pointer-events: none;
}

/* Slot only: cart empty + no empty-cart message; keeps #antistat-fsb-banner in the DOM for AJAX fragments. */
.antistat-fsb-fragment.antistat-fsb-fragment--placeholder {
	display: none !important;
	visibility: hidden;
	pointer-events: none;
}

.antistat-fsb-strip {
	pointer-events: auto;
	width: 100%;
	max-width: min(100%, 560px);
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.35em;
	min-height: auto;
	padding: 0.75em 1.25em;
	font-size: 1.0625rem;
	line-height: 1.4;
	text-align: center;
	font-weight: 400;
	box-sizing: border-box;
	background: #fff;
	color: inherit;
	border-radius: 10px;
	box-shadow:
		0 4px 24px rgba(0, 0, 0, 0.12),
		0 0 0 1px rgba(0, 0, 0, 0.04);
	animation: antistat-fsb-breathe 2.8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
	.antistat-fsb-strip {
		animation: none;
	}
}

.antistat-fsb-strip__primary {
	font-size: 1.08em;
	font-weight: 700;
	line-height: 1.15;
}

/* Root-relative size so theme/em chains cannot inflate; normal weight even if HTML tags or theme rules target children. */
.antistat-fsb-strip__secondary {
	display: block;
	font-size: 0.8125rem;
	font-weight: 400 !important;
	line-height: 1.45;
	opacity: 0.88;
}

.antistat-fsb-strip__secondary strong,
.antistat-fsb-strip__secondary b {
	font-weight: 400 !important;
}

.antistat-fsb--progress,
.antistat-fsb--achieved,
.antistat-fsb--empty {
	background: #fff;
	color: inherit;
}

.antistat-fsb-quote-only-notice {
	margin-top: 0.75em;
	margin-bottom: 0;
	padding: 0;
	font-size: 0.875em;
	line-height: 1.45;
	clear: both;
}
