.wdc-wrapper {
	--wdc-borde: #E0E0E0;
	--wdc-destacado: #1E6FD9;
	--wdc-precio: #C0284D;
	--wdc-boton-fondo: #E52B3C;
	--wdc-boton-texto: #FFFFFF;
	max-width: 1100px;
	margin: 0 auto;
}

.wdc-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 16px;
	align-items: stretch;
}

.wdc-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background: #fff;
	border: 2px solid var(--wdc-borde);
	border-radius: 10px;
	padding: 22px 14px 18px;
	cursor: pointer;
	transition: box-shadow .15s ease, border-color .15s ease, transform .1s ease;
}

.wdc-card:hover {
	box-shadow: 0 4px 14px rgba(0,0,0,.08);
}

.wdc-card.wdc-selected {
	border-color: var(--wdc-destacado);
	box-shadow: 0 4px 14px rgba(0,0,0,.12);
	transform: translateY(-2px);
}

.wdc-card--destacado {
	border-color: var(--wdc-destacado);
}

.wdc-badge {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--wdc-destacado);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .03em;
	padding: 5px 10px;
	border-radius: 4px;
	white-space: nowrap;
}

.wdc-radio {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.wdc-icon-top {
	color: #E5384C;
	margin-bottom: 10px;
	min-height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.wdc-icon-top img { max-width: 34px; max-height: 34px; object-fit: contain; }

.wdc-precio {
	font-size: 22px;
	font-weight: 800;
	color: var(--wdc-precio);
	margin-bottom: 6px;
}

.wdc-precio-libre {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}
.wdc-precio-libre .wdc-moneda { font-size: 18px; white-space: nowrap; }
.wdc-input-monto {
	width: 100px;
	max-width: 100%;
	box-sizing: border-box;
	padding: 4px 6px;
	font-size: 20px;
	font-weight: 700;
	color: var(--wdc-precio);
	border: none;
	border-bottom: 2px solid var(--wdc-borde);
	text-align: center;
	background: transparent;
	-moz-appearance: textfield;
}
.wdc-input-monto::-webkit-outer-spin-button,
.wdc-input-monto::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.wdc-input-monto:focus { outline: none; border-color: var(--wdc-destacado); }

.wdc-desc {
	font-size: 13px;
	color: #444;
	line-height: 1.35;
	margin-bottom: 14px;
	min-height: 34px;
}

.wdc-icon-bottom {
	margin-top: 4px;
	color: #2f6f8f;
	display: flex;
	align-items: center;
	justify-content: center;
}
.wdc-icon-bottom img { max-width: 30px; max-height: 30px; object-fit: contain; }

.wdc-mensaje {
	max-width: 480px;
	margin: 16px auto 0;
	text-align: center;
	color: #C0284D;
	font-size: 14px;
}

.wdc-boton-donar {
	display: block;
	margin: 22px auto 0;
	background: var(--wdc-boton-fondo);
	color: var(--wdc-boton-texto);
	border: none;
	border-radius: 30px;
	padding: 14px 46px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .02em;
	cursor: pointer;
	transition: opacity .15s ease;
}
.wdc-boton-donar:hover { opacity: .9; }
.wdc-boton-donar:disabled { opacity: .6; cursor: not-allowed; }
