.sme-sticky-cart {
	position: fixed;
	left: 0;
	right: 0;
	bottom: -100px;
	z-index: 9999;
	background: #fff;
	box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.12);
	transition: bottom 0.25s ease;
	padding: 0.75rem 1.5rem;
}

.sme-sticky-cart.is-visible {
	bottom: 0;
}

.sme-sticky-cart__inner {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.sme-sticky-cart__image img {
	width: 48px;
	height: 48px;
	object-fit: cover;
	border-radius: 4px;
}

.sme-sticky-cart__info {
	flex: 1 1 auto;
}

.sme-sticky-cart__title {
	margin: 0;
	font-size: 0.95rem;
}

.sme-sticky-cart__price {
	font-size: 0.9rem;
	color: #0b6e4f;
	font-weight: 600;
}

.sme-sticky-cart__form form.cart {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
}

@media (max-width: 782px) {
	.sme-sticky-cart__image { display: none; }
}
