#purchase_list {
	position: fixed;
	bottom: 30px;
	left: 30px;
	background: #fff;
	padding: 16px 20px;
	border-radius: 12px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
	font-family: "Segoe UI", Arial, sans-serif;
	color: #333;
	max-width: 360px;
	z-index: 9999;
	border-left: 5px solid #f05454;
	transition: all 0.4s ease;
	opacity: 0;
	transform: translateY(20px);
}

#purchase_list.show {
	opacity: 1;
	transform: translateY(0);
	animation: vts-slideIn 0.5s ease;
}

@keyframes vts-slideIn {
	from {
		transform: translateY(20px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.purchase_item {
	font-size: 15px;
	line-height: 1.5;
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.purchase_icon {
	font-size: 20px;
	color: #f39c12;
	flex-shrink: 0;
	margin-top: 2px;
}

.purchase_text strong {
	color: #f05454;
	font-weight: 600;
}

.purchase_text em {
	font-style: normal;
	font-weight: 700;
	color: #007bff;
}

.purchase_text em a {
	color: #007bff;
	text-decoration: none;
}

.purchase_text em a:hover {
	text-decoration: underline;
}

.purchase_text small {
	display: block;
	margin-top: 4px;
	color: #777;
	font-size: 13px;
}

.purchase_text .location {
	color: #007bff;
	font-weight: 600;
}

.purchase_stars {
	margin-top: 4px;
	color: #f1c40f;
	font-size: 14px;
}

@media (max-width: 767px) {
	#purchase_list {
		display: none !important;
	}
}
