/* --- Форма пошуку --- */
.search-section {
    margin-bottom: 8px;
    margin-top: 20px;
}

.search-form {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    padding: 10px 10px;
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
    border: 5px solid #65882d;
    height: 35px;
}

.search-form input[type="text"] {
    flex: 1;
    font-size: 1.15em;
    font-family: inherit;
    padding: 10px 18px;
    border-radius: 100px;
    background: transparent;
    color: #444;
    height: 20px;          /* додаємо фіксовану висоту */
    min-width: 0;
    border: none;
}
.search-form input[type="text"]:focus {
    outline: none;
    box-shadow: none;
}

.search-btn {
    background: none;
    border: none;
    padding: 0;
    margin-left: -10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 40px;           /* така ж висота, як у input */
}

.search-btn img {
    /* обмеження по ширині, якщо треба */
    display: block;
}
.search-icon {
    width: 70px;
    height: 70px;/* або твій розмір */
    filter: none;
    color: #65882d; /* твій зелений */
}

.clear-btn {
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    margin-left: 5px;
    color: #65882d;
    padding: 0;
}

.spinner-icon {
    animation: spin 1s linear infinite;
    color: #65882d;
    margin-left: 7px;
}

.spinner-path {
    stroke-dasharray: 31.4;
    stroke-dashoffset: 0;
    transform-origin: center;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 800px) {
    .search-form input[type="text"] {
        font-size: 0.7em;
        padding: 5px 8px;
        height: 24px;
    }
    .search-btn {
        height: 24px;
    }
    .search-icon {
        width: 45px;
        height: 45px;
    }
    .search-form {
        margin: 5px;
        height: 15px;
    }
    .search-section {
    margin-bottom: 2px;
    }


}

@media (max-width: 400px) {
    .search-form input[type="text"] {
        font-size: 0.5em;
        padding: 2px 4px;
        height: 12px;
    }
    .search-btn {
        height: 12px;
    }
     .search-icon {
        width: 30px;
        height: 30px;
    }
    .search-form {
        border: 2px solid #65882d;
    }


}