/* =========================
   STICKY DESKTOP CART
========================= */

.tubuy-sticky-desktop-cart {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 12px 28px;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(226, 232, 240, 0.8);
	box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
	z-index: 9999;
	display: none;
	animation: tubuyStickyCartFade 0.28s ease;
}

.tubuy-sticky-desktop-cart-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: 100%;
}

.tubuy-sticky-desktop-product {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.tubuy-sticky-desktop-image {
	width: 60px;
	height: 60px;
	border-radius: 14px;
	background: #ffffff;
	border: 1px solid #edf1f7;
	padding: 6px;
	overflow: hidden;
	flex-shrink: 0;
}

.tubuy-sticky-desktop-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.tubuy-sticky-desktop-content {
	min-width: 0;
}

.tubuy-sticky-desktop-title {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
	color: #0f172a;
	margin: 0 0 4px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 340px;
}

.tubuy-sticky-desktop-price {
	font-size: 16px;
	font-weight: 700;
	color: #16a34a;
}

.tubuy-sticky-desktop-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.tubuy-sticky-desktop-actions form.cart {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	flex-wrap: nowrap;
}

.tubuy-sticky-desktop-actions .quantity {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	padding: 0 10px;
	border: 1px solid #dbe3ee;
	border-radius: 12px;
	background: #ffffff;
}

.tubuy-sticky-desktop-actions .quantity input {
	width: 46px;
	height: 46px;
	border: none;
	background: transparent;
	text-align: center;
	font-size: 15px;
	font-weight: 600;
	color: #0f172a;
	box-shadow: none;
	padding: 0;
}

.tubuy-sticky-desktop-actions .single_add_to_cart_button {
	height: 48px;
	padding: 0 22px;
	border: none;
	border-radius: 12px;
	background: #16a34a;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	transition: all 0.25s ease;
	box-shadow: 0 8px 20px rgba(22, 163, 74, 0.18);
	margin: 0 !important;
}

.tubuy-sticky-desktop-actions .single_add_to_cart_button:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 26px rgba(22, 163, 74, 0.24);
}

.tubuy-sticky-desktop-actions .buy_now_button {
	height: 48px;
	padding: 0 22px;
	border: none;
	border-radius: 12px;
	background: #f97316;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.25s ease;
	box-shadow: 0 8px 20px rgba(249, 115, 22, 0.20);
}

.tubuy-sticky-desktop-actions .buy_now_button:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 28px rgba(249, 115, 22, 0.26);
}

@keyframes tubuyStickyCartFade {

	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}

}

/* =========================
   DESKTOP ONLY
========================= */

@media (max-width: 991px) {

	.tubuy-sticky-desktop-cart {
		display: none !important;
	}

}