/*
Theme Name: Woodmart Child
Theme URI: https://woodmart.xtemos.com/
Description: Thème enfant de Woodmart
Author: Ton Nom
Author URI: https://ton-site.com
Template: woodmart
Version: 1.0.0
Text Domain: woodmart-child
*/

@import url("../woodmart/style.css");

/* Styles pour le loader Lottie */
#ipsago-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f7f7ed;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#ipsago-lottie-container {
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Masquer le contenu principal pendant le chargement */
body.loading {
    overflow: hidden;
}

/* Animation de fade-in pour le contenu après le loader */
body.loaded {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
