/* WhatsApp Profile Card - front end styles */
.wsap-card {
	--wsap-card-bg: #141414;
	--wsap-btn-color: #25D366;
	max-width: 320px;
	margin: 20px auto;
	background: var(--wsap-card-bg);
	border-radius: 16px;
	overflow: hidden;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.wsap-photo-wrap {
	width: 100%;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: #000;
}

.wsap-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.wsap-name {
	color: #ffffff;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	padding: 16px 12px 14px;
}

.wsap-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.wsap-profile-label {
	color: #e6e6e6;
	font-size: 15px;
	font-weight: 500;
}

.wsap-whatsapp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--wsap-btn-color);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
	text-decoration: none;
}

.wsap-whatsapp-btn:hover {
	transform: scale(1.08);
	box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.25);
}
