/* ── ZOEK OVERLAY ── */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}
.search-overlay.is-open {
    opacity: 1;
    visibility: visible;
}
.search-overlay__close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    padding: 8px;
    opacity: .7;
    transition: opacity .15s;
}
.search-overlay__close:hover {
    opacity: 1;
}
.search-overlay__inner {
    width: 100%;
    max-width: 740px;
    padding: 0 24px;
}
.search-overlay__form {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 58px;
    overflow: hidden;
    padding: 6px 6px 6px 24px;
}
.search-overlay__input {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 20px;
    color: #19352B;
    background: transparent;
    padding: 10px 0;
}
.search-overlay__input::placeholder {
    color: #aaa;
}
.search-overlay__submit {
    background: #5f8f47;
    border: none;
    border-radius: 50px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    flex-shrink: 0;
    transition: background .15s;
}
.search-overlay__submit:hover {
    background: #4a7035;
}