/* Motors Print — Button styles (frontend) */
.mp-buttons-wrap {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	align-items: center;
}
.mp-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 22px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	border-radius: 6px;
	border: 2px solid #d62828;
	text-decoration: none !important;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
	white-space: nowrap;
}
.mp-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.mp-btn-primary {
	background: #d62828;
	color: #fff !important;
}
.mp-btn-primary:hover { background: #b81f1f; }
.mp-btn-outline {
	background: transparent;
	color: #d62828 !important;
}
.mp-btn-outline:hover {
	background: #d62828;
	color: #fff !important;
}
.mp-btn-minimal {
	background: transparent;
	border: 0;
	padding: 8px 12px;
	color: #d62828 !important;
	text-decoration: underline !important;
}
.mp-btn-icon {
	font-size: 18px;
	line-height: 1;
}
.mp-btn-label { display: inline-block; }

@media (max-width: 480px) {
	.mp-buttons-wrap { flex-direction: column; align-items: stretch; }
	.mp-btn { justify-content: center; }
}
