/* Khẩu hiệu (Fixed) — sticky promo bar at the bottom of every page. */

.blockify-fixed-bar {
	position: fixed;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	max-width: min(900px, calc(100vw - 32px));
	z-index: 90;
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 12px 16px 12px 20px;
	border-radius: 90px;
	background: linear-gradient(139deg, #ff592c 12.7%, #401a99 98.1%);
	color: #fcfcfd;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.4;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.blockify-fixed-bar.is-dismissed {
	opacity: 0;
	pointer-events: none;
	transform: translateX(-50%) translateY(20px);
}

.blockify-fixed-bar-inner {
	flex: 1 1 auto;
	min-width: 0;
}

.blockify-fixed-bar-inner > div {
	display: inline;
}

.blockify-fixed-bar-inner a {
	color: #fcfcfd;
	text-decoration: underline;
	font-weight: 700;
}

.blockify-fixed-bar-inner a:hover {
	opacity: 0.9;
}

.blockify-fixed-bar-close {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	border: 0;
	color: #fcfcfd;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s ease;
}

.blockify-fixed-bar-close:hover {
	background: rgba(255, 255, 255, 0.28);
}

@media (max-width: 640px) {
	.blockify-fixed-bar {
		bottom: 12px;
		padding: 10px 12px 10px 16px;
		font-size: 0.875rem;
		border-radius: 16px;
		gap: 12px;
	}
}
