/* Contenitore compatto del modulo */
.searchgrundy-search {
    display: flex;
    align-items: center;
    width: 40px; /* stato compatto */
    transition: width 0.5s ease;
    overflow: hidden;
}

/* Input che si espande al focus */
.searchgrundy-search input[type="search"] {
    width: 0;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 0 10px;
    transition: width 0.5s ease, padding 0.5s ease;
    font-size: 14px;
    outline: none;
    margin-right: 5px;
}

.searchgrundy-search:hover,
.searchgrundy-search:focus-within {
    width: 250px; /* larghezza espansa */
}

.searchgrundy-search:hover input[type="search"],
.searchgrundy-search:focus-within input[type="search"] {
    width: 200px;
    padding: 5px 10px;
}

/* Pulsante lente */
.searchgrundy-search .search-button {
    width: 40px;
    height: 40px;
    background-image: url('https://grundysrl.it/images/lente.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

/* Nascondi titolo modulo */
.sp-module.grundy-search .sp-module-title {
    display: none !important;
}