#tso-sticky-cta {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	display: none;
	align-items: center;
	gap: 10px;
	background: #0b0b0c;
	box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.25);
	/* Side padding insets the pills from the screen edges; the bottom
	   padding respects the home-indicator area on notched phones. */
	padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
	transform: translateY(100%);
	transition: transform 0.25s ease;
}

#tso-sticky-cta.tso-visible {
	display: flex;
	transform: translateY(0);
}

#tso-sticky-cta button {
	flex: 1 1 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	border-radius: 999px;
	border: 2px solid;
	font-weight: 700;
	font-size: 13.5px;
	letter-spacing: 0.4px;
	padding: 11px 0;
	cursor: pointer;
	font-family: inherit;
}

#tso-sticky-cta button svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

#tso-sticky-cta .tso-add-cart {
	background: #1a1a1c;
	color: #fff;
	border-color: #3a3a3d;
}

#tso-sticky-cta .tso-buy-now {
	background: #f7d117;
	color: #000;
	border-color: #000;
}

/* Desktop shoppers already see the real buttons without scrolling past them. */
@media (min-width: 769px) {
	#tso-sticky-cta {
		display: none !important;
	}
}
