.nr-us-visitor-banner {
	position: fixed;
	left: 0;
	right: 0;
	top: var(--nr-us-banner-top, 0px);
	z-index: 98;
	background: brown;
	color: #fff;
	padding: 12px 14px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
	transition: top 120ms ease;
}

.nr-us-visitor-banner__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.nr-us-visitor-banner__text {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	line-height: 1.25;
}

.nr-us-visitor-banner__actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
}

.nr-us-visitor-banner__primary {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #fff;
	color: #dc6648;
	border-radius: 6px;
	padding: 8px 12px;
	text-decoration: none;
	font-weight: 600;
	white-space: nowrap;
}

.nr-us-visitor-banner__primary:hover,
.nr-us-visitor-banner__primary:focus {
	text-decoration: none;
	filter: brightness(0.98);
	background: #dc6648;
	color: #fff;
}

.nr-us-visitor-banner__secondary {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.75);
	color: #fff;
	border-radius: 6px;
	padding: 8px 10px;
	cursor: pointer;
	white-space: nowrap;
}

.nr-us-visitor-banner__secondary:hover,
.nr-us-visitor-banner__secondary:focus {
	background: rgba(255, 255, 255, 0.08);
}

.nr-us-visitor-banner__close {
	background: transparent;
	border: 0;
	color: #fff;
	font-size: 22px;
	line-height: 1;
	padding: 0 4px;
	cursor: pointer;
}

@media screen and (max-width: 860px) {
	.nr-us-visitor-banner__inner {
		flex-direction: column;
		align-items: flex-start;
	}
	.nr-us-visitor-banner__actions {
		width: 100%;
		justify-content: flex-start;
		flex-wrap: wrap;
	}
}

.nr-us-visitor-floater {
	position: fixed;
	right: 20px;
	top: var(--nr-us-floater-top, 10px);
	z-index: 99999;
}

.nr-us-visitor-floater__button {
	position: relative;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: linear-gradient(135deg, #eb5e3b 0%, #c44020 100%);
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-top: 2px solid #ff3b30;
	border-radius: 999px;
	padding: 8px 15px;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.3px;
	box-shadow: 
		0 4px 6px -1px rgba(220, 102, 72, 0.2), 
		0 10px 15px -3px rgba(220, 102, 72, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	cursor: pointer;
	backdrop-filter: blur(8px);
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	animation: button-pulse 2.5s infinite;
}

.nr-us-visitor-floater__button::after {
	content: '';
	position: absolute;
	top: 0;
	left: -150%;
	width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
	transform: skewX(-25deg);
	animation: shine-sweep 3s ease-in-out infinite;
	pointer-events: none;
}

@keyframes shine-sweep {
	0% { left: -150%; }
	20% { left: 250%; }
	100% { left: 250%; }
}

@keyframes button-pulse {
	0% {
		box-shadow: 
			0 4px 6px -1px rgba(220, 102, 72, 0.2), 
			0 10px 15px -3px rgba(220, 102, 72, 0.3),
			inset 0 1px 0 rgba(255, 255, 255, 0.2),
			0 0 0 0 rgba(220, 102, 72, 0.7);
	}
	70% {
		box-shadow: 
			0 4px 6px -1px rgba(220, 102, 72, 0.2), 
			0 10px 15px -3px rgba(220, 102, 72, 0.3),
			inset 0 1px 0 rgba(255, 255, 255, 0.2),
			0 0 0 10px rgba(220, 102, 72, 0);
	}
	100% {
		box-shadow: 
			0 4px 6px -1px rgba(220, 102, 72, 0.2), 
			0 10px 15px -3px rgba(220, 102, 72, 0.3),
			inset 0 1px 0 rgba(255, 255, 255, 0.2),
			0 0 0 0 rgba(220, 102, 72, 0);
	}
}

.nr-us-visitor-floater__button:hover,
.nr-us-visitor-floater__button:focus {
	transform: translateY(-2px) scale(1.02);
	/* background: linear-gradient(135deg, #f26f4f 0%, #d14d2e 100%); */
	box-shadow: 
		0 6px 12px -2px rgba(220, 102, 72, 0.3), 
		0 15px 25px -5px rgba(220, 102, 72, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
	/* color: #ffffff; */
	outline: none;
	background: white;
	color: #dc6648;
}
