/* Стиль для универсальной кнопки */
.button-primary {
	display: inline-block;
	padding: 18px 50px;
	font-size: 1.15rem;
	font-weight: 800;
	color: #050505;
	background-color: #C5A059;
	border-radius: 14px;
	text-decoration: none;
	text-align: center;
	font-family: 'Outfit', sans-serif;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 4px 14px rgba(197, 160, 89, 0.2);
}

/* Эффекты при наведении и нажатии */
.button-primary:hover {
	background-color: #A9843D;
	color: #050505;
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(197, 160, 89, 0.35);
}

.button-primary:active {
	transform: translateY(0);
}

