/* Floating Cart Styles */
.floating-header-cart-f5799e06 {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 999999;
	display: block;
	background-color: #ffffff;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-decoration: none !important;
}

.floating-header-cart-f5799e06:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.cart-icon-container-f5799e06 {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #333333;
}

.cart-icon-container-f5799e06 svg {
	width: 22px;
	height: 22px;
}

.cart-count-f5799e06 {
	position: absolute;
	top: -5px;
	right: -5px;
	background-color: #e63946; /* WooCommerce standard red/accent or change to match brand */
	color: #ffffff;
	font-size: 12px;
	font-weight: bold;
	line-height: 1;
	min-width: 20px;
	height: 20px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 5px;
	box-sizing: border-box;
	box-shadow: 0 2px 4px rgba(230, 57, 70, 0.3);
}

/* Adjust position for admin bar if logged in */
.admin-bar .floating-header-cart-f5799e06 {
	top: 52px;
}