.cc-anuncio {
	position: fixed;
	left: 14px;
	bottom: 14px;
	z-index: 9999;
	width: 200px;
	background: linear-gradient(160deg, #ffffff, #eef5ff);
	border-radius: 16px;
	padding: 14px 14px 16px;
	box-shadow: 0 10px 30px rgba(13, 63, 120, 0.25), 0 0 0 1px rgba(21,101,192,0.08);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	animation: cc-anuncio-entrada .5s ease-out;
	border: 1px solid #dceaff;
}

@keyframes cc-anuncio-entrada {
	from { transform: translateY(20px) scale(.9); opacity: 0; }
	to   { transform: translateY(0) scale(1); opacity: 1; }
}

.cc-anuncio-cerrar {
	position: absolute;
	top: 6px;
	right: 8px;
	background: none;
	border: none;
	font-size: 18px;
	line-height: 1;
	color: #8aa0b8;
	cursor: pointer;
	padding: 2px 6px;
}
.cc-anuncio-cerrar:hover { color: #1565c0; }

.cc-anuncio-precio {
	font-size: 0.82rem;
	font-weight: 700;
	color: #0d3f78;
	margin-bottom: 8px;
	padding-right: 16px;
}
.cc-anuncio-precio span {
	display: inline-block;
	background: #1565c0;
	color: #fff;
	font-size: 0.95rem;
	padding: 1px 8px;
	border-radius: 20px;
	margin-left: 4px;
}

.cc-anuncio-lista {
	list-style: none;
	margin: 0 0 12px;
	padding: 0;
	font-size: 0.78rem;
	color: #45525e;
	line-height: 1.5;
}
.cc-anuncio-lista li { white-space: nowrap; }

.cc-anuncio-btn {
	display: block;
	text-align: center;
	background: linear-gradient(135deg, #1565c0, #0d3f78);
	color: #fff !important;
	font-weight: 700;
	font-size: 0.85rem;
	padding: 9px 0;
	border-radius: 10px;
	text-decoration: none;
	letter-spacing: .3px;
	box-shadow: 0 4px 12px rgba(21,101,192,.4);
	transition: transform .15s ease, box-shadow .15s ease;
}
.cc-anuncio-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(21,101,192,.5);
}

/* Aún más compacto en pantallas muy pequeñas, para no tapar contenido */
@media (max-width: 420px) {
	.cc-anuncio { width: 170px; padding: 12px 12px 14px; left: 10px; bottom: 10px; }
	.cc-anuncio-lista { font-size: 0.72rem; }
	.cc-anuncio-precio { font-size: 0.76rem; }
}

.cc-anuncio.cc-anuncio-oculto { display: none; }
