.ccy-sticky-cta-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	max-width: 760px;
	margin: 0 auto;
	padding: 14px 20px;
	border-radius: 14px;
	background: rgba(255,255,255,.92);
	color: #101820;
	border: 1px solid rgba(16,24,32,.08);
	box-shadow: 0 12px 40px rgba(16,24,32,.18);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	box-sizing: border-box;
}

.ccy-sticky-cta-bar__copy {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 4px 8px;
	flex: 1 1 auto;
	min-width: 0;
}

.ccy-sticky-cta-bar__heading {
	font-size: 15px;
	font-weight: 900;
}

.ccy-sticky-cta-bar__body {
	font-size: 14px;
	opacity: .85;
}

.ccy-sticky-cta-bar__button.et_pb_button {
	flex: 0 0 auto;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	border-radius: 8px !important;
	border: none !important;
	font-weight: 900 !important;
	letter-spacing: .04em;
	text-transform: uppercase;
	padding: 12px 22px !important;
	background: #e17000 !important;
	color: #fff !important;
	-webkit-text-fill-color: #fff !important;
	transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

.ccy-sticky-cta-bar__button.et_pb_button:hover {
	filter: brightness(0.9);
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(16,24,32,.2);
}

/* Static variant: a normal, in-flow element — no floating/scroll behavior */
.ccy-sticky-cta-bar--static {
	position: relative;
}

/* Sticky variant: floats above the page and tracks the viewport while
   scrolling. Starts hidden and fades in once the visitor has scrolled
   past the configured threshold (handled by sticky-cta.js), on both
   desktop and mobile — the previous implementation disappeared entirely
   on small screens. */
.ccy-sticky-cta-bar--sticky {
	position: fixed;
	left: 50%;
	bottom: 18px;
	transform: translateX(-50%) translateY(12px);
	z-index: 999;
	width: calc(100% - 32px);
	opacity: 0;
	pointer-events: none;
	transition: opacity .25s ease, transform .25s ease;
}

.ccy-sticky-cta-bar--sticky.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}

@media (max-width: 640px) {
	.ccy-sticky-cta-bar {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
		padding: 14px 16px;
	}

	.ccy-sticky-cta-bar__copy {
		flex-direction: column;
		align-items: center;
		gap: 2px;
	}

	.ccy-sticky-cta-bar__button.et_pb_button {
		width: 100%;
	}

	.ccy-sticky-cta-bar--sticky {
		width: calc(100% - 24px);
		bottom: 12px;
	}
}
