/* ==========================================================================
   STONE Zelle Gateway — estilos del cliente
   Marca: Poppins · Azul #003399 · Acento Zelle #6D1ED4
   ========================================================================== */

.stone-zelle-card,
.stone-zelle-blocks {
	--sz-blue: #003399;
	--sz-purple: #6D1ED4;
	--sz-ink: #1a1a2e;
	--sz-muted: #6b6b7b;
	--sz-line: #e9e9f2;
	--sz-bg: #ffffff;
	font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Tarjeta principal -------------------------------------------------------- */
.stone-zelle-card {
	background: var(--sz-bg);
	border: 1px solid var(--sz-line);
	border-radius: 16px;
	padding: 20px 22px;
	margin: 14px 0 4px;
	box-shadow: 0 10px 30px -18px rgba(0, 51, 153, 0.45);
	color: var(--sz-ink);
}

.stone-zelle-card__head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.stone-zelle-card__badge {
	display: inline-flex;
	align-items: center;
	background: var(--sz-purple);
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: .2px;
	padding: 6px 12px;
	border-radius: 9px;
	line-height: 1;
}

.stone-zelle-card__title {
	margin: 0;
	font-size: 17px;
	font-weight: 600;
	color: var(--sz-blue);
}

/* Cuerpo: datos + QR ------------------------------------------------------- */
.stone-zelle-card__grid {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 24px;
	align-items: flex-start;
	justify-content: space-between;
}

.stone-zelle-card__details {
	flex: 1 1 240px;
	min-width: 0;
}

.stone-zelle-table {
	width: 100%;
	border-collapse: collapse;
}

.stone-zelle-table th,
.stone-zelle-table td {
	text-align: left;
	padding: 7px 0;
	vertical-align: top;
	font-size: 14px;
	border-bottom: 1px dashed var(--sz-line);
}

.stone-zelle-table tr:last-child th,
.stone-zelle-table tr:last-child td {
	border-bottom: 0;
}

.stone-zelle-table th {
	color: var(--sz-muted);
	font-weight: 500;
	width: 38%;
	white-space: nowrap;
	padding-right: 12px;
}

.stone-zelle-table td {
	color: var(--sz-ink);
	font-weight: 600;
	word-break: break-word;
}

.stone-zelle-amount {
	color: var(--sz-blue);
	font-size: 16px;
}

/* Botón copiar ------------------------------------------------------------- */
.stone-zelle-copy {
	margin-left: 8px;
	border: 1px solid var(--sz-line);
	background: #f6f6fc;
	color: var(--sz-blue);
	font-family: inherit;
	font-size: 11px;
	font-weight: 600;
	padding: 3px 9px;
	border-radius: 999px;
	cursor: pointer;
	transition: background .15s ease, color .15s ease, transform .1s ease;
	vertical-align: middle;
}

.stone-zelle-copy:hover {
	background: var(--sz-blue);
	color: #fff;
}

.stone-zelle-copy:active {
	transform: scale(.96);
}

.stone-zelle-copy.is-copied {
	background: #1f9d55;
	border-color: #1f9d55;
	color: #fff;
}

.stone-zelle-copy:focus-visible {
	outline: 2px solid var(--sz-purple);
	outline-offset: 2px;
}

/* QR ----------------------------------------------------------------------- */
.stone-zelle-card__qr {
	flex: 0 0 auto;
	text-align: center;
}

.stone-zelle-card__qr img {
	display: block;
	width: 190px;
	height: 190px;
	border: 1px solid var(--sz-line);
	border-radius: 14px;
	padding: 8px;
	background: #fff;
}

.stone-zelle-card__scan {
	margin: 8px 0 0;
	font-size: 13px;
	color: var(--sz-muted);
	font-weight: 500;
}

/* Pasos / instrucciones ---------------------------------------------------- */
.stone-zelle-card__steps {
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid var(--sz-line);
	font-size: 14px;
	line-height: 1.6;
	color: #33334d;
}

.stone-zelle-card__steps p {
	margin: 0 0 8px;
}

.stone-zelle-card__hint {
	margin-top: 12px;
	background: #fff7e0;
	color: #8a6d00;
	padding: 9px 12px;
	border-radius: 10px;
	font-size: 13px;
}

/* Campo de referencia ------------------------------------------------------ */
.stone-zelle-ref {
	margin-top: 14px;
}

.stone-zelle-ref__label,
.stone-zelle-ref label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 6px;
	color: var(--sz-ink);
}

.stone-zelle-ref__input {
	width: 100%;
	box-sizing: border-box;
	padding: 11px 13px;
	border: 1px solid var(--sz-line);
	border-radius: 10px;
	font-family: inherit;
	font-size: 14px;
	transition: border-color .15s ease, box-shadow .15s ease;
}

.stone-zelle-ref__input:focus {
	outline: none;
	border-color: var(--sz-blue);
	box-shadow: 0 0 0 3px rgba(0, 51, 153, 0.12);
}

/* Checkout en bloques ------------------------------------------------------ */
.stone-zelle-blocks__desc {
	margin: 0 0 12px;
	font-size: 14px;
	color: #33334d;
}

.stone-zelle-label__icon {
	width: 38px;
	height: 38px;
	margin-right: 8px;
	vertical-align: middle;
	border-radius: 8px;
}

/* Responsivo --------------------------------------------------------------- */
@media (max-width: 520px) {
	.stone-zelle-card {
		padding: 16px;
	}
	.stone-zelle-card__grid {
		flex-direction: column-reverse;
		align-items: center;
		text-align: center;
	}
	.stone-zelle-card__details {
		width: 100%;
	}
	.stone-zelle-table th {
		width: 42%;
	}
}

/* Accesibilidad ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
	.stone-zelle-copy,
	.stone-zelle-ref__input {
		transition: none;
	}
}
