/* Universal button — Money Pills */
.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 18px 44px;
	font-family: "Space Grotesk", system-ui, sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	background-color: #ef3123;
	color: #ffffff;
	border-radius: 12px;
	text-decoration: none;
	text-align: center;
	box-shadow: 0 12px 26px -12px rgba(239, 49, 35, 0.6);
	transition: all 0.25s ease;
	cursor: pointer;
}

.btn-primary:hover {
	background-color: #d64a44;
	transform: translateY(-2px);
	box-shadow: 0 16px 30px -12px rgba(239, 49, 35, 0.7);
}

.btn-ghost {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 18px 40px;
	font-family: "Space Grotesk", system-ui, sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	color: #240c09;
	background: #ffffff;
	border: 1.5px solid #f9d1ca;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.25s ease;
	cursor: pointer;
}

.btn-ghost:hover {
	border-color: #ef3123;
	color: #ef3123;
	transform: translateY(-2px);
}
