/*
Theme Name: Thème oaka
Description: Theme enfant du theme Divi développé par l'agence oaka. N'hésitez pas à prendre contact avec nous via l'adresse agence@oaka.fr
Author: Agence oaka
Author URI: https://oaka.alsace
Template: Divi
Version: 2.0
*/

.et-waypoint:not(.et_pb_counters) {
    opacity: 1;
}

/* Anti-FOUC LiteSpeed + Divi 5 : le CSS/JS asynchrone provoque un flash de mise
   en page non initialisée sur la première visite. On masque #page-container via
   une animation CSS avec délai, puis on le révèle proprement.
   La durée 0s + délai 400ms = masqué pendant 400ms sans transition visible. */
@keyframes et-anti-flicker {
    to { visibility: visible; }
}
#page-container {
    visibility: hidden;
    animation: et-anti-flicker 0s 400ms forwards;
}

/* Fix DWE Mini Cart - Divi 5 : selon les pages, le span est vide (multi_view non résolu)
   ou contient le caractère FontAwesome \f07a (police non chargée → carré blanc).
   On masque tout contenu texte via font-size:0 et on affiche l'icône panier ETmodules
   via ::before, ce qui fonctionne dans les deux cas. */
.dwe_mini_cart_icon_wrapper .dwe_mini_cart_icon {
    font-size: 0 !important;
}
.dwe_mini_cart_icon_wrapper .dwe_mini_cart_icon::before {
    content: "\e07a";
    font-family: ETmodules !important;
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: normal !important;
    color: #ffffff;
}