/* Shake Animation & General Banner CSS */
.cta-shake-btn {
	animation: shakeBtn 6s infinite ease-in-out;
}

@keyframes shakeBtn {
	0%, 90%, 100% {
		transform: translateX(0) scale(1);
	}
	91% {
		transform: translateX(-5px) rotate(-1deg);
	}
	93% {
		transform: translateX(5px) rotate(1deg);
	}
	95% {
		transform: translateX(-4px) rotate(-1deg);
	}
	97% {
		transform: translateX(4px) rotate(1deg);
	}
	99% {
		transform: translateX(-2px) scale(1.02);
	}
}

/* Geo-banner styles */
#eu-geo-currency-banner-184cedfc {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #111;
	color: #fff;
	text-align: center;
	padding: 15px 24px;
	z-index: 999999;
	font-family: sans-serif;
	box-shadow: 0 -4px 15px rgba(0,0,0,0.5);
	border-top: 3px solid #9DFF00;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
}

#eu-geo-currency-banner-184cedfc button {
	background: #9DFF00;
	color: #000;
	border: none;
	padding: 8px 16px;
	font-weight: bold;
	border-radius: 4px;
	cursor: pointer;
	margin: 0 5px;
}

#eu-geo-currency-banner-184cedfc button.btn-no-184cedfc {
	background: #333;
	color: #fff;
}
