/**
 * Trust Strip — sticky bottom bar.
 * Module 2.5 (BulkViews SEO Fixer)
 */

#bvseo-trust-strip,
.bvseo-trust-strip {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	background: linear-gradient( 90deg, #0a1929 0%, #1a3a5c 50%, #0a1929 100% );
	color: #fff;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 1.4;
	box-shadow: 0 -2px 12px rgba( 0, 0, 0, 0.18 );
	transform: translateY( 0 );
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.bvseo-trust-strip.is-dismissed {
	transform: translateY( 100% );
	opacity: 0;
	pointer-events: none;
}

.bvseo-trust-strip__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 12px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.bvseo-trust-strip__items {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	flex: 1;
	justify-content: center;
}

.bvseo-trust-strip__item {
	display: inline-block;
	font-weight: 600;
	letter-spacing: 0.2px;
	color: #fff;
	white-space: nowrap;
}

/* Highlight numeric items subtly */
.bvseo-trust-strip__item::first-letter {
	color: #ffd166;
}

.bvseo-trust-strip__sep {
	color: #ffd166;
	font-weight: 300;
	margin: 0 2px;
	font-size: 14px;
	opacity: 0.8;
}

.bvseo-trust-strip__dismiss {
	background: rgba( 255, 255, 255, 0.08 );
	border: 1px solid rgba( 255, 255, 255, 0.2 );
	color: #fff;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 18px;
	line-height: 1;
	padding: 0;
	font-family: inherit;
	transition: background 0.15s ease;
	flex-shrink: 0;
}

.bvseo-trust-strip__dismiss:hover {
	background: rgba( 255, 255, 255, 0.18 );
}

.bvseo-trust-strip__dismiss:focus {
	outline: 2px solid #ffd166;
	outline-offset: 2px;
}

/* Tablet */
@media (max-width: 1024px) {
	.bvseo-trust-strip__inner {
		padding: 10px 16px;
	}
	.bvseo-trust-strip__items {
		gap: 10px;
	}
	.bvseo-trust-strip {
		font-size: 13px;
	}
}

/* Mobile — hide separators, allow items to wrap, smaller font. */
@media (max-width: 640px) {
	.bvseo-trust-strip {
		font-size: 12px;
	}
	.bvseo-trust-strip__inner {
		padding: 8px 12px;
		gap: 8px;
	}
	.bvseo-trust-strip__sep {
		display: none;
	}
	.bvseo-trust-strip__items {
		gap: 6px 12px;
		justify-content: flex-start;
	}
	.bvseo-trust-strip__item {
		display: inline-flex;
		align-items: center;
		padding: 2px 8px;
		background: rgba( 255, 255, 255, 0.08 );
		border-radius: 12px;
		font-size: 11px;
	}
}

/* Don't let WooCommerce cart popups overlap below us */
body.has-bvseo-trust-strip {
	padding-bottom: 56px;
}

@media (max-width: 640px) {
	body.has-bvseo-trust-strip {
		padding-bottom: 80px;
	}
}
