#c2s-wa-float {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #25D366;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0,0,0,0.25);
	cursor: pointer;
	z-index: 999998;
	border: none;
}

#c2s-wa-float svg {
	width: 32px;
	height: 32px;
}

#c2s-premiado-float {
	position: fixed;
	bottom: 100px;
	right: 24px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0,0,0,0.3);
	cursor: pointer;
	z-index: 999997;
	border: none;
	padding: 0;
	overflow: hidden;
}

#c2s-premiado-float img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

#c2s-premiado-float::before {
	content: '';
	position: absolute;
	inset: -6px;
	border-radius: 50%;
	border: 2px solid #FDC500;
	opacity: 0;
	animation: c2s-pulse 2.4s ease-out infinite;
}

@keyframes c2s-pulse {
	0% { opacity: .55; transform: scale(1); }
	100% { opacity: 0; transform: scale(1.35); }
}

@media (prefers-reduced-motion: reduce) {
	#c2s-premiado-float::before { animation: none; display: none; }
}

#c2s-premiado-tip {
	position: fixed;
	bottom: 112px;
	right: 92px;
	background: #1C1B17;
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12.5px;
	font-weight: 600;
	padding: 8px 12px;
	border-radius: 8px;
	white-space: nowrap;
	z-index: 999997;
	opacity: 0;
	pointer-events: none;
	transition: opacity .2s ease;
}

#c2s-premiado-tip.c2s-tip-show {
	opacity: 1;
}

#c2s-wa-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 999999;
	align-items: center;
	justify-content: center;
}

#c2s-premiado-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 999999;
	align-items: center;
	justify-content: center;
}

#c2s-wa-overlay.c2s-wa-open, #c2s-premiado-overlay.c2s-wa-open {
	display: flex;
}

.c2s-wa-modal {
	background: #fff;
	border-radius: 10px;
	padding: 28px;
	width: 92%;
	max-width: 380px;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
	font-family: Arial, Helvetica, sans-serif;
}

.c2s-wa-close {
	position: absolute;
	top: 12px;
	right: 16px;
	font-size: 22px;
	cursor: pointer;
	color: #888;
	background: none;
	border: none;
	line-height: 1;
}

.c2s-wa-modal h3 {
	margin: 0 0 6px;
	font-size: 18px;
	color: #222;
}

.c2s-wa-modal p {
	margin: 0 0 18px;
	font-size: 13px;
	color: #666;
}

.c2s-wa-field {
	width: 100%;
	box-sizing: border-box;
	padding: 10px 12px;
	margin-bottom: 10px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 14px;
}

.c2s-wa-submit-btn {
	width: 100%;
	padding: 12px;
	background: #f2b705;
	color: #222;
	font-weight: bold;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-size: 15px;
}

.c2s-wa-submit-btn:disabled {
	opacity: 0.6;
	cursor: default;
}

.c2s-wa-error-box {
	color: #c0392b;
	font-size: 12px;
	margin: -4px 0 10px;
	display: none;
}
