/*
 Theme Name:   Hello Elementor Child
 Template:     hello-elementor
 Author:       PAVIOR SA
 Version:      3.1.0
 Description:  Template universel PAVIOR pour sites clients
*/

/* =========================================================================
   SCROLL-TO-TOP BUTTON (section 6 - branding)
   La couleur de fond (background) est définie via l'attribut style inline
   car elle provient de PAVIOR_SITE_CONFIG['primary_color'] (dynamique).
   ========================================================================= */

#pavior-scroll-top {
    position: fixed;
    bottom: 120px;
    right: 20px;
    width: 50px;
    height: 50px;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 9999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#pavior-scroll-top:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}