.lcs-snackbar {
	position: fixed;
	left: 20px;
	bottom: 20px;
	z-index: 99998;
	width: 320px;
	max-width: calc(100vw - 40px);
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
	padding: 1rem 1rem 0.85rem;
	direction: rtl;
	text-align: right;
	opacity: 0;
	transform: translateY(16px);
	pointer-events: none;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.lcs-snackbar.lcs-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.lcs-close {
	position: absolute;
	top: 6px;
	left: 8px;
	background: none;
	border: none;
	font-size: 1.2rem;
	line-height: 1;
	color: #999;
	cursor: pointer;
	padding: 6px;
}

.lcs-close:hover,
.lcs-close:focus-visible {
	color: #555;
}

.lcs-body {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.85rem;
}

.lcs-thumb {
	width: 52px;
	height: 52px;
	object-fit: cover;
	border-radius: 8px;
	flex-shrink: 0;
	border: 1px solid #eee;
}

.lcs-info {
	min-width: 0;
}

.lcs-added {
	font-size: 0.78rem;
	color: #2e7d32;
	font-weight: 600;
	margin-bottom: 2px;
}

.lcs-title {
	font-size: 0.92rem;
	font-weight: 600;
	color: #222;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.lcs-price {
	font-size: 0.85rem;
	color: #555;
	margin-top: 2px;
}

.lcs-checkout-btn {
	display: block;
	width: 100%;
	text-align: center;
	background: #c9a13b;
	color: #fff;
	font-weight: 700;
	padding: 0.6rem;
	border-radius: 8px;
	text-decoration: none;
	transition: background 0.15s ease;
}

.lcs-checkout-btn:hover,
.lcs-checkout-btn:focus-visible {
	background: #b38f30;
	color: #fff;
}

@media (max-width: 480px) {
	.lcs-snackbar {
		left: 12px;
		bottom: 12px;
		width: calc(100vw - 24px);
	}
}
