.sticky-cart-bar { display: none; }
@media (max-width: 767px) {
	.sticky-cart-bar {
		display: flex;
		align-items: center;
		gap: 10px;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		background: #FFFFFF;
		box-shadow: 0 -4px 20px rgba(11,37,64,0.12);
		padding: 10px 14px;
		z-index: 9999;
		transform: translateY(100%);
		transition: transform 0.3s ease;
	}
	.sticky-cart-bar.sticky-cart-visible {
		transform: translateY(0);
	}
	.sticky-cart-img {
		width: 44px;
		height: 44px;
		object-fit: contain;
		border-radius: 8px;
		background: #F7FAFC;
		flex-shrink: 0;
	}
	.sticky-cart-info {
		flex: 1;
		min-width: 0;
	}
	.sticky-cart-title {
		font-size: 12px;
		font-weight: 600;
		color: #0B2540;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.sticky-cart-price {
		font-size: 14px;
		font-weight: 700;
		color: #1DB9EC;
	}
	.sticky-cart-btn {
		background: #1DB9EC;
		color: #FFFFFF;
		border: none;
		border-radius: 8px;
		padding: 10px 18px;
		font-weight: 700;
		font-size: 13px;
		white-space: nowrap;
		flex-shrink: 0;
		cursor: pointer;
	}
	.sticky-cart-btn:active {
		background: #0E7FA8;
	}
}