.hysmart-coupon-banner {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 99999;
	max-width: 340px;
	background: #ffffff;
	border: 2px solid #1e3a8a;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba( 15, 23, 42, 0.25 );
	padding: 16px 18px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	animation: hysmart-fade-in 0.35s ease-out;
}

@keyframes hysmart-fade-in {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

.hysmart-coupon-banner__text {
	flex: 1 1 100%;
	font-size: 14px;
	color: #1f2937;
	margin: 0 0 4px;
}

.hysmart-coupon-banner__code {
	font-weight: 800;
	font-size: 18px;
	letter-spacing: 1px;
	color: #1e3a8a;
	background: #eef4ff;
	border-radius: 8px;
	padding: 6px 12px;
}

.hysmart-coupon-banner__copy {
	background: #16a34a;
	color: #fff;
	border: none;
	border-radius: 20px;
	padding: 8px 16px;
	font-weight: 700;
	font-size: 13px;
	cursor: pointer;
}

.hysmart-coupon-banner__copy:hover {
	background: #15803d;
}

.hysmart-coupon-banner__close {
	position: absolute;
	top: 6px;
	right: 10px;
	background: none;
	border: none;
	font-size: 18px;
	line-height: 1;
	color: #9ca3af;
	cursor: pointer;
}

@media ( max-width: 480px ) {
	.hysmart-coupon-banner {
		left: 12px;
		right: 12px;
		max-width: none;
	}
}
