:root {
	--cbt-brand: #0b5cad;
	--cbt-text: #1d2327;
	--cbt-muted: #646970;
	--cbt-border: #e5e5e5;
	--cbt-bg: #f6f7f7;
}

* { box-sizing: border-box; }

html, body {
	margin: 0;
	padding: 0;
	background: var(--cbt-bg);
	color: var(--cbt-text);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	line-height: 1.4;
}

.cbt-vcard-landing {
	min-height: 100vh;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 24px 16px;
}

.cbt-vcard-card {
	width: 100%;
	max-width: 480px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
	padding: 32px 28px;
	border-top: 6px solid var(--cbt-brand);
}

.cbt-vcard-name {
	margin: 0 0 4px;
	font-size: 28px;
	font-weight: 600;
}

.cbt-vcard-title {
	margin: 0;
	color: var(--cbt-muted);
	font-size: 16px;
}

.cbt-vcard-org {
	margin: 2px 0 20px;
	color: var(--cbt-text);
	font-weight: 500;
}

.cbt-vcard-actions {
	margin: 20px 0 24px;
}

.cbt-vcard-btn {
	display: inline-block;
	text-decoration: none;
	padding: 12px 20px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 16px;
}

.cbt-vcard-btn-primary {
	background: var(--cbt-brand);
	color: #fff;
	width: 100%;
	text-align: center;
}

.cbt-vcard-btn-primary:hover {
	filter: brightness(0.92);
}

.cbt-vcard-details {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
	border-top: 1px solid var(--cbt-border);
}

.cbt-vcard-details li {
	display: flex;
	align-items: baseline;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid var(--cbt-border);
}

.cbt-vcard-details .cbt-vcard-label {
	color: var(--cbt-muted);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	min-width: 60px;
}

.cbt-vcard-details a {
	color: var(--cbt-text);
	text-decoration: none;
	word-break: break-word;
}

.cbt-vcard-details a:hover {
	color: var(--cbt-brand);
}

.cbt-vcard-qr-block {
	text-align: center;
	padding: 20px 0 8px;
	border-top: 1px solid var(--cbt-border);
}

.cbt-vcard-qr-caption {
	color: var(--cbt-muted);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0 0 12px;
}

.cbt-vcard-qr-block img {
	max-width: 220px;
	height: auto;
}

.cbt-vcard-footer {
	margin-top: 24px;
	padding-top: 16px;
	border-top: 1px solid var(--cbt-border);
	color: var(--cbt-muted);
	font-size: 12px;
}

/* Print styling: business-card-ish, hide the download button, keep QR + info visible */
@media print {
	body { background: #fff; }
	.cbt-vcard-landing { padding: 0; }
	.cbt-vcard-card { box-shadow: none; border: 1px solid #ddd; max-width: none; }
	.cbt-vcard-actions { display: none; }
	.cbt-vcard-qr-block img { max-width: 160px; }
}

/* Shortcode-embedded card is smaller and inline-friendly */
.cbt-vcard-embed {
	max-width: 380px;
	margin: 16px 0;
}

.cbt-vcard-embed .cbt-vcard-card {
	padding: 20px 20px;
}

.cbt-vcard-embed .cbt-vcard-name {
	font-size: 22px;
}

.cbt-vcard-embed-photo {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
	margin: 0 0 12px;
	border: 2px solid var(--cbt-brand);
}
