.location-autocomplete-wrap {
    position: relative;
    width: 100%;
}

.location-autocomplete-wrap input:focus {
    border-color: var(--hb-primary);
}

.location-suggestions {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: none;
    border-radius: 10px;
    max-height: 260px;
    overflow-y: auto;
    z-index: 1200;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    display: none;
}

.location-suggestions.open {
    display: block;
}

.location-suggestion-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    cursor: pointer;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    transition: background 0.15s ease;
}

.location-suggestion-item:hover,
.location-suggestion-item.active {
    background: var(--hb-primary-soft);
}

.location-suggestion-main {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.location-suggestion-icon {
    color: var(--hb-primary);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.location-suggestion-text {
    color: #1f2937;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.location-suggestion-text mark {
    background: var(--hb-teal-soft);
    color: var(--hb-teal-dark);
    padding: 0 2px;
    border-radius: 3px;
}

.location-suggestion-meta {
    font-size: 0.78rem;
    color: #6b7280;
    white-space: nowrap;
    flex-shrink: 0;
}

.location-suggestion-empty {
    padding: 14px;
    color: #6b7280;
    font-size: 0.9rem;
    text-align: center;
}
