#rtp-returning-visitor-popup {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 999999;
	width: 320px;
	max-width: calc(100vw - 40px);
	background-color: #ffffff;
	color: #212121;
	border-radius: 10px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	border: 1px solid #eaeaea;
	padding: 16px 18px;
	font-family: inherit;
	box-sizing: border-box;
	animation: rtpSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes rtpSlideIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.rtp-popup-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
}

.rtp-popup-title {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #FF9227;
	margin: 0;
}

#rtp-close-popup {
	background: transparent;
	border: none;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	color: #888;
	padding: 0 4px;
	transition: color 0.2s ease;
}

#rtp-close-popup:hover {
	color: #000;
}

.rtp-popup-content {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.rtp-popup-img {
	width: 50px;
	height: 50px;
	object-fit: cover;
	border-radius: 6px;
	flex-shrink: 0;
}

.rtp-popup-body {
	font-size: 15px;
	line-height: 1.4;
	color: #333333;
}

.rtp-popup-cta {
	display: inline-block;
	width: 100%;
	text-align: center;
	background-color: #FF9227;
	color: #ffffff !important;
	font-weight: 600;
	font-size: 13px;
	padding: 8px 12px;
	border-radius: 6px;
	text-decoration: none !important;
	box-sizing: border-box;
	transition: background-color 0.2s ease;
}

.rtp-popup-cta:hover {
	background-color: #e07d1c;
	color: #ffffff !important;
}
