/* Déclinaisons */
.fl-product-variants {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	margin-bottom: 0.5rem;
}
.fl-variant-group-wrap {
	display: block;
}
.fl-variant-group-select {
	height: 32px;
	width: 100%;
	border: 1px solid #d1d5db;
	border-radius: 0.375rem;
	padding: 0 0.5rem;
	font-size: 0.8rem;
	color: #374151;
	background: #fff;
	cursor: pointer;
	outline: none;
}
.fl-variant-group-select:focus { border-color: #394873; }
.fl-variant-group-select:disabled { opacity: 0.6; cursor: not-allowed; }

/* Smart Stepper */
.fl-smart-qty {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.5rem;
}
.fl-stepper {
	display: flex;
	align-items: stretch;
	background: #e5e7eb;
	border: 1px solid #d1d5db;
	border-radius: 9999px;
	height: 40px;
	overflow: hidden;
}
.fl-stepper-btn {
	width: 36px;
	height: 100%;
	background: #e5e7eb;
	border: none;
	font-size: 1.1rem;
	color: #374151;
	cursor: pointer;
	transition: background 0.15s;
}
.fl-stepper-btn:hover { background: #d1d5db; }
.fl-stepper-count {
	min-width: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;
	font-weight: 700;
	color: #111827;
	background: #e5e7eb;
}
.fl-atc-plus {
	height: 40px;
	background: #394873;
	color: #fff;
	border: none;
	border-radius: 0.5rem;
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
	padding: 0 1rem;
}
.fl-atc-plus:hover:not(:disabled) { background: #2f3c60; }
.fl-atc-plus:disabled {
	background: #9ca3af;
	cursor: not-allowed;
	opacity: 0.7;
}
@media (max-width: 480px) {
	.fl-stepper { height: 36px; }
	.fl-stepper-btn { width: 32px; font-size: 1rem; }
	.fl-stepper-count { min-width: 28px; font-size: 0.85rem; }
	.fl-atc-plus { height: 36px; font-size: 0.8rem; padding: 0 0.75rem; }
}

/* Animation panier */
@keyframes fl-cart-bounce {
	0%, 100% { transform: scale(1); }
	25% { transform: scale(1.3); }
	50% { transform: scale(0.9); }
	75% { transform: scale(1.15); }
}
.fl-cart-bounce {
	animation: fl-cart-bounce 0.6s ease-in-out !important;
}
.fl-cart-bounce .material-icons,
.fl-cart-bounce i,
.fl-cart-bounce svg {
	color: #10b981 !important;
}
.fl-cart-bounce::after {
	content: '';
	position: absolute;
	top: -4px;
	right: -4px;
	width: 10px;
	height: 10px;
	background: #10b981;
	border-radius: 50%;
	animation: fl-cart-bounce 0.6s ease-in-out;
}
