/* assets/css/pz-location-search.css */
.pz-loc-search {
    background: #f5f9f4;
    border-bottom: 1px solid #d8e6d2;
    padding: 12px 16px;
    position: sticky;
    top: 0;
    z-index: 50;
}
.pz-loc-search__form {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 720px;
    margin: 0 auto;
}
.pz-loc-search__label {
    font-weight: 600;
    color: #2f5d34;
    flex: 0 0 auto;
}
.pz-loc-search input[type="search"] {
    flex: 1 1 auto;
    padding: 8px 12px;
    border: 1px solid #b9cdb1;
    border-radius: 4px;
    font-size: 16px;
}
.pz-loc-search__submit {
    padding: 8px 16px;
    background: #2f5d34;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}
.pz-loc-search__submit:hover { background: #1f4a26; }
.pz-loc-search__results {
    max-width: 720px;
    margin: 8px auto 0;
    background: #fff;
    border: 1px solid #d8e6d2;
    border-radius: 4px;
    padding: 8px;
}
.pz-loc-search__results .pz-loc-pick {
    display: block;
    padding: 6px 8px;
    border-radius: 4px;
    color: #2f5d34;
    text-decoration: none;
}
.pz-loc-search__results .pz-loc-pick:hover { background: #f5f9f4; }
.pz-loc-search__results .pz-loc-fallback {
    margin-top: 8px;
    padding: 8px;
    border-top: 1px dashed #d8e6d2;
    color: #555;
    font-size: 14px;
}

@media (max-width: 640px) {
    .pz-loc-search__label { display: none; }
}
