/**
 * Optional card preview styles.
 */

.stitch-card-inner {
	overflow: hidden;
	position: relative;
}

.stitch-card-inner::before {
	background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, transparent 60%);
	content: "";
	height: 160px;
	position: absolute;
	right: -60px;
	top: -70px;
	width: 160px;
}

.stitch-card-chip {
	background: linear-gradient(135deg, #d4af37 0%, #f4e4a6 50%, #d4af37 100%);
	border-radius: 6px;
	height: 32px;
	position: relative;
	width: 44px;
	z-index: 1;
}

.stitch-card-brand {
	align-items: center;
	display: flex;
	height: 40px;
	justify-content: flex-end;
	position: absolute;
	right: 1.5rem;
	top: 1.5rem;
	transition: transform 0.2s ease;
	width: 60px;
	z-index: 1;
}

.stitch-card-brand svg {
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
	max-height: 100%;
	max-width: 100%;
}

.stitch-card-number-display {
	color: #fff;
	font-family: "Courier New", monospace;
	font-size: 1.25rem;
	letter-spacing: 0.12em;
	margin-top: auto;
	position: relative;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	z-index: 1;
}

.stitch-card-details {
	display: flex;
	gap: 1.5rem;
	margin-top: 1rem;
	position: relative;
	z-index: 1;
}

.stitch-card-label {
	color: #94a3b8;
	display: block;
	font-size: 0.65rem;
	letter-spacing: 0.08em;
	margin-bottom: 0.25rem;
	text-transform: uppercase;
}

.stitch-card-value {
	color: #e2e8f0;
	display: block;
	font-size: 0.9rem;
	text-transform: uppercase;
}
