
.sticky-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 999;
	background: var(--gold);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	padding: 14px 24px;
	box-shadow: 0 -4px 24px rgba(0, 0, 0, .18);
	transform: translateY(100%);
	transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

.sticky-bar.visible {
	transform: translateY(0);
}

.sticky-bar a {
	background: var(--navy);
	color: var(--white);
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
	padding: 10px 24px;
	border-radius: 4px;
	letter-spacing: .06em;
	text-transform: uppercase;
	transition: background .2s;
	white-space: nowrap;
}

.sticky-bar a:hover {
	background: #1a4fd6;
}
