#search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 25vh;
    background: #ffffff;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Wrapper général */
.search-wrapper {
    width: 70%;
    max-width: 800px;
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Champ */
.search-box {
    flex: 1;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 16px 55px 16px 20px;
    font-size: 18px;
    border-radius: 10px;
    border: 1px solid #dcdcdc;
}

/* Loupe À DROITE dans le champ */
.search-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #999;
    cursor: pointer; 
    
}

/* Bouton fermer À L’EXTÉRIEUR */
#close-search {
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}
