.sekyere-recent-purchase {
	position: fixed;
	left: 20px;
	bottom: 20px;
	z-index: 99000;
	max-width: 320px;
	background: #ffffff;
	border-radius: 14px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
	display: flex;
	align-items: center;
	padding: 12px 40px 12px 12px;
	transform: translateY(24px);
	opacity: 0;
	transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
	pointer-events: none;
}

.sekyere-recent-purchase[hidden] {
	display: none;
}

.sekyere-recent-purchase.is-visible {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}

.sekyere-recent-purchase__link {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: inherit;
	min-width: 0;
}

.sekyere-recent-purchase__thumb {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	object-fit: cover;
	flex-shrink: 0;
	background: #f2f2f2;
}

.sekyere-recent-purchase__text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.sekyere-recent-purchase__headline {
	font-family: 'Lato', sans-serif;
	font-size: 13px;
	line-height: 1.35;
	color: #2b2b2b;
}

.sekyere-recent-purchase__headline strong {
	color: #5c8a24;
}

.sekyere-recent-purchase__headline .sekyere-recent-purchase__product {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: inline-block;
	max-width: 100%;
	vertical-align: bottom;
}

.sekyere-recent-purchase__meta {
	font-family: 'Lato', sans-serif;
	font-size: 11px;
	color: #a3a3a3;
}

.sekyere-recent-purchase__close {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: none;
	background: transparent;
	color: #b8b8b8;
	font-size: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.sekyere-recent-purchase__close:hover,
.sekyere-recent-purchase__close:focus {
	background: #f4f4f4;
	color: #555;
}

@media (max-width: 480px) {
	.sekyere-recent-purchase {
		left: 12px;
		right: 12px;
		bottom: 76px; /* clear .mobile-bottom-menu (~65px) */
		max-width: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sekyere-recent-purchase {
		transition: none;
	}
}
