/*
Theme Name: Elementor Child Vitrine
Theme URI: https://g-webdesign.fr/
Description: Thème enfant pour Elementor optimisé
Author: Gaetan Granet
Author URI: https://leclubkravmaga.fr/
Template: hello-elementor
Version: 1.2.2026
Text Domain: elementor-child
*/

/******************************************
 * Annimation du conteneur au survol
 ******************************************/
/* Zoom image */
.mon-conteneur-zoom .zoom-img img {
	transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    will-change: transform;
}
.mon-conteneur-zoom:hover .zoom-img img {transform: scale(1.2) !important;}
.button-display {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.mon-conteneur-zoom:hover .button-display {opacity: 1;transform: translateY(0);}
/******************************************
 * Annimation Bouton
 ******************************************/
.button-animation .elementor-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.button-animation .elementor-button::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
    flex-shrink: 0;
}

.button-animation .elementor-button:hover::before {
    width: 24px;
}