/* Botón dentro del post */
.rma-boton-wrap {
	margin: 24px 0;
	text-align: center;
}

.rma-boton-mensaje {
	display: inline-block;
	padding: 12px 28px;
	background: #d63384;
	color: #fff;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	transition: transform .15s ease, background .15s ease;
}

.rma-boton-mensaje:hover {
	background: #b02a6c;
	transform: translateY(-2px);
	color: #fff;
}

/* Página estilo chat */
.rma-chat-wrap {
	max-width: 720px;
	margin: 30px auto;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 2px 18px rgba(0,0,0,.08);
	padding: 24px;
}

.rma-chat-header {
	border-bottom: 1px solid #eee;
	padding-bottom: 16px;
	margin-bottom: 20px;
}

.rma-chat-header p {
	margin: 0;
	font-weight: 600;
	font-size: 15px;
	color: #333;
}

.rma-relato-original {
	background: #faf7f5;
	border-radius: 12px;
	padding: 18px 20px;
	margin-bottom: 20px;
	max-height: 340px;
	overflow-y: auto;
}

.rma-relato-original h2 {
	margin-top: 0;
}

.rma-chat-burbuja {
	max-width: 85%;
	padding: 12px 16px;
	border-radius: 16px;
	margin-bottom: 20px;
	font-size: 15px;
}

.rma-chat-burbuja-autor {
	background: #f1f0f5;
	border-bottom-left-radius: 4px;
}

.rma-mensaje-area {
	margin-bottom: 24px;
}

.rma-mensaje-area label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
}

.rma-mensaje-area textarea {
	width: 100%;
	border-radius: 12px;
	border: 1px solid #ddd;
	padding: 12px 14px;
	font-size: 15px;
	resize: vertical;
}

.rma-tiers-titulo {
	font-weight: 600;
	margin-bottom: 10px;
}

.rma-tiers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 14px;
}

.rma-tier-card {
	border: 1px solid #eee;
	border-radius: 14px;
	padding: 16px;
	text-align: center;
	display: flex;
	flex-direction: column;
	background: #fff;
	transition: box-shadow .15s ease, border-color .15s ease;
}

.rma-tier-card:hover {
	box-shadow: 0 4px 14px rgba(0,0,0,.08);
	border-color: #d63384;
}

.rma-tier-monto {
	font-size: 24px;
	font-weight: 700;
	color: #d63384;
}

.rma-tier-etiqueta {
	font-weight: 600;
	margin: 4px 0 8px;
}

.rma-tier-descripcion {
	font-size: 13px;
	color: #666;
	flex-grow: 1;
	margin-bottom: 14px;
}

.rma-tier-boton {
	background: #d63384;
	color: #fff;
	border: none;
	border-radius: 24px;
	padding: 10px 14px;
	cursor: pointer;
	font-weight: 600;
	font-size: 13px;
}

.rma-tier-boton:hover {
	background: #b02a6c;
}

.rma-tier-boton:disabled {
	opacity: .6;
	cursor: default;
}

.rma-nota-legal {
	font-size: 12px;
	color: #999;
	margin-top: 18px;
}

.rma-estado-envio {
	margin-top: 10px;
	font-size: 14px;
}

.rma-estado-envio.rma-error-texto {
	color: #b32d2e;
}

.rma-error {
	max-width: 600px;
	margin: 40px auto;
	text-align: center;
	color: #b32d2e;
}
