/* Free Shipping Bar – front-end styles */

.fsb-slot {
	display: block;
}

.fsb-bar {
	margin: 12px 0;
	font-size: 14px;
	line-height: 1.4;
	color: var(--fsb-text, #333);
}

.fsb-bar__text {
	margin: 0 0 8px;
}

.fsb-bar__track {
	position: relative;
	height: 8px;
	border-radius: 6px;
	background: var(--fsb-track, #ededed);
	overflow: hidden;
}

.fsb-bar__fill {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	border-radius: 6px;
	background: var(--fsb-fill, #c8a063);
	transition: width 0.4s ease;
}

.fsb-bar--complete .fsb-bar__text {
	color: var(--fsb-success, #2e7d32);
	font-weight: 600;
}

.fsb-bar--complete .fsb-bar__fill {
	background: var(--fsb-success, #2e7d32);
}

/* Mini-cart slot */
.fsb-slot[data-fsb-loc="minicart"] {
	padding: 10px 14px;
}

.fsb-slot[data-fsb-loc="minicart"] .fsb-bar {
	margin: 0;
}

/* Sticky slot (site-wide top bar) */
.fsb-slot[data-fsb-loc="sticky"] {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99999;
	padding: 8px 16px;
	text-align: center;
	background: #fff;
	box-shadow: 0 1px 6px rgba( 0, 0, 0, 0.12 );
}

.fsb-slot[data-fsb-loc="sticky"] .fsb-bar {
	margin: 0;
}

.fsb-slot[data-fsb-loc="sticky"] .fsb-bar__track {
	max-width: 420px;
	margin: 6px auto 0;
}
