.wwcs-sticky-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	transform: translateY(100%);
	transition: transform 0.25s ease;
	z-index: 9999;
	padding: 10px 16px;
}

.wwcs-sticky-bar.wwcs-visible {
	transform: translateY(0);
}

.wwcs-sticky-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.wwcs-sticky-info {
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.wwcs-sticky-title {
	font-weight: 600;
	font-size: 14px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.wwcs-sticky-price {
	font-size: 13px;
	color: #777;
}

.wwcs-sticky-btn {
	display: inline-block;
	padding: 10px 22px;
	background: #7f54b3;
	color: #fff !important;
	border-radius: 4px;
	text-decoration: none;
	white-space: nowrap;
	font-size: 14px;
}

@media (max-width: 480px) {
	.wwcs-sticky-title {
		max-width: 140px;
	}
}
