.po-cart-widget {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 99999;
	display: none;
	align-items: center;
	gap: .5rem;
	background: var(--po-cart-brand, #8B38CB);
	color: #fff;
	padding: .8rem 1.1rem;
	border-radius: 50px;
	box-shadow: 0 8px 22px rgba(20,10,40,.28);
	text-decoration: none;
	font-family: inherit;
	font-weight: 700;
	font-size: .92rem;
	transition: transform .15s ease;
}
.po-cart-widget:hover { transform: translateY(-2px); color: #fff; }
.po-cart-widget.is-visible { display: inline-flex; }
.po-cart-widget.is-bump { animation: po-cart-bump .35s ease; }

.po-cart-widget-icon { font-size: 1.1rem; line-height: 1; }
.po-cart-widget-count {
	background: rgba(255,255,255,.25);
	border-radius: 50%;
	min-width: 22px;
	height: 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: .78rem;
	padding: 0 4px;
}

@keyframes po-cart-bump {
	0% { transform: scale(1); }
	40% { transform: scale(1.12); }
	100% { transform: scale(1); }
}

@media (max-width: 600px) {
	.po-cart-widget { right: 14px; bottom: 14px; padding: .7rem .9rem; }
}
