/*
 * Fallback CSS for Affiliate Product Manager.
 *
 * The theme's internal.css owns the ProductCard / ModelPlaceholder look. This
 * file only adds .vpl-af-buy (the amber affiliate CTA as a real anchor, since
 * the theme's .vpl-aff-soon is a non-clickable placeholder), plus minimal
 * safety styles so cards remain usable if the theme CSS is ever absent.
 */

.vpl-af-buy {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	padding: 0 14px;
	border-radius: var(--radius-btn, 12px);
	background: var(--amber-500, #F5A623);
	border: none;
	color: #1A1203;
	font-family: var(--font-body, system-ui, sans-serif);
	font-weight: 800;
	font-size: .94rem;
	text-decoration: none;
	text-align: center;
	box-shadow: 0 8px 20px -8px rgba(245, 166, 35, .6);
	transition: transform .15s ease, box-shadow .15s ease;
}

.vpl-af-buy:hover,
.vpl-af-buy:focus {
	color: #1A1203;
	transform: translateY(-1px);
	box-shadow: 0 12px 24px -8px rgba(245, 166, 35, .7);
}

/*
 * Editorial badge ("Mejor relación", "Más silencioso"...). Optional per product
 * (meta _vpl_af_badge). Sits opposite the "Información verificada" seal, above
 * the photo. Amber pill, same look the hand-built home cards used.
 */
.vpl-mp-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
	background: var(--amber-500, #F5A623);
	color: var(--navy-900, #0A1A2F);
	font-family: var(--font-head, 'Sora', sans-serif);
	font-weight: 700;
	font-size: 11px;
	letter-spacing: .02em;
	text-transform: uppercase;
	padding: 5px 11px;
	border-radius: 999px;
	box-shadow: 0 4px 12px -4px rgba(10, 26, 47, .35);
}
