/* =========================
   STICKY MOBILE CART
========================= */

.tubuy-sticky-mobile-cart {
	position: fixed;
	top: 72px;
	left: 0;
	width: 100%;
	padding: 10px 14px;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(226, 232, 240, 0.8);
	box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
	z-index: 9999;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* ---------- TOP ROW ---------- */

.tubuy-sticky-mobile-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	width: 100%;
}

.tubuy-sticky-mobile-price-area {
	display: flex;
	align-items: center;
	gap: 8px;
}

.tubuy-sticky-mobile-old-price {
	font-size: 13px;
	font-weight: 500;
	color: #9ca3af;
	text-decoration: line-through;
}

.tubuy-sticky-mobile-price {
	font-size: 19px;
	font-weight: 800;
	color: #16a34a;
	line-height: 1;
}

.tubuy-sticky-mobile-price ins {
	text-decoration: none;
}

.tubuy-sticky-mobile-price del {
	display: none;
}

.tubuy-sticky-mobile-discount {
	height: 22px;
	padding: 0 8px;
	border-radius: 999px;
	background: #16a34a;
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.tubuy-sticky-mobile-rating {
	display: flex;
	align-items: center;
	gap: 4px;
}

.tubuy-mobile-rating-star {
	color: #f59e0b;
	font-size: 14px;
	line-height: 1;
}

.tubuy-mobile-rating-value {
	font-size: 13px;
	font-weight: 700;
	color: #111827;
}

.tubuy-mobile-rating-count {
	font-size: 12px;
	color: #6b7280;
}

/* ---------- BUTTONS ---------- */

.tubuy-sticky-mobile-actions {
	width: 100%;
}

.tubuy-sticky-mobile-cart .cart {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
}

.tubuy-mobile-add-to-cart,
.tubuy-mobile-buy-now {
	height: 46px;
	border: none;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	flex: 1;
}

.tubuy-mobile-add-to-cart {
	background: #16a34a;
	color: #ffffff;
}

.tubuy-mobile-buy-now {
	background: #f59e0b;
	color: #ffffff;
}

/* ---------- MOBILE ONLY ---------- */

@media (min-width: 992px) {

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

}