.onoralux-cart-badge {
	position: absolute;
	background: var(--oc-bg, #D4AF37);
	color: var(--oc-color, #fff);
	width: var(--oc-size, 18px);
	height: var(--oc-size, 18px);
	line-height: var(--oc-size, 18px);
	text-align: center;
	font-size: 10px;
	font-weight: 700;
	border-radius: 50%;
	pointer-events: none;
	z-index: 999999;
	top: var(--oc-y, -6px);
	right: var(--oc-x, -6px);
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

#oc-float-cart {
	position: fixed;
	bottom: var(--oc-float-b, 30px);
	right: var(--oc-float-r, 30px);
	width: var(--oc-float-size, 64px);
	height: var(--oc-float-size, 64px);
	border-radius: 50%;
	background: var(--oc-float-bg, #D4AF37);
	color: var(--oc-float-icon, #fff);
	border: none;
	cursor: pointer;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s cubic-bezier(.25, .8, .25, 1), box-shadow 0.3s ease;
	will-change: transform;
	-webkit-tap-highlight-color: transparent;
	outline: none;
	box-sizing: border-box;
}

#oc-float-cart:hover {
	transform: translateY(-4px) scale(1.05);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

#oc-float-cart:active {
	transform: scale(0.96);
}

#oc-float-cart:focus-visible {
	outline: 3px solid var(--oc-float-bg, #D4AF37);
	outline-offset: 3px;
}

#oc-float-cart.oc-drawer-open {
	transform: scale(0.95);
}

#oc-float-cart svg {
	width: 26px;
	height: 26px;
	display: block;
	transition: transform 0.3s ease;
}

.oc-float-badge {
	position: absolute;
	top: -2px;
	right: -2px;
	min-width: 22px;
	height: 22px;
	line-height: 22px;
	padding: 0 5px;
	border-radius: 11px;
	background: var(--oc-float-badge, #E53935);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	text-align: center;
	border: 2px solid #fff;
	box-sizing: border-box;
	pointer-events: none;
	transition: transform 0.35s cubic-bezier(.25, .8, .25, 1);
	will-change: transform;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

@keyframes oc-bounce {
	0%, 100% { transform: translateY(0) scale(1); }
	30% { transform: translateY(-8px) scale(1.05); }
	60% { transform: translateY(-4px) scale(1.02); }
}

@keyframes oc-pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.25); }
}

.oc-bounce {
	animation: oc-bounce 0.45s cubic-bezier(.25, .8, .25,1);
}

.oc-pulse {
	animation: oc-pulse 0.35s cubic-bezier(.25, .8, .25,1);
}

@media (max-width: 1024px) {
	#oc-float-cart {
		width: 60px;
		height: 60px;
	}
	#oc-float-cart svg {
		width: 24px;
		height: 24px;
	}
}

@media (max-width: 768px) {
	#oc-float-cart {
		width: var(--oc-float-size-m, 58px);
		height: var(--oc-float-size-m, 58px);
	}
	#oc-float-cart svg {
		width: 22px;
		height: 22px;
	}
	.onoralux-cart-badge {
		font-size: 9px;
	}
}

@media (max-width: 480px) {
	.onoralux-cart-badge {
		font-size: 8px;
	}
}
