/* LiftNaija Card Dispenser — buyer delivery card (success page + account). */
.lcd-deliver { display: grid; gap: 14px; margin-top: 10px; }

.lcd-card-deliver {
	max-width: 440px;
	border-radius: 16px;
	overflow: hidden;
	background: #0F172A;
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 16px 40px rgba(2, 6, 20, 0.45);
}

.lcd-card-deliver__art img {
	display: block;
	width: 100%;
	height: auto;
}

.lcd-card-deliver__code { padding: 14px 16px; }

.lcd-card-deliver__label {
	display: block;
	font-size: 11px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #94A3B8;
}

.lcd-card-deliver__row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 8px;
}

.lcd-card-deliver__row code {
	flex: 1;
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 1px;
	color: #ffffff;
	background: rgba(4, 11, 26, 0.6);
	padding: 11px 13px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	word-break: break-all;
}

.lcd-copy {
	flex: none;
	cursor: pointer;
	border: 0;
	border-radius: 10px;
	padding: 11px 16px;
	font-weight: 600;
	font-size: 14px;
	color: #ffffff;
	text-decoration: none;
	background: linear-gradient(135deg, #2563EB, #06B6D4);
	box-shadow: 0 8px 22px rgba(37, 99, 235, 0.4);
	transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lcd-copy:hover { transform: translateY(-1px); box-shadow: 0 12px 30px rgba(37, 99, 235, 0.55); color: #fff; }
.lcd-copy.lcd-copied { background: #10B981; color: #04140d; box-shadow: none; }

/* ---- Code overlaid directly on the card artwork ---- */
.lcd-cardx {
	position: relative;
	max-width: 480px;
	border-radius: 16px;
	overflow: hidden;
	line-height: 0;
	container-type: inline-size;
	box-shadow: 0 16px 40px rgba(2, 6, 20, 0.45);
}

.lcd-cardx__art { display: block; width: 100%; height: auto; }

.lcd-cardx__code {
	position: absolute;
	top: var(--lcd-ctop, 53%);
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--lcd-ccolor, #ffffff);
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-weight: 700;
	font-size: calc(var(--lcd-csize, 5) * 1cqw);
	letter-spacing: 0.16em;
	white-space: nowrap;
	line-height: 1;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
	pointer-events: none;
}

/* Invisible, clickable hotspot sitting over the drawn "Copy Code" button. */
.lcd-cardx__copy {
	position: absolute;
	top: var(--lcd-btop, 66%);
	left: 50%;
	transform: translate(-50%, -50%);
	width: 38cqw;
	height: 12cqw;
	min-height: 40px;
	padding: 0;
	margin: 0;
	background: transparent;
	border: 0;
	border-radius: 8cqw;
	cursor: pointer;
	box-shadow: none;
}
.lcd-cardx__copy:hover { transform: translate(-50%, -50%); box-shadow: none; }
.lcd-cardx__copy:focus-visible { outline: 2px solid rgba(255, 255, 255, 0.9); outline-offset: 2px; }

.lcd-cardx__toast {
	position: absolute;
	top: var(--lcd-btop, 66%);
	left: 50%;
	transform: translate(-50%, -50%) scale(0.92);
	background: #10B981;
	color: #04140d;
	font-family: system-ui, -apple-system, Segoe UI, sans-serif;
	font-weight: 700;
	font-size: calc(3.2cqw + 2px);
	line-height: 1;
	padding: 2cqw 4cqw;
	border-radius: 999px;
	opacity: 0;
	transition: opacity 0.2s ease, transform 0.2s ease;
	pointer-events: none;
}
.lcd-cardx.lcd-copied .lcd-cardx__toast { opacity: 1; transform: translate(-50%, -50%) scale(1); }
