/**
 * Peaceful Plants eBay Connector
 * Frontend Styles
 *
 * @package PeacefulPlantsEbayConnector
 */

.pp-ebay-button-wrapper {
	margin: 20px 0;
	width: 100%;
}

.pp-ebay-buy-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 14px 28px;
	background: #0064d2;
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	border-radius: 6px;
	border: 0;
	cursor: pointer;
	transition: all 0.25s ease;
	box-sizing: border-box;
}

.pp-ebay-buy-button:hover,
.pp-ebay-buy-button:focus {
	background: #004f9e;
	color: #ffffff;
	text-decoration: none;
	transform: translateY(-1px);
}

.pp-ebay-message {
	margin: 15px 0;
	padding: 14px 18px;
	background: #f7f7f7;
	border-left: 4px solid #0064d2;
	border-radius: 4px;
	font-size: 14px;
	line-height: 1.6;
}

.pp-ebay-sold {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 25px;
	background: #777777;
	color: #ffffff;
	font-weight: 600;
	border-radius: 6px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

@media screen and (max-width: 768px) {

	.pp-ebay-button-wrapper {
		margin: 15px 0;
	}

	.pp-ebay-buy-button {
		width: 100%;
		padding: 15px 20px;
		font-size: 15px;
	}

	.pp-ebay-message {
		font-size: 13px;
	}
}