/*
Theme Name: TN web
Description: Child theme for Hello elementor
Author: Teddy Ninet
Template: hello-elementor
Version: 1.0
*/

:root {

}

a#elementor-menu-cart__toggle_button{
	border: none!important;
}

.elementor-menu-cart__toggle, .elementor-menu-cart__wrapper{
	display: flex!important;
}


.scroll-animation img{
	animation: scroll 2s ease-in-out infinite;
}



/* Animation “monte/descend” douce */
@keyframes scroll {
	0%   { transform: translate(0, 0); }
	50%  { transform: translate(-25%, 0); }
	100% { transform: translate(0, 0); }
}

/* Accessibilité : désactiver l’anim si l’utilisateur préfère moins d’animations */
@media (prefers-reduced-motion: reduce) {
	.scroll-animation img { animation: none; }
}