/* LocationIQ autocomplete picker */
.vm-location-field {
    position: relative;
}

.vm-location-input-wrap {
    position: relative;
}

.vm-location-input {
    width: 100%;
}

.vm-location-suggestions {
    position: absolute;
    z-index: 40;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    margin: 0;
    padding: 0.35rem 0;
    list-style: none;
    background: #fff;
    border: 1px solid rgba(122, 31, 31, 0.15);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(58, 30, 20, 0.12);
    max-height: 240px;
    overflow-y: auto;
}

.vm-location-suggestions li {
    padding: 0.65rem 0.85rem;
    font-size: 0.92rem;
    line-height: 1.4;
    color: #3a1e14;
    cursor: pointer;
}

.vm-location-suggestions li:hover,
.vm-location-suggestions li.is-active {
    background: #fdf4ef;
    color: #7a1f1f;
}

.vm-location-suggestions li + li {
    border-top: 1px solid rgba(58, 30, 20, 0.06);
}

.vm-location-error {
    margin-top: 0.35rem;
    font-size: 0.85rem;
    color: #b91c1c;
}

@media (max-width: 640px) {
    .vm-location-suggestions {
        max-height: 200px;
    }
}
