/**
 * Buttons System
 *
 * @package AstroNeev
 */
.astroneev-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: var(--button-height);
	padding: 0 32px;
	font-family: var(--font-button);
	font-weight: var(--font-button-weight);
	border-radius: var(--radius-default);
	text-decoration: none;
	transition: all var(--anim-duration) var(--anim-easing);
	cursor: pointer;
	border: none;
}

.astroneev-btn--primary {
	background: linear-gradient(135deg, var(--color-gold-primary) 0%, #D4AF37 100%);
	color: var(--bg-primary);
}

.astroneev-btn--primary:hover {
	background: linear-gradient(135deg, var(--color-gold-hover) 0%, #F6C453 100%);
	transform: scale(var(--hover-scale));
	box-shadow: var(--glow-soft-gold);
}
