/* Overlay plein écran */
#fullscreen-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.83);
    display: none;
    align-items: top;
    justify-content: center;
    z-index: 999999;
}

/* Conteneur */
.fso-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    padding: 40px;
    margin-top: 60px; /* place en haut */
}

/* Champ de recherche */
#fullscreen-search-overlay input[type="search"] {
    width: 100%;
    padding: 10px 20px;
    font-size: 2rem;
    border: none;
    outline: none;
}

/*Bouton rechercher*/
.fso-search-form {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.fso-search-form input[type="search"] {
    flex: 1;
    padding: 18px;
    font-size: 1.5rem;
    border-radius: 10px;
    border: none;
}

.fso-search-form .fso-submit {
    padding: 18px 30px;
    font-size: 1.5rem;
    border: none;
    cursor: pointer;
    background: var( --e-global-color-primary );
}

/* Bouton de fermeture */
.fso-close {
    position: absolute;
    top: -60px;
    right: 0;
    font-size: 3rem;
    color: white;
    cursor: pointer;
}

/* Animation */
#fullscreen-search-overlay.show {
    display: flex;
    animation: fsoFadeIn .25s ease-out;
}

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