#wcfc-floating-cart-wrapper {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 99999;
}

.wcfc-floating-cart {
	display: flex;
	align-items: center;
	gap: 14px;
	background: #C1391C;
	color: #fff;
	padding: 14px 20px;
	border-radius: 50px;
	text-decoration: none;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
	transition: transform 0.15s ease, opacity 0.15s ease, visibility 0.15s ease;
}

.wcfc-floating-cart:hover {
	transform: translateY(-2px);
	color: #fff;
}

.wcfc-floating-cart.wcfc-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(10px);
}

.wcfc-info {
	display: flex;
	flex-direction: column;
	line-height: 1.25;
}

.wcfc-count {
	font-size: 12px;
	font-weight: 500;
	opacity: 0.9;
	white-space: nowrap;
}

.wcfc-total {
	font-weight: 700;
	font-size: 15px;
	white-space: nowrap;
}

.wcfc-total .woocommerce-Price-amount {
	color: #fff;
}

.wcfc-icon {
	display: flex;
	align-items: center;
}

.wcfc-icon svg {
	display: block;
}

.wcfc-label {
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	border-left: 1px solid rgba(255, 255, 255, 0.3);
	padding-left: 14px;
	white-space: nowrap;
}

@media (max-width: 480px) {
	#wcfc-floating-cart-wrapper {
		right: 14px;
		bottom: 14px;
	}

	.wcfc-floating-cart {
		padding: 12px 16px;
		gap: 10px;
	}

	.wcfc-label {
		display: none;
	}
}
