#wctc-floating-cart {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 9999;
}

#wctc-floating-cart.is-empty {
	display: none;
}

#wctc-floating-cart .wctc-fc-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #1a1a1a;
	color: #fff;
	text-decoration: none;
	padding: 12px 18px;
	border-radius: 999px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
	font-weight: 600;
	line-height: 1;
}

#wctc-floating-cart .wctc-fc-link:hover {
	opacity: 0.92;
	color: #fff;
}

#wctc-floating-cart .wctc-fc-icon {
	display: inline-flex;
}

#wctc-floating-cart .wctc-fc-count {
	background: #e02b2b;
	color: #fff;
	border-radius: 999px;
	min-width: 20px;
	height: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	padding: 0 6px;
}

#wctc-floating-cart .wctc-fc-total {
	font-size: 14px;
}

/* Pannello elenco prodotti (mini-carrello) */
#wctc-floating-cart .wctc-fc-panel {
	position: absolute;
	right: 0;
	bottom: calc(100% + 10px);
	width: 320px;
	max-width: 80vw;
	background: #fff;
	color: #1a1a1a;
	border-radius: 12px;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
	padding: 12px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}

#wctc-floating-cart:hover .wctc-fc-panel,
#wctc-floating-cart:focus-within .wctc-fc-panel {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

#wctc-floating-cart .wctc-fc-items {
	list-style: none;
	margin: 0 0 10px;
	padding: 0;
	max-height: 320px;
	overflow-y: auto;
}

#wctc-floating-cart .wctc-fc-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 0;
	border-bottom: 1px solid #eee;
}

#wctc-floating-cart .wctc-fc-item:last-child {
	border-bottom: 0;
}

#wctc-floating-cart .wctc-fc-item-img img {
	width: 40px;
	height: 40px;
	object-fit: cover;
	border-radius: 6px;
	display: block;
}

#wctc-floating-cart .wctc-fc-item-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

#wctc-floating-cart .wctc-fc-item-name {
	font-size: 13px;
	font-weight: 600;
}

#wctc-floating-cart .wctc-fc-item-meta {
	font-size: 12px;
	color: #666;
}

#wctc-floating-cart .wctc-fc-panel-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding-top: 8px;
	border-top: 1px solid #eee;
}

#wctc-floating-cart .wctc-fc-panel-total {
	font-size: 13px;
	font-weight: 600;
}

#wctc-floating-cart .wctc-fc-panel-btn {
	background: #1a1a1a;
	color: #fff;
	text-decoration: none;
	padding: 8px 14px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
}

#wctc-floating-cart .wctc-fc-panel-btn:hover {
	opacity: 0.92;
	color: #fff;
}

@media (max-width: 480px) {
	#wctc-floating-cart {
		right: 12px;
		bottom: 12px;
	}
	#wctc-floating-cart .wctc-fc-total {
		display: none;
	}
}
