.oh-rifa {
	--oh-verde: #7fe0a0;
	--oh-verde-oscuro: #16a34a;
	--oh-naranja: #f7941d;
	--oh-amarillo: #ffd76a;
	--oh-rosa: #f6c9d2;
	--oh-rosa-texto: #c2536b;
	max-width: 760px;
	margin: 0 auto;
	font-family: inherit;
}

.oh-cabecera {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	margin-bottom: 14px;
}
.oh-rifa-imagen {
	width: 160px;
	height: 160px;
	object-fit: cover;
	border-radius: 12px;
	flex-shrink: 0;
}
.oh-titulo {
	color: var(--oh-naranja);
	font-size: 1.6em;
	font-weight: 800;
	margin: 0 0 8px 0;
	line-height: 1.2;
}
.oh-fecha { margin: 0; color: #333; }

.oh-barra-progreso {
	background: #eee;
	border-radius: 999px;
	height: 10px;
	overflow: hidden;
	margin: 14px 0 10px 0;
}
.oh-barra-avance {
	background: #111;
	height: 100%;
	border-radius: 999px;
	transition: width 0.3s ease;
}

.oh-contadores {
	display: flex;
	gap: 18px;
	font-weight: 600;
	color: #1565c0;
	margin-bottom: 10px;
	flex-wrap: wrap;
}

.oh-leyenda {
	display: flex;
	gap: 18px;
	margin-bottom: 16px;
	flex-wrap: wrap;
	font-size: 0.95em;
	color: #444;
}
.oh-punto {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	margin-right: 5px;
}
.oh-punto-disponible { background: var(--oh-verde-oscuro); }
.oh-punto-apartado { background: var(--oh-amarillo); }
.oh-punto-vendido { background: var(--oh-rosa-texto); }

.oh-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(52px, 1fr));
	gap: 8px;
	margin: 16px 0;
}
.oh-numero {
	padding: 12px 0;
	border: none;
	border-radius: 10px;
	background: #f2f2f2;
	cursor: pointer;
	font-weight: bold;
	font-size: 0.95em;
	color: #333;
	transition: transform 0.1s ease;
}
.oh-numero.oh-disponible { background: #d8f7e3; color: #1a7d3d; }
.oh-numero.oh-disponible:hover { background: var(--oh-verde); transform: translateY(-1px); }
.oh-numero.oh-apartado { background: #fff2cf; color: #8a6d00; cursor: not-allowed; }
.oh-numero.oh-vendido { background: var(--oh-rosa); color: var(--oh-rosa-texto); cursor: not-allowed; }
.oh-numero.oh-elegido { outline: 3px solid #1565c0; }

.oh-seleccionado { margin: 12px 0; font-size: 1.05em; font-weight: 600; }

.oh-tarjeta-seleccion {
	border: 1px solid #e6e6e6;
	border-radius: 14px;
	padding: 18px;
	margin-top: 18px;
	background: #fff;
	box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.oh-total-linea { font-weight: 400; color: #555; }

.oh-form-comprador { margin: 0; }
.oh-campos-comprador { margin-bottom: 4px; }
.oh-campos-comprador input {
	width: 100%;
	padding: 10px;
	margin-top: 4px;
	box-sizing: border-box;
	border: 1px solid #ddd;
	border-radius: 8px;
}
.oh-btn-pagar {
	margin-top: 12px;
	width: 100%;
	padding: 16px 20px;
	background: var(--oh-verde);
	color: #0b3d1f;
	border: none;
	border-radius: 999px;
	font-weight: 800;
	font-size: 1.1em;
	cursor: pointer;
}
.oh-btn-pagar:hover { background: #66d391; }
.oh-btn-pagar:disabled { opacity: 0.6; cursor: not-allowed; }
.oh-mensaje { color: #b71c1c; font-weight: bold; margin-top: 8px; }

@media (max-width: 480px) {
	.oh-cabecera { flex-direction: column; align-items: center; text-align: center; }
	.oh-rifa-imagen { width: 100%; height: auto; max-height: 220px; }
}
